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
-
-
-
-
-1. Let us in!
-
-
-```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
-
-
-```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?
-
-
-```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
-
-
-
-
-
-
-+ [MySQL primary configuration](./4-mysql_configuration_primary)
-+ [MySQL replica configuration](./4-mysql_configuration_replica)
-
-
-
-
-5. MySQL backup
-
-[](https://www.youtube.com/watch?v=ANU-oSE5_hU)
-
-
-```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
-
-
+# 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
-
-
- - Links from screenshot
-
-
-
-
-
-
-1. For Best School loop
-
-
-
-
-2. While Best School loop
-
-
-
-
-3. Until Best School loop
-
-
-
-
-4. If 9, say Hi!
-
-
-
-
-5. 4 bad luck, 8 is your chance
-
-
- - Links from screenshot
-
-
-
-
-
-
-6. Superstitious numbers
-
-
-
-
-7. Clock
-
-
-
-
-8. For ls
-
-
-
-
-9. To file, or not to file
-
-
-
-
-10. FizzBuzz
-
-
-
-
-11. Read and cut
-
-
-
-
-12. Tell the story of passwd
-
-
- - Links from screenshot
-
-
-
-
-
-
-13. Let's parse Apache logs
-
-
- - Links from screenshot
-
-
-
-
-
-
-14. Dig the data
-
-
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
-
-
-
-
-1. List your processes
-
-
-
-
-2. Show your Bash PID
-
-
-
-
-3. Show your Bash PID made easy
-
-
-
-
-4. To infinity and beyond
-
-
-
-
-5. Don't stop me now!
-
-
-
-
-6. Stop me if you can
-
-
-
-
-7. Highlander
-
-
-
-
-8. Beheaded process
-
-
-
-
-9. Beheaded process
-
-
-
-
-10. Process and PID file
-
-
-
-
-11. Manage my process
-
-
- - Links from screenshot
-
-
-
-
-
-
-12. Zombie
-
-
- - Links from screenshot
-
-
-
-
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
-
-
- - Links from screenshot
-
-
-
-
-
-- [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
-
-
-
-
-1. Repetition Token #0
-
-
-
-
-2. Repetition Token #1
-
-
-
-
-3. Repetition Token #2
-
-
-
-
-4. Repetition Token #3
-
-
-
-
-5. Not quite HBTN yet
-
-
-
-
-6. Call me maybe
-
-
-
-
-7. OMG WHY ARE YOU SHOUTING?
-
-
-
-
-8. Textme
-
-
- - Links from screenshot
-
-
-
-
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 [S