-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathdke_website_dev.sql
More file actions
507 lines (444 loc) · 377 KB
/
dke_website_dev.sql
File metadata and controls
507 lines (444 loc) · 377 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
-- MySQL dump 10.13 Distrib 5.5.47, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: dke_website
-- ------------------------------------------------------
-- Server version 5.5.47-0ubuntu0.12.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 */;
--
-- Table structure for table `calendar_events`
--
DROP TABLE IF EXISTS `calendar_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `calendar_events` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`desc` text COLLATE utf8_unicode_ci,
`brother_id` int(11) DEFAULT NULL,
`color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`start` datetime DEFAULT NULL,
`end` datetime DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `calendar_events`
--
LOCK TABLES `calendar_events` WRITE;
/*!40000 ALTER TABLE `calendar_events` DISABLE KEYS */;
/*!40000 ALTER TABLE `calendar_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapter_house_points`
--
DROP TABLE IF EXISTS `chapter_house_points`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapter_house_points` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dke_info_id` int(11) DEFAULT NULL,
`officer_id` int(11) DEFAULT NULL,
`value` float DEFAULT NULL,
`comment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`date` date DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapter_house_points`
--
LOCK TABLES `chapter_house_points` WRITE;
/*!40000 ALTER TABLE `chapter_house_points` DISABLE KEYS */;
/*!40000 ALTER TABLE `chapter_house_points` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapter_officers`
--
DROP TABLE IF EXISTS `chapter_officers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapter_officers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`title` text COLLATE utf8_unicode_ci,
`position` int(11) DEFAULT NULL,
`dke_info_id` int(11) DEFAULT NULL,
`assign_points` tinyint(1) DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`disp` tinyint(1) DEFAULT NULL,
`contact` text COLLATE utf8_unicode_ci,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapter_officers`
--
LOCK TABLES `chapter_officers` WRITE;
/*!40000 ALTER TABLE `chapter_officers` DISABLE KEYS */;
INSERT INTO `chapter_officers` VALUES (1,'beta','President',0,69,1,'2014-12-07 00:00:00',1,'Major issues; Issues Relevant to entire house',NULL,'2015-01-26 06:13:29','2015-12-05 23:24:27'),(2,'sigma','Vice President',1,68,1,'2014-12-07 00:00:00',0,'','','2015-01-26 06:13:29','2015-05-19 16:49:14'),(3,'kappa','Treasurer',3,71,0,'2014-02-04 00:00:00',1,'Financial issues ',NULL,'2015-01-26 06:13:29','2015-12-05 23:24:28'),(4,'zeta','House Manager',4,77,1,'2013-09-15 00:00:00',1,'Issues pertaining to upkeep of the house ',NULL,'2015-01-26 06:13:29','2015-12-05 23:24:28'),(5,'epsilon','House Steward',5,64,1,'2014-02-04 00:00:00',0,'',NULL,'2015-01-26 06:13:29','2015-05-19 16:48:18'),(6,'s_beta','Summer President / Treasurer',6,35,0,'2014-12-07 00:00:00',0,'Financial issues; Major issues; Issues Relevant to entire house ','','2015-01-26 06:13:29','2015-12-05 23:24:28'),(7,'s_zeta','Summer House & Risk Manager',7,77,0,'2014-12-07 00:00:00',0,'Issues pertaining to upkeep of the house; Any serious issues or anything pertaining to risk ','','2015-01-26 06:13:29','2015-12-05 23:24:28'),(8,'delta','Social Chair',8,65,1,'2013-09-15 00:00:00',1,'Social event planning ',NULL,'2015-01-26 06:13:29','2015-05-19 16:48:18'),(9,'psi','Rush Chair',9,65,1,'2014-12-07 00:00:00',0,'Issues pertaining to Rush',NULL,'2015-01-26 06:13:29','2015-05-19 16:48:18'),(10,'pi','New Member Educator',10,78,0,'2014-12-07 00:00:00',0,'',NULL,'2015-01-26 06:13:29','2015-05-19 16:48:18'),(11,'upsilon','Community Service Chair',12,74,0,'2014-02-04 00:00:00',1,'Community service events ',NULL,'2015-01-26 06:13:29','2015-05-19 16:48:18'),(12,'gamma','Assistant to the Pi',11,73,1,'2014-12-07 00:00:00',0,'',NULL,'2015-01-26 06:13:29','2015-05-19 16:46:27'),(13,'s_psi','Summer House Recruitment Chair',13,35,0,'2014-12-07 00:00:00',0,'Summer housing',NULL,'2015-01-26 06:13:29','2015-12-05 23:24:28'),(14,'broweb','Webmaster',14,0,0,'2014-01-04 00:00:00',0,'Issues pertaining to the website','','2015-01-26 06:13:29','2015-12-05 23:25:16'),(17,'nu','Risk Manager',2,72,1,NULL,1,'Any serious issues; anything pertaining to risk','','2015-05-19 16:47:53','2015-12-05 23:24:28');
/*!40000 ALTER TABLE `chapter_officers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapter_public_pages`
--
DROP TABLE IF EXISTS `chapter_public_pages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapter_public_pages` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`pname` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`officer_id` int(11) DEFAULT NULL,
`title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`content` text COLLATE utf8_unicode_ci,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapter_public_pages`
--
LOCK TABLES `chapter_public_pages` WRITE;
/*!40000 ALTER TABLE `chapter_public_pages` DISABLE KEYS */;
INSERT INTO `chapter_public_pages` VALUES (1,'about',14,'About Sigma Tau','<p style=\"text-align:center\"><img alt=\"\" src=\"http://dke.mit.edu/assets/skyline-0e0ca9e9153863a36a1826aa9063cc1f.jpg\" style=\"height:298px; width:1100px\" /></p>\r\n\r\n<p>The Sigma Tau Chapter of Delta Kappa Epsilon is a fraternity at the Massachusetts Institute of Technology. DKE was chartered on November 14th, 1890 as the tenth MIT fraternity. It was founded by members of a local society, Alpha Gamma Kappa, that had been established to petition for a new DKE charter.<br />\r\n<br />\r\nToday, the DKE house stands in the middle of the West Campus, along dorm row between Baker House and Burton-Conner, along with a few fellow fraternities. DKEs are actively involved in all facets of campus life from varsity and club athletics, to The Tech, to community service</p>\r\n\r\n<h2>History of Delta Kappa Epsilon</h2>\r\n\r\n<p><img alt=\"\" src=\"http://dke.mit.edu/assets/dkecrestold-f1128b640a1c22270e852c8767fb63e7.png\" style=\"float:left; height:226px; margin-left:20px; margin-right:20px; width:195px\" /> In the spring of 1844 at Yale College in New Haven, Connecticut, a number of men of high character and scholastic attainment did not receive bids from the campus' two fraternities. This unfair act, which was due to undergraduate politics and a division in the Sophomore class, caused some men who did in fact receive bids to promptly reject them. Together, these men created a new society, founded in a meeting on June 22, 1844 in room Number 12, Old South Hall. Here, both the fraternity's secret and open Greek mottos were devised. The open motto being "Kerothen Philoi Aei," which in English means "Friends from the Heart, Forever." The DKE pin was also created with the Greek letters of DKE on a white scroll upon a black diamond with a gold rope trim and a star in each corner, as well as the colours crimson, blue, and gold. The chapter started with it's 15 founders deeming itself Phi of Delta Kappa Epsilon. To this day, it is the only fraternity at Yale that has never gone inactive. Within three years, chapters were founded at Bowdoin, Princeton, Colby College, and Amherst College. Since that time, DKE has grown to over 64 chapters and initiated over 85,000 members across North America. The fraternity is inextricably linked to the history of the United States of America, as its members include a whopping 5 of the 44 presidents, including both George Bush's Rutherford B. Hayes, Teddy Roosevelt, and Gerald Ford. The first west coast chapter was founded at UCal Berkeley in 1876, which was followed by their rival Stanford in 1901. DKE became an international fraternity with the addition of the Alpha Phi chapter in 1898 at the University of Toronto in Canada.</p>\r\n','2015-01-26 06:13:30','2015-05-16 09:50:22'),(2,'letter',1,'A Letter from the DKE President','<p>Greetings,</p>\r\n\r\n<p>First of all, thank you for visiting the Sigma Tau chapter website. I hope that you have been able to find all of the information you desired in visiting.</p>\r\n\r\n<p>I am very proud to say that over the past year our chapter has continued its tradition of excellence and leadership on the MIT campus. This was made possible by a dedicated and passionate group of actives in addition to the outstanding officers who have served with me over the past semester.</p>\r\n\r\n<p>Jake Laux '14 has done an excellent job as the chapter's Vice President and Risk Manager, ensuring that our social events occur in a safe and responsible manner. John Halloran '15, the House Treasurer, has been outstanding with the extremely challenging job of managing the chapter's finances. Joe Cunningham '16 has done very well as House Manager, keeping the house clean in addition to maintaining and updating it. Luther Banner III '16, the house Social Chair, did a great job of occasionally taking our minds of academics with an assortment of parties and mixers over the course of the semester. Last but certainly not least, Doug Nmagu '14, the House Steward, has done an exceptional job in ensuring that the brothers are happy with the meal plan and formal, along with keeping a close relationship with our chef, Dan West.</p>\r\n\r\n<p>If you come by the DKE house this year, you will see some new faces. Thanks to our recruitment chair, Will Waste '14, we had a successful rush in 2013 that resulted in 12 new members pledging Delta Kappa Epsilon. We are very excited to welcome Andrew Titus, Bradley Walcher, Christian Argenti, Christopher Sanfilippo, David Houle, Kevin Kusch, Matthew Iovino, Matthew Lindsay, Ryan Karnish, Seth Studebaker, and Travis Herbanek as the Sigma Tau pledge class of 2016.</p>\r\n\r\n<p>As always, the brothers of Delta Kappa Epsilon at MIT have continued their participation and leadership in athletics. The MIT Football team, which finished the season with 6 wins this year, sported 37 DKE brothers and pledges, including 3 brothers as team captains. In 2013, DKE saw 9 brothers earning ALL-NEFC honors and 3 brothers earning Academic All-District honors. One of our brothers, Joesph Campion '15, is helping represent MIT as a member of the Basketball team. Tim Wilson '14 will continue his role as a relief pitcher for the baseball team this spring when practice resumes. Actives Ben Greenberg '15, and alumni Will Vega-Brown '11 all still actively participating in MIT's Jiu Jitsu club. Finally, Cosma Kufa '16, our chapter's Intramural Chair, has done a great job increasing our involvement in intramural sports at MIT.</p>\r\n\r\n<p>As we look forward to a new year, we perform the sad duty of saying goodbye to the senior class. Many of the graduating class are leaving MIT to start their careers in a number of different fields, and the rest will be off to graduate school. Whatever their destination, we wish them the best of luck and hope they will always remember the good times they had here at Delta Kappa Epsilon.</p>\r\n\r\n<p>Justin Wallace '15</p>\r\n\r\n<p>President, Delta Kappa Epsilon, Sigma Tau Chapter</p>\r\n','2015-01-26 06:13:30','2015-01-26 06:13:30'),(3,'summer_housing',13,'false','<p><span style=\"font-size:36px\">We are <u><strong>Full</strong></u> for Summer 2015.</span></p>\r\n\r\n<p>Delta Kappa Epsilon is located at 403 Memorial Drive in Cambridge, MA on the MIT campus. We are conveniently located a short walking distance from both local bus and subway public transportation systems. During the summer of 2015 our rent period will be from Sunday, May 24 until Wednesday, August 12.</p>\r\n\r\n<p>We are currently renting out 4 types of rooms: singles, doubles, triples and one quad. Rates for each of the following room types are as follows: singles are $2600, doubles are $2000, triples are $1800 and the quad is $1500. These prices are per person for the entire 11 week renting period. Both singles and doubles are one room, where singles are about 2/3 the size of doubles . Triples are essentially two-room suites, containing a front room that typically serves as a public area and a back room that is often used as a bedroom. These rooms contain one door that is located in the front room and one door connecting the front room to the back room. The quad is approximately the size of two large doubles and is one room</p>\r\n\r\n<p>Our house contains five-stories, with residential rooms available on the third, fourth, and fifth floors. Each residential floor has one restroom outfitted with three sinks, one full size mirror, one urinal, one stall, and one shower. The first floor contains our full size and fully-equipped kitchen, including industrial sized refrigerator and freezer, which are available for lessee use. We also have a laundry room available with both a new high efficiency washer and dryer at no additional charge. The second floor contains the main common areas of the house: a large dining room, a pantry equipped with dinnerware for general use and a dish washer, a living room with sofas, and a library full of books suitable for both leisure and education. Our house is secured by a front door system that requires a code to enter, and each residential room is individually lockable to help ensure the safety of you and your belongings. Our prices include all utilities and rent for the entire renting period specified above. Additional amenities provided at no further cost include high speed wireless and wired internet and DirecTV service with premium movie channels. Each lessee is provided a full or twin extra long mattress and bed frame. Most rooms are furnished with sofas, dressers, desks, coffee tables, office chairs, lamps and air conditioning units. Other furniture and appliances can be found around the house and used to furnish one’s room on a first-come-first-serve basis. </p>\r\n','2015-01-26 06:13:30','2016-01-27 01:01:32');
/*!40000 ALTER TABLE `chapter_public_pages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `chapter_residences`
--
DROP TABLE IF EXISTS `chapter_residences`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `chapter_residences` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`floor` int(1) DEFAULT NULL,
`capacity` int(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=602 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `chapter_residences`
--
LOCK TABLES `chapter_residences` WRITE;
/*!40000 ALTER TABLE `chapter_residences` DISABLE KEYS */;
INSERT INTO `chapter_residences` VALUES (102,'Kitchen',1,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(104,'First Single',1,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(105,'Front Entry',1,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(106,'Bar',1,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(201,'Living Room',2,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(202,'Library',2,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(205,'Pantry',2,0,'2015-01-26 06:13:29','2015-05-20 17:25:15'),(206,'Dining Room',2,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(207,'RA Single',2,0,'2015-01-26 06:13:29','2015-05-20 17:00:57'),(301,'Third Stair Front',3,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(302,'Third Stair Back',3,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(303,'Third Single',3,1,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(304,'Saturn Back',3,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(305,'Saturn Front',3,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(309,'Third Pit',3,4,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(311,'Panda',3,4,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(401,'Fourth Stair Front',4,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(402,'Fourth Stair Back',4,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(403,'Fourth Single',4,1,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(404,'Sunset Back',4,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(405,'Sunset Front',4,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(409,'Fourth Pit',4,4,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(411,'Carport',4,4,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(500,'Balcony',5,0,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(501,'Fifth Stair',5,2,'2015-01-26 06:13:29','2015-01-26 06:13:29'),(503,'President Single',5,1,'2015-01-26 06:13:30','2015-01-26 06:13:30'),(505,'Jungle',5,2,'2015-01-26 06:13:30','2015-01-26 06:13:30'),(509,'Ocean',5,4,'2015-01-26 06:13:30','2015-01-26 06:13:30'),(510,'5th Back Single',5,1,'2015-01-26 06:13:30','2015-01-26 06:13:30'),(601,'Roof',6,0,'2015-01-26 06:13:30','2015-01-26 06:13:30');
/*!40000 ALTER TABLE `chapter_residences` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ckeditor_assets`
--
DROP TABLE IF EXISTS `ckeditor_assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ckeditor_assets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`data_file_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`data_content_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`data_file_size` int(11) DEFAULT NULL,
`assetable_id` int(11) DEFAULT NULL,
`assetable_type` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`type` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
`width` int(11) DEFAULT NULL,
`height` int(11) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_ckeditor_assetable_type` (`assetable_type`,`type`,`assetable_id`),
KEY `idx_ckeditor_assetable` (`assetable_type`,`assetable_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ckeditor_assets`
--
LOCK TABLES `ckeditor_assets` WRITE;
/*!40000 ALTER TABLE `ckeditor_assets` DISABLE KEYS */;
/*!40000 ALTER TABLE `ckeditor_assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `epsilon_e_sheets`
--
DROP TABLE IF EXISTS `epsilon_e_sheets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `epsilon_e_sheets` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`dke_info_id` int(11) DEFAULT NULL,
`date` date DEFAULT NULL,
`time` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`e_type` varchar(8) COLLATE utf8_unicode_ci DEFAULT NULL,
`value` float DEFAULT NULL,
`comment` text COLLATE utf8_unicode_ci,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=390 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `epsilon_e_sheets`
--
LOCK TABLES `epsilon_e_sheets` WRITE;
/*!40000 ALTER TABLE `epsilon_e_sheets` DISABLE KEYS */;
INSERT INTO `epsilon_e_sheets` VALUES (1,NULL,NULL,'12:00AM','total',16,NULL,'2015-08-23 18:27:47','2015-08-23 18:27:47'),(11,NULL,'0000-01-07','1:15PM','t_lunch',1,NULL,'2015-08-23 18:27:48','2015-09-06 16:42:19'),(15,NULL,'0000-01-08','1:15PM','t_lunch',1,NULL,'2015-08-23 18:27:48','2015-09-06 16:43:01'),(20,NULL,'0000-01-09','1:15PM','t_lunch',1,NULL,'2015-08-23 18:27:48','2015-09-06 16:43:47'),(23,NULL,'2015-08-24','11:30AM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(24,NULL,'2015-08-24','12:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(25,NULL,'2015-08-24','1:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(26,77,'2015-08-24','6:00PM','dinner',3,'','2015-08-23 18:28:13','2015-08-26 16:15:13'),(27,NULL,'2015-08-25','11:30AM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(28,NULL,'2015-08-25','12:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(29,NULL,'2015-08-25','1:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(30,77,'2015-08-25','6:00PM','dinner',3,'','2015-08-23 18:28:13','2015-08-26 16:15:24'),(31,NULL,'2015-08-26','11:30AM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(32,NULL,'2015-08-26','12:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(33,NULL,'2015-08-26','1:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(34,81,'2015-08-26','6:00PM','dinner',3,'','2015-08-23 18:28:13','2015-08-26 16:15:35'),(35,NULL,'2015-08-27','11:30AM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(36,NULL,'2015-08-27','12:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(37,NULL,'2015-08-27','1:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(38,72,'2015-08-27','6:00PM','dinner',3,'','2015-08-23 18:28:13','2015-08-29 16:37:57'),(39,NULL,'2015-08-28','11:30AM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(40,NULL,'2015-08-28','12:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(41,NULL,'2015-08-28','1:15PM','lunch',1,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(42,NULL,'2015-08-28','6:00PM','dinner',3,NULL,'2015-08-23 18:28:13','2015-08-23 18:28:13'),(43,69,'2015-08-29','6:00PM','dinner',3,'','2015-08-23 18:28:13','2015-08-30 23:04:02'),(45,73,'2015-08-31','12:30PM','lunch',3,'','2015-08-30 23:04:14','2015-08-31 14:52:15'),(46,85,'2015-09-01','12:30PM','lunch',3,'','2015-08-30 23:04:14','2015-08-31 16:27:55'),(47,73,'2015-09-02','12:30PM','lunch',3,'','2015-08-30 23:04:14','2015-08-31 15:49:50'),(48,73,'2015-09-03','12:30PM','lunch',3,'','2015-08-30 23:04:14','2015-08-31 15:49:57'),(49,85,'2015-09-04','12:30PM','lunch',3,'','2015-08-30 23:04:14','2015-08-31 16:28:16'),(50,NULL,'0000-01-10','6:30PM','t_dinner',3,NULL,'2015-08-30 23:05:51','2015-08-30 23:10:01'),(51,NULL,'0000-01-06','6:00PM','t_dinner',3,NULL,'2015-08-30 23:06:16','2015-11-15 16:36:05'),(52,NULL,'0000-01-07','6:00PM','t_dinner',3,NULL,'2015-08-30 23:06:30','2015-11-15 16:36:18'),(53,NULL,'0000-01-08','6:00PM','t_dinner',3,NULL,'2015-08-30 23:06:50','2015-11-15 16:36:37'),(55,81,'2015-08-31','6:30PM','dinner',3,'','2015-08-31 14:52:03','2015-08-31 15:00:31'),(56,80,'2015-09-01','7:30PM','dinner',3,'','2015-08-31 14:53:30','2015-08-31 15:06:26'),(57,80,'2015-09-02','7:30PM','dinner',3,'','2015-08-31 14:53:44','2015-08-31 15:06:50'),(58,85,'2015-09-03','6:30PM','dinner',3,'','2015-08-31 14:54:05','2015-08-31 16:27:58'),(59,0,'2015-09-05','6:30PM','dinner',3,'','2015-08-31 14:54:21','2015-08-31 14:54:21'),(60,64,'2015-07-22','10:55AM','entry',16,'Epsilon','2015-08-31 14:55:23','2015-08-31 14:55:23'),(61,NULL,'0000-01-06','12:15PM','t_lunch',1,NULL,'2015-09-06 16:41:34','2015-09-09 23:11:14'),(62,NULL,'0000-01-07','11:30AM','t_lunch',1,NULL,'2015-09-06 16:41:58','2015-09-06 16:41:58'),(63,NULL,'0000-01-07','12:15PM','t_lunch',1,NULL,'2015-09-06 16:42:09','2015-09-06 16:42:09'),(64,NULL,'0000-01-08','12:15PM','t_lunch',1,NULL,'2015-09-06 16:42:53','2015-09-06 16:42:53'),(65,NULL,'0000-01-08','11:30AM','t_lunch',1,NULL,'2015-09-06 16:43:11','2015-09-06 16:43:11'),(66,NULL,'0000-01-09','11:30AM','t_lunch',1,NULL,'2015-09-06 16:43:31','2015-09-06 16:43:31'),(67,NULL,'0000-01-09','12:15PM','t_lunch',1,NULL,'2015-09-06 16:43:40','2015-09-06 16:43:40'),(68,NULL,'0000-01-09','6:30PM','t_dinner',3,NULL,'2015-09-06 16:43:58','2015-09-06 16:43:58'),(69,48,'2015-09-08','12:30PM','lunch',3,NULL,'2015-09-07 22:25:14','2015-09-08 03:45:54'),(70,48,'2015-09-08','7:30PM','dinner',3,NULL,'2015-09-07 22:25:14','2015-09-08 03:45:06'),(71,46,'2015-09-09','11:30AM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-08 18:24:18'),(72,81,'2015-09-09','12:15PM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-09 15:41:26'),(73,54,'2015-09-09','1:15PM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-09 16:46:58'),(75,67,'2015-09-10','11:30AM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-10 15:14:44'),(76,72,'2015-09-10','12:15PM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-10 16:08:55'),(77,48,'2015-09-10','1:15PM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-10 15:30:51'),(78,68,'2015-09-10','7:30PM','dinner',3,'','2015-09-07 22:25:14','2015-09-11 06:04:24'),(79,NULL,'2015-09-11','11:30AM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-10 06:24:28'),(80,68,'2015-09-11','12:15PM','lunch',1,'','2015-09-07 22:25:14','2015-09-11 16:19:03'),(81,62,'2015-09-11','1:15PM','lunch',1,NULL,'2015-09-07 22:25:14','2015-09-11 17:12:03'),(82,68,'2015-09-11','7:00PM','dinner',3,'','2015-09-07 22:25:14','2015-09-11 22:53:48'),(84,NULL,'0000-01-05','11:30AM','t_lunch',1,NULL,'2015-09-09 23:11:21','2015-09-09 23:11:21'),(85,NULL,'0000-01-05','12:15PM','t_lunch',1,NULL,'2015-09-09 23:11:28','2015-09-09 23:11:28'),(86,NULL,'0000-01-05','1:15PM','t_lunch',1,NULL,'2015-09-09 23:11:37','2015-09-09 23:11:37'),(87,NULL,'0000-01-05','6:00PM','t_dinner',3,NULL,'2015-09-09 23:11:58','2015-11-15 16:35:49'),(88,NULL,'0000-01-06','11:30AM','t_lunch',1,NULL,'2015-09-09 23:12:10','2015-09-09 23:12:10'),(89,NULL,'0000-01-06','1:15PM','t_lunch',1,NULL,'2015-09-09 23:12:19','2015-09-09 23:12:19'),(90,46,'2015-08-27','8:00AM','lunch',3,'Breakfast','2015-09-11 16:18:35','2015-09-11 16:18:57'),(91,48,'2015-08-27','8:00AM','lunch',3,'Breakfast','2015-09-11 16:19:24','2015-09-11 16:19:24'),(92,68,'2015-09-14','11:30AM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 15:31:52'),(93,53,'2015-09-14','12:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 16:12:49'),(94,54,'2015-09-14','1:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 16:46:12'),(95,53,'2015-09-14','7:30PM','dinner',3,NULL,'2015-09-14 04:37:12','2015-09-14 16:17:25'),(96,67,'2015-09-15','11:30AM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-15 15:07:51'),(97,81,'2015-09-15','12:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-15 16:16:49'),(98,48,'2015-09-15','1:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 15:22:26'),(99,78,'2015-09-15','7:30PM','dinner',3,'','2015-09-14 04:37:12','2015-09-18 17:04:25'),(100,68,'2015-09-16','11:30AM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-16 15:35:20'),(101,72,'2015-09-16','12:15PM','lunch',1,'','2015-09-14 04:37:12','2015-09-16 16:20:57'),(102,54,'2015-09-16','1:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-16 17:03:18'),(103,46,'2015-09-16','7:30PM','dinner',3,NULL,'2015-09-14 04:37:12','2015-09-16 23:22:56'),(104,52,'2015-09-17','11:30AM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 16:05:43'),(105,77,'2015-09-17','12:15PM','lunch',1,'','2015-09-14 04:37:12','2015-09-21 14:05:54'),(106,48,'2015-09-17','1:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 15:22:29'),(107,78,'2015-09-17','7:30PM','dinner',3,'','2015-09-14 04:37:12','2015-09-18 17:04:08'),(108,46,'2015-09-18','11:30AM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-18 15:36:27'),(109,46,'2015-09-18','12:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 23:19:55'),(110,46,'2015-09-18','1:15PM','lunch',1,NULL,'2015-09-14 04:37:12','2015-09-14 23:19:57'),(112,48,'2015-09-19','6:30PM','dinner',1,'','2015-09-14 04:37:12','2015-09-21 04:25:17'),(113,81,'2015-09-21','11:30AM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-21 04:33:18'),(114,81,'2015-09-21','12:15PM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-21 04:33:21'),(115,39,'2015-09-21','1:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-21 17:14:15'),(116,78,'2015-09-21','7:30PM','dinner',3,NULL,'2015-09-21 04:24:46','2015-09-21 04:34:03'),(117,54,'2015-09-22','11:30AM','lunch',1,'','2015-09-21 04:24:46','2015-09-24 16:09:35'),(118,52,'2015-09-22','12:15PM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-22 16:20:35'),(119,85,'2015-09-22','1:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-22 20:15:48'),(120,81,'2015-09-22','7:30PM','dinner',3,NULL,'2015-09-21 04:24:46','2015-09-21 04:33:38'),(121,53,'2015-09-23','11:30AM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-23 15:22:51'),(122,67,'2015-09-23','12:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-24 15:18:49'),(123,54,'2015-09-23','1:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-23 18:51:29'),(124,81,'2015-09-23','7:30PM','dinner',3,NULL,'2015-09-21 04:24:46','2015-09-21 04:33:40'),(125,67,'2015-09-24','11:30AM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-24 15:23:15'),(126,53,'2015-09-24','12:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-24 18:49:10'),(127,53,'2015-09-24','1:15PM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-24 17:17:17'),(128,65,'2015-09-24','7:30PM','dinner',3,'','2015-09-21 04:24:46','2015-09-27 17:44:50'),(129,NULL,'2015-09-25','11:30AM','lunch',1,NULL,'2015-09-21 04:24:46','2015-09-21 04:24:46'),(130,69,'2015-09-25','12:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-29 01:43:10'),(131,80,'2015-09-25','1:15PM','lunch',1,'','2015-09-21 04:24:46','2015-09-25 22:31:37'),(132,59,'2015-09-25','6:30PM','dinner',3,'','2015-09-21 04:24:46','2015-09-25 22:30:24'),(133,59,'2015-09-26','6:30PM','dinner',3,NULL,'2015-09-21 04:24:46','2015-09-26 22:27:11'),(134,68,'2015-09-28','11:30AM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-28 15:39:55'),(135,67,'2015-09-28','12:15PM','lunch',1,'','2015-09-28 15:28:51','2015-09-28 17:12:22'),(136,63,'2015-09-28','1:15PM','lunch',1,'','2015-09-28 15:28:51','2015-09-28 17:12:01'),(137,69,'2015-09-28','7:30PM','dinner',3,'','2015-09-28 15:28:51','2015-09-29 01:42:57'),(138,67,'2015-09-29','11:30AM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-29 15:22:12'),(139,84,'2015-09-29','12:15PM','lunch',1,'','2015-09-28 15:28:51','2015-09-30 01:29:27'),(140,71,'2015-09-29','1:15PM','lunch',1,'','2015-09-28 15:28:51','2015-11-06 23:51:50'),(141,46,'2015-09-29','7:30PM','dinner',3,NULL,'2015-09-28 15:28:51','2015-09-29 23:36:49'),(142,52,'2015-09-30','11:30AM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-29 14:12:04'),(143,54,'2015-09-30','12:15PM','lunch',1,'','2015-09-28 15:28:51','2015-09-30 23:29:19'),(144,72,'2015-09-30','1:15PM','lunch',1,'','2015-09-28 15:28:51','2015-09-30 23:29:53'),(145,68,'2015-09-30','7:30PM','dinner',3,'','2015-09-28 15:28:51','2015-09-30 23:42:35'),(146,52,'2015-10-01','11:30AM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-29 14:13:57'),(147,84,'2015-10-01','12:15PM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-29 20:26:35'),(148,59,'2015-10-01','1:15PM','lunch',1,NULL,'2015-09-28 15:28:51','2015-10-01 17:12:11'),(149,74,'2015-10-01','7:30PM','dinner',3,'','2015-09-28 15:28:51','2015-10-02 16:35:07'),(150,NULL,'2015-10-02','11:30AM','lunch',1,NULL,'2015-09-28 15:28:51','2015-09-28 15:28:51'),(151,54,'2015-10-02','12:15PM','lunch',1,NULL,'2015-09-28 15:28:51','2015-10-02 16:00:24'),(152,62,'2015-10-02','1:15PM','lunch',1,NULL,'2015-09-28 15:28:51','2015-10-02 17:11:42'),(153,72,'2015-10-02','6:30PM','dinner',3,'','2015-09-28 15:28:51','2015-10-02 22:50:20'),(154,71,'2015-10-03','6:30PM','dinner',3,'','2015-09-28 15:28:51','2015-10-03 23:45:20'),(155,68,'2015-10-05','11:30AM','lunch',1,'','2015-10-05 15:34:16','2015-10-06 21:15:00'),(156,84,'2015-10-05','12:15PM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-05 16:09:47'),(157,39,'2015-10-05','1:15PM','lunch',1,'','2015-10-05 15:34:17','2015-10-06 21:56:11'),(158,46,'2015-10-05','7:30PM','dinner',3,NULL,'2015-10-05 15:34:17','2015-10-05 22:54:03'),(159,67,'2015-10-06','11:30AM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-06 15:11:23'),(160,84,'2015-10-06','12:15PM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-05 16:09:51'),(161,59,'2015-10-06','1:15PM','lunch',1,'','2015-10-05 15:34:17','2015-10-06 21:56:00'),(162,47,'2015-10-06','7:30PM','dinner',3,NULL,'2015-10-05 15:34:17','2015-10-06 23:26:06'),(163,39,'2015-10-07','11:30AM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-07 15:16:52'),(164,67,'2015-10-07','12:15PM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-07 16:10:06'),(165,NULL,'2015-10-07','1:15PM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-05 15:34:17'),(166,80,'2015-10-07','7:30PM','dinner',3,NULL,'2015-10-05 15:34:17','2015-10-07 23:20:33'),(167,67,'2015-10-08','11:30AM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-08 15:11:27'),(168,62,'2015-10-08','12:15PM','lunch',1,'','2015-10-05 15:34:17','2015-10-08 17:33:30'),(169,48,'2015-10-08','1:15PM','lunch',1,'','2015-10-05 15:34:17','2015-10-08 17:33:43'),(170,69,'2015-10-08','7:30PM','dinner',3,NULL,'2015-10-05 15:34:17','2015-10-05 23:10:32'),(171,48,'2015-10-09','11:30AM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-07 23:31:34'),(172,48,'2015-10-09','12:15PM','lunch',1,NULL,'2015-10-05 15:34:17','2015-10-07 23:31:37'),(173,53,'2015-10-09','1:15PM','lunch',1,'','2015-10-05 15:34:17','2015-10-09 17:27:24'),(174,69,'2015-10-09','7:30PM','dinner',3,'','2015-10-05 15:34:17','2015-10-12 23:33:32'),(175,NULL,'2015-10-10','6:30PM','dinner',3,NULL,'2015-10-05 15:34:17','2015-10-09 22:50:54'),(176,NULL,'2015-10-12','11:30AM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-13 14:38:11'),(177,NULL,'2015-10-12','12:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-13 14:38:11'),(178,NULL,'2015-10-12','1:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-13 14:38:11'),(179,NULL,'2015-10-12','7:30PM','dinner',3,NULL,'2015-10-13 14:38:11','2015-10-13 14:38:11'),(180,68,'2015-10-13','11:30AM','lunch',1,'','2015-10-13 14:38:11','2015-10-17 21:47:01'),(181,67,'2015-10-13','12:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-13 16:08:10'),(182,54,'2015-10-13','1:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-13 17:07:21'),(183,59,'2015-10-13','7:30PM','dinner',3,NULL,'2015-10-13 14:38:11','2015-10-13 18:25:26'),(184,39,'2015-10-14','11:30AM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-14 15:07:08'),(185,67,'2015-10-14','12:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-14 16:15:10'),(186,54,'2015-10-14','1:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-14 17:08:48'),(187,72,'2015-10-14','7:30PM','dinner',3,'','2015-10-13 14:38:11','2015-10-17 22:32:09'),(188,52,'2015-10-15','11:30AM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-15 13:36:06'),(189,52,'2015-10-15','12:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-15 13:36:28'),(190,80,'2015-10-15','1:15PM','lunch',1,'','2015-10-13 14:38:11','2015-11-06 23:51:05'),(191,59,'2015-10-15','7:30PM','dinner',3,NULL,'2015-10-13 14:38:11','2015-10-13 18:25:15'),(192,67,'2015-10-16','11:30AM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-16 15:30:55'),(193,84,'2015-10-16','12:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-16 15:24:09'),(194,84,'2015-10-16','1:15PM','lunch',1,NULL,'2015-10-13 14:38:11','2015-10-14 23:19:16'),(195,54,'2015-10-16','6:30PM','dinner',3,'','2015-10-13 14:38:11','2015-10-17 21:40:06'),(197,39,'2015-10-10','1:00PM','lunch',2,'Bartending','2015-10-17 21:44:44','2015-10-17 21:44:44'),(198,68,'2015-10-19','11:30AM','lunch',1,'','2015-10-19 15:58:23','2015-10-19 16:09:09'),(199,67,'2015-10-19','12:15PM','lunch',1,NULL,'2015-10-19 15:58:23','2015-10-19 16:12:08'),(200,63,'2015-10-19','1:15PM','lunch',1,NULL,'2015-10-19 15:58:23','2015-10-19 17:03:51'),(201,67,'2015-10-19','7:30PM','dinner',3,NULL,'2015-10-19 15:58:23','2015-10-19 18:29:39'),(202,82,'2015-10-20','11:30AM','lunch',1,'','2015-10-19 15:58:23','2015-10-21 23:24:59'),(203,72,'2015-10-20','12:15PM','lunch',1,'','2015-10-19 15:58:23','2015-10-20 16:21:45'),(204,72,'2015-10-20','1:15PM','lunch',1,NULL,'2015-10-19 15:58:23','2015-10-20 16:21:42'),(205,82,'2015-10-20','7:30PM','dinner',3,'','2015-10-19 15:58:23','2015-10-21 23:24:43'),(206,69,'2015-10-21','11:30AM','lunch',1,'','2015-10-19 15:58:23','2015-11-06 23:43:41'),(207,54,'2015-10-21','12:15PM','lunch',1,'','2015-10-19 15:58:23','2015-10-21 17:17:39'),(208,63,'2015-10-21','1:15PM','lunch',1,NULL,'2015-10-19 15:58:23','2015-10-21 17:06:36'),(209,54,'2015-10-21','7:30PM','dinner',3,'','2015-10-19 15:58:23','2015-10-21 23:33:11'),(210,39,'2015-10-22','11:30AM','lunch',1,'','2015-10-19 15:58:23','2015-10-23 15:16:03'),(211,84,'2015-10-22','12:15PM','lunch',1,NULL,'2015-10-19 15:58:23','2015-10-21 00:09:36'),(212,NULL,'2015-10-22','1:15PM','lunch',1,NULL,'2015-10-19 15:58:24','2015-10-19 15:58:24'),(213,85,'2015-10-22','7:30PM','dinner',3,'','2015-10-19 15:58:24','2015-10-28 18:04:16'),(214,39,'2015-10-23','11:30AM','lunch',1,NULL,'2015-10-19 15:58:24','2015-10-23 15:00:35'),(215,NULL,'2015-10-23','12:15PM','lunch',1,NULL,'2015-10-19 15:58:24','2015-10-19 15:58:24'),(216,62,'2015-10-23','1:15PM','lunch',1,NULL,'2015-10-19 15:58:24','2015-10-23 04:03:54'),(217,50,'2015-10-23','6:30PM','dinner',3,'','2015-10-19 15:58:24','2015-10-23 23:08:59'),(218,55,'2015-10-26','11:30AM','lunch',1,'','2015-10-26 16:45:13','2015-10-26 16:47:39'),(220,55,'2015-10-26','1:15PM','lunch',1,'','2015-10-26 16:45:13','2015-10-26 16:46:24'),(221,74,'2015-10-26','7:30PM','dinner',3,'','2015-10-26 16:45:13','2015-10-27 23:39:03'),(222,63,'2015-10-27','11:30AM','lunch',1,'','2015-10-26 16:45:13','2015-10-27 23:38:30'),(223,69,'2015-10-27','12:15PM','lunch',1,'','2015-10-26 16:45:13','2015-10-27 23:39:27'),(224,74,'2015-10-27','1:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-27 17:14:44'),(225,53,'2015-10-27','7:30PM','dinner',3,'','2015-10-26 16:45:13','2015-10-28 00:23:24'),(226,52,'2015-10-28','11:30AM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-28 15:06:54'),(227,59,'2015-10-28','12:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-28 16:22:03'),(228,63,'2015-10-28','1:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-28 17:05:35'),(229,78,'2015-10-28','7:30PM','dinner',3,'','2015-10-26 16:45:13','2015-12-04 18:08:54'),(230,52,'2015-10-29','11:30AM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-28 15:07:51'),(231,69,'2015-10-29','12:15PM','lunch',1,'','2015-10-26 16:45:13','2015-11-06 23:43:12'),(232,NULL,'2015-10-29','1:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-26 16:45:13'),(233,74,'2015-10-29','7:30PM','dinner',3,'','2015-10-26 16:45:13','2015-10-29 23:59:26'),(234,53,'2015-10-30','11:30AM','lunch',1,'','2015-10-26 16:45:13','2015-11-03 00:20:43'),(235,84,'2015-10-30','12:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-29 23:44:56'),(236,84,'2015-10-30','1:15PM','lunch',1,NULL,'2015-10-26 16:45:13','2015-10-29 23:44:57'),(239,55,'2015-10-26','12:15PM','lunch',1,'','2015-10-26 16:46:11','2015-10-26 16:47:31'),(240,55,'2015-11-02','11:30AM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-02 16:28:27'),(241,84,'2015-11-02','12:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-02 16:57:26'),(242,39,'2015-11-02','1:15PM','lunch',1,'','2015-11-02 16:23:58','2015-11-05 00:31:48'),(243,47,'2015-11-02','7:30PM','dinner',3,NULL,'2015-11-02 16:23:58','2015-11-03 00:27:39'),(244,39,'2015-11-03','11:30AM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-03 16:16:09'),(245,72,'2015-11-03','12:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-03 00:27:02'),(246,72,'2015-11-03','1:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-03 00:27:04'),(247,77,'2015-11-03','7:30PM','dinner',3,'','2015-11-02 16:23:58','2015-11-04 03:17:43'),(248,39,'2015-11-04','11:30AM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-03 16:16:14'),(249,71,'2015-11-04','12:15PM','lunch',1,'','2015-11-02 16:23:58','2015-11-04 18:01:28'),(250,63,'2015-11-04','1:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-04 18:06:06'),(251,82,'2015-11-04','7:30PM','dinner',3,NULL,'2015-11-02 16:23:58','2015-11-05 00:27:06'),(252,71,'2015-11-05','11:30AM','lunch',1,'','2015-11-02 16:23:58','2015-11-06 01:31:45'),(253,62,'2015-11-05','12:15PM','lunch',1,'','2015-11-02 16:23:58','2015-11-06 01:32:00'),(254,59,'2015-11-05','1:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-05 18:04:17'),(255,53,'2015-11-05','7:30PM','dinner',3,'','2015-11-02 16:23:58','2015-11-06 01:32:18'),(256,53,'2015-11-06','11:30AM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-06 16:10:54'),(257,84,'2015-11-06','12:15PM','lunch',1,NULL,'2015-11-02 16:23:58','2015-11-02 16:28:59'),(258,62,'2015-11-06','1:15PM','lunch',1,'','2015-11-02 16:23:58','2015-11-06 23:44:44'),(259,73,'2015-11-06','6:30PM','dinner',3,'','2015-11-02 16:23:58','2015-11-07 03:11:23'),(261,52,'2015-11-09','11:30AM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-09 15:51:51'),(262,NULL,'2015-11-09','12:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-09 15:50:19'),(263,63,'2015-11-09','1:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-09 16:02:56'),(264,77,'2015-11-09','7:30PM','dinner',3,NULL,'2015-11-09 15:50:19','2015-11-09 23:40:18'),(265,71,'2015-11-10','11:30AM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-10 03:19:35'),(266,71,'2015-11-10','12:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-10 03:19:37'),(267,62,'2015-11-10','1:15PM','lunch',1,'','2015-11-09 15:50:19','2015-11-10 18:25:27'),(268,82,'2015-11-10','7:30PM','dinner',3,'','2015-11-09 15:50:19','2015-11-15 17:37:06'),(273,52,'2015-11-12','11:30AM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-09 15:52:49'),(274,73,'2015-11-12','12:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-12 16:13:50'),(275,78,'2015-11-12','1:15PM','lunch',1,'','2015-11-09 15:50:19','2015-12-04 18:09:25'),(276,77,'2015-11-12','7:30PM','dinner',3,NULL,'2015-11-09 15:50:19','2015-11-09 23:40:43'),(277,71,'2015-11-13','11:30AM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-10 03:19:53'),(278,84,'2015-11-13','12:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-13 13:27:06'),(279,84,'2015-11-13','1:15PM','lunch',1,NULL,'2015-11-09 15:50:19','2015-11-13 13:09:57'),(280,73,'2015-11-13','6:30PM','dinner',3,NULL,'2015-11-09 15:50:19','2015-11-13 23:06:44'),(282,52,'2015-11-16','11:30AM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-16 15:39:52'),(283,84,'2015-11-16','12:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-16 02:54:14'),(284,63,'2015-11-16','1:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-16 16:00:30'),(285,65,'2015-11-16','6:00PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-16 19:18:16'),(286,39,'2015-11-17','11:30AM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-17 16:19:19'),(287,84,'2015-11-17','12:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-17 02:43:27'),(288,84,'2015-11-17','1:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-17 02:43:36'),(289,65,'2015-11-17','6:00PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-16 19:18:19'),(290,NULL,'2015-11-18','11:30AM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-17 06:47:42'),(291,52,'2015-11-18','12:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-18 17:13:17'),(292,63,'2015-11-18','1:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-18 18:03:20'),(293,65,'2015-11-18','6:00PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-16 19:18:21'),(294,52,'2015-11-19','11:30AM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-16 15:40:41'),(295,62,'2015-11-19','12:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-18 20:26:29'),(296,62,'2015-11-19','1:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-18 20:26:30'),(297,65,'2015-11-19','6:00PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-16 19:18:24'),(298,NULL,'2015-11-20','11:30AM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-15 16:37:12'),(299,39,'2015-11-20','12:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-20 17:13:05'),(300,62,'2015-11-20','1:15PM','lunch',1,NULL,'2015-11-15 16:37:12','2015-11-18 20:26:36'),(301,85,'2015-11-20','6:30PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-20 22:23:27'),(302,NULL,'2015-11-21','6:30PM','dinner',3,NULL,'2015-11-15 16:37:12','2015-11-15 16:37:12'),(303,80,'2015-11-23','11:30AM','lunch',1,'','2015-11-23 22:57:44','2015-11-23 22:57:55'),(304,55,'2015-11-23','12:15PM','lunch',1,'','2015-11-23 22:57:44','2015-11-23 22:58:03'),(305,63,'2015-11-23','1:15PM','lunch',1,'','2015-11-23 22:57:44','2015-11-23 22:58:13'),(306,80,'2015-11-23','6:00PM','dinner',3,'','2015-11-23 22:57:44','2015-11-24 01:54:03'),(307,39,'2015-11-24','11:30AM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-24 16:13:50'),(308,62,'2015-11-24','12:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-24 17:18:22'),(309,52,'2015-11-24','1:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-24 18:08:21'),(310,47,'2015-11-24','6:00PM','dinner',3,NULL,'2015-11-23 22:57:44','2015-11-24 18:39:54'),(311,55,'2015-11-25','11:30AM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-25 13:47:29'),(312,55,'2015-11-25','12:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-25 13:47:32'),(313,55,'2015-11-25','1:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-25 13:47:34'),(314,55,'2015-11-25','6:00PM','dinner',3,NULL,'2015-11-23 22:57:44','2015-11-25 14:10:12'),(315,NULL,'2015-11-26','11:30AM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(316,NULL,'2015-11-26','12:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(317,NULL,'2015-11-26','1:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(318,NULL,'2015-11-26','6:00PM','dinner',3,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(319,NULL,'2015-11-27','11:30AM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(320,NULL,'2015-11-27','12:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(321,NULL,'2015-11-27','1:15PM','lunch',1,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(322,NULL,'2015-11-27','6:30PM','dinner',3,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(323,NULL,'2015-11-28','6:30PM','dinner',3,NULL,'2015-11-23 22:57:44','2015-11-23 22:57:44'),(324,52,'2015-11-30','11:30AM','lunch',1,NULL,'2015-11-30 15:32:26','2015-11-30 16:29:41'),(325,62,'2015-11-30','12:15PM','lunch',1,'','2015-11-30 15:32:27','2015-12-01 16:42:26'),(326,63,'2015-11-30','1:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-11-30 16:00:56'),(327,82,'2015-11-30','6:00PM','dinner',3,NULL,'2015-11-30 15:32:27','2015-11-30 22:38:37'),(328,71,'2015-12-01','11:30AM','lunch',1,'','2015-11-30 15:32:27','2015-12-04 00:52:38'),(329,52,'2015-12-01','12:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-12-01 17:04:39'),(330,39,'2015-12-01','1:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-12-01 18:11:08'),(331,82,'2015-12-01','6:00PM','dinner',3,'','2015-11-30 15:32:27','2015-12-02 00:47:35'),(332,NULL,'2015-12-02','11:30AM','lunch',1,NULL,'2015-11-30 15:32:27','2015-11-30 15:32:27'),(333,NULL,'2015-12-02','12:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-11-30 15:32:27'),(334,63,'2015-12-02','1:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-11-30 16:00:59'),(335,78,'2015-12-02','6:00PM','dinner',3,NULL,'2015-11-30 15:32:27','2015-12-02 22:11:09'),(336,39,'2015-12-03','11:30AM','lunch',1,NULL,'2015-11-30 15:32:27','2015-12-03 16:18:59'),(337,55,'2015-12-03','12:15PM','lunch',1,'','2015-11-30 15:32:27','2015-12-03 18:57:20'),(338,74,'2015-12-03','1:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-12-03 17:40:31'),(339,71,'2015-12-03','6:00PM','dinner',3,'','2015-11-30 15:32:27','2015-12-04 00:52:50'),(340,71,'2015-12-04','11:30AM','lunch',1,'','2015-11-30 15:32:27','2015-12-04 17:34:01'),(341,74,'2015-12-04','12:15PM','lunch',1,'','2015-11-30 15:32:27','2015-12-09 23:08:55'),(342,NULL,'2015-12-04','1:15PM','lunch',1,NULL,'2015-11-30 15:32:27','2015-11-30 15:32:27'),(343,74,'2015-12-04','6:30PM','dinner',3,'','2015-11-30 15:32:27','2015-12-09 23:08:25'),(344,NULL,'2015-12-05','6:30PM','dinner',3,NULL,'2015-11-30 15:32:27','2015-11-30 15:32:27'),(345,55,'2015-12-07','11:30AM','lunch',1,'','2015-12-06 05:15:40','2015-12-07 16:37:05'),(346,NULL,'2015-12-07','12:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-06 05:15:41'),(347,63,'2015-12-07','1:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-07 13:52:47'),(348,NULL,'2015-12-07','6:00PM','dinner',3,NULL,'2015-12-06 05:15:41','2015-12-06 05:15:41'),(349,71,'2015-12-08','11:30AM','lunch',1,'','2015-12-06 05:15:41','2015-12-08 22:00:00'),(350,63,'2015-12-08','12:15PM','lunch',1,'','2015-12-06 05:15:41','2015-12-08 22:00:30'),(351,74,'2015-12-08','1:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-08 18:00:41'),(352,80,'2015-12-08','6:00PM','dinner',3,'','2015-12-06 05:15:41','2015-12-09 04:05:19'),(353,NULL,'2015-12-09','11:30AM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-06 05:15:41'),(354,NULL,'2015-12-09','12:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-06 05:15:41'),(355,63,'2015-12-09','1:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-07 13:52:50'),(356,NULL,'2015-12-09','6:00PM','dinner',3,NULL,'2015-12-06 05:15:41','2015-12-06 05:15:41'),(357,50,'2015-12-10','11:30AM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-10 00:28:45'),(358,50,'2015-12-10','12:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-10 00:28:48'),(359,50,'2015-12-10','1:15PM','lunch',1,NULL,'2015-12-06 05:15:41','2015-12-10 00:28:49'),(360,50,'2015-12-10','6:00PM','dinner',3,NULL,'2015-12-06 05:15:41','2015-12-10 00:28:51'),(361,NULL,'2015-12-11','11:30AM','lunch',1,NULL,'2015-12-06 05:15:42','2015-12-06 05:15:42'),(362,NULL,'2015-12-11','12:15PM','lunch',1,NULL,'2015-12-06 05:15:42','2015-12-08 17:45:53'),(363,63,'2015-12-11','1:15PM','lunch',1,NULL,'2015-12-06 05:15:42','2015-12-07 13:52:52'),(364,NULL,'2015-12-11','6:30PM','dinner',3,NULL,'2015-12-06 05:15:42','2015-12-06 05:15:42'),(365,NULL,'2015-12-12','6:30PM','dinner',3,NULL,'2015-12-06 05:15:42','2015-12-06 05:15:42'),(366,55,'2015-12-01','11:00AM','lunch',3,'','2015-12-07 16:37:53','2015-12-07 16:37:53'),(367,62,'2015-12-02','5:00PM','dinner',4,'Formal dishes ','2015-12-07 22:52:53','2015-12-07 22:52:53'),(368,47,'2015-12-01','11:45AM','lunch',2,'Dishes','2015-12-11 19:13:53','2015-12-11 19:13:53'),(369,NULL,'2015-12-14','11:30AM','lunch',1,NULL,'2015-12-14 17:14:34','2015-12-14 17:14:34'),(370,NULL,'2015-12-14','12:15PM','lunch',1,NULL,'2015-12-14 17:14:35','2015-12-14 17:14:35'),(371,NULL,'2015-12-14','1:15PM','lunch',1,NULL,'2015-12-14 17:14:35','2015-12-14 17:14:35'),(372,NULL,'2015-12-14','6:00PM','dinner',3,NULL,'2015-12-14 17:14:35','2015-12-14 17:14:35'),(373,NULL,'2015-12-15','11:30AM','lunch',1,NULL,'2015-12-14 17:14:35','2015-12-14 17:14:35'),(374,NULL,'2015-12-15','12:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(375,NULL,'2015-12-15','1:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(376,NULL,'2015-12-15','6:00PM','dinner',3,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(377,NULL,'2015-12-16','11:30AM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(378,NULL,'2015-12-16','12:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(379,NULL,'2015-12-16','1:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(380,NULL,'2015-12-16','6:00PM','dinner',3,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(381,NULL,'2015-12-17','11:30AM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(382,NULL,'2015-12-17','12:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(383,NULL,'2015-12-17','1:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(384,NULL,'2015-12-17','6:00PM','dinner',3,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(385,NULL,'2015-12-18','11:30AM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(386,NULL,'2015-12-18','12:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(387,NULL,'2015-12-18','1:15PM','lunch',1,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(388,NULL,'2015-12-18','6:30PM','dinner',3,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36'),(389,NULL,'2015-12-19','6:30PM','dinner',3,NULL,'2015-12-14 17:14:36','2015-12-14 17:14:36');
/*!40000 ALTER TABLE `epsilon_e_sheets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `schema_migrations`
--
DROP TABLE IF EXISTS `schema_migrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `schema_migrations` (
`version` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
UNIQUE KEY `unique_schema_migrations` (`version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `schema_migrations`
--
LOCK TABLES `schema_migrations` WRITE;
/*!40000 ALTER TABLE `schema_migrations` DISABLE KEYS */;
INSERT INTO `schema_migrations` VALUES ('20140722024238'),('20140722025005'),('20140727172641'),('20140727232601'),('20140727233704'),('20140807191159'),('20140807193439'),('20140807204912'),('20140809152441'),('20141011195555'),('20141012072105'),('20141223184518'),('20150110014829'),('20150118035246'),('20150118212327'),('20150122042547'),('20151027181735'),('20151030232833');
/*!40000 ALTER TABLE `schema_migrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `summer_housing_applications`
--
DROP TABLE IF EXISTS `summer_housing_applications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `summer_housing_applications` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` text COLLATE utf8_unicode_ci,
`last_name` text COLLATE utf8_unicode_ci,
`sex` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`age` int(11) DEFAULT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`school` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`year` int(11) DEFAULT NULL,
`dke_brother` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`q1` text COLLATE utf8_unicode_ci,
`q2` text COLLATE utf8_unicode_ci,
`q3` text COLLATE utf8_unicode_ci,
`q4` text COLLATE utf8_unicode_ci,
`q5` text COLLATE utf8_unicode_ci,
`q6` text COLLATE utf8_unicode_ci,
`q7` text COLLATE utf8_unicode_ci,
`q8` text COLLATE utf8_unicode_ci,
`room_pref` int(11) DEFAULT NULL,
`finding` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`lived_before` tinyint(1) DEFAULT NULL,
`car` tinyint(1) DEFAULT NULL,
`contacted` tinyint(1) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=214 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `summer_housing_applications`
--
LOCK TABLES `summer_housing_applications` WRITE;
/*!40000 ALTER TABLE `summer_housing_applications` DISABLE KEYS */;
INSERT INTO `summer_housing_applications` VALUES (1,'Monica ','Gates','female',21,'mgates@wellesley.edu','6125848675','Wellesley College',4,'I am not a brother','research at MIT, Building 46','laid back','Work, work out, come back to the room and hang out','Walk to Haymarket and Chinatown for groceries, wander around Boston','Great location, good pricing','n/a','Theta Chi','',3,'Web Search',0,0,0,'2015-01-31 21:53:01','2015-02-27 01:30:55'),(2,'Camille','Frankenfield','female',20,'cmf5508@psu.edu','7176457676','Penn State',3,'I am not a brother','I\'m interning with Hilton at their Doubletree Cambridge property in Event Services','I\'m a very outgoing person but I also like my alone time. I like being in a mixed group of personalities, whether that\'s in a large group setting or just chilling for a night.','Working, going to class, club meetings and school works. Sometimes going out on a Thursday','Work, homework, netflix binging, going out at night.','Last summer I lived alone while interning and it was incredibly lonely. I want to live somewhere with a social and laid back atmosphere. Somewhere friendly but also laid-back; people hang out but also enjoy having their own space.','No','No','I think I\'m able to fit in in pretty much all social environments. I keep my space tidy but I don\'t mind if other people are messy. ',3,'Web Search',0,0,0,'2015-02-15 23:28:22','2015-02-27 01:21:45'),(3,'Allison','Ryder','female',20,'aryder1@swarthmore.edu','9132072398','Swarthmore College',2,'I am not a brother','System Software Engineering Intern at Akamai Technologies located in Cambridge','I\'m pretty laid back but I do like to have fun!','Well right now during the semester, I typically spend weekdays doing homework... and hanging out with friends when I get the chance','On the weekends, I really enjoy doing outdoor activities like going rock climbing, skiing, hiking, etc. I also like to go out with friends and have a good time!','I would like it to be a safe environment with fun people to hang out with','Alex Souvannakhot possibly, and I would be interested in sharing a double','N/A','N/A',2,'Web Search',0,0,0,'2015-02-16 02:01:22','2015-02-27 02:04:50'),(4,'Grainne','Bonner','female',21,'grainnebonner93@hotmail.com','0877775494','Institute of Technology Blanchardstown ',4,'I am not a brother','waitressing in the Whiskey Priest','I am a very outgoing friendly person.','If I\'m not working I love shopping and going out with my friends on a Saturday night','working, shopping with friends and heading out on a Saturday night','I would love to spend my summer making new friends in a warm friendly atmosphere','Yes, my friend Emma Ryan who I am travelling to Boston with who is also from Ireland','I have never stayed in one before','I would love to have the opportunity to spend the summer here, making new friends and new experiences ',2,'Friend',0,0,0,'2015-02-17 14:55:11','2015-02-27 02:04:48'),(5,'Zachary','Zagorski','male',19,'zachary_zagorski@brown.edu','5162362319','Brown University',2,'I am not a brother','Software engineering internship at Onshape - across the street from Alewife T station','I\'m fairly friendly, can be laid-back at times.','Classes, homework, crossword puzzles, Mario Kart, playing my cello, cooking.','Cook tons of food, share most of it with friends.','Affordable rent, walking distance to the Red Line, and all the simple comforts of home - a kitchen and a community.','Alex St. Laurent, and yes.','N/A','',2,'Web Search',0,0,1,'2015-02-23 04:28:14','2015-03-16 23:29:02'),(6,'Alexander','St Laurent','male',21,'awstlaur@techhouse.org','7742896383','Brown University',3,'I am not a brother','Software Engineering at Athenahealth in Watertown.','Mostly outgoing once I\'m comfortable with people.','Go to work, have dinner, do some crossword puzzles and/or video games.','Sleep in!','Near the T.','Zach Zagorski and I would like to live together, preferably in a double.','n/a','n/a',2,'Friend',0,0,1,'2015-02-23 06:43:47','2015-03-16 23:29:03'),(7,'Eimear','Flynn','female',20,'Flynne4@tcd.ie','0833283857','Trinity College Dublin',2,'I am not a brother','Waitressing','Outgoing, sociable, easy to get along with','I have college during the day. In the evenings I tend to meet up with friends and participate in various activities.','At the weekend I catch up with friends and go out with them. I also work some weekends.','Ideally I would love to live in a house such as this. I feel it would suit me as I enjoy meeting new people and there would be constantly people to talk to and hang out with. I spent the summer abroad last year and met people from all over the world and feel that living in this house would allow me to do so again.','Yes. I have two friends who also wish to apply for housing. Ideally we would like to share a triple room. Their names are Irene Brockie and Catherine Hearn.','I have not stayed in a fraternity before.','',3,'IFC Website',0,0,0,'2015-02-23 15:20:29','2015-02-27 01:16:09'),(8,'Ryan','Hickey','male',22,'rhickey@uwm.edu','2242348900','University of Wisconsin-Milwaukee',4,'I am not a brother','Research with Professor Chang in the Materials Science Department at MIT','Outgoing, Enjoy anything from chilling on the couch to going to Concerts or sporting events...','During Summer: Work during the day, basketball and working out at night...','Organized Sports, Social Drinking, sporting events, etc','Social Environment','n/a','n/a','I would prefer a single room if it is an option.',2,'Web Search',0,1,1,'2015-02-24 21:31:39','2015-03-16 23:34:22'),(9,'Alison','Abrams','female',20,'abrams_alis@bentley.edu','5166725951','Bentley University',3,'I am not a brother','Analyst Development Program at Liberty Mutual on Berkeley Street','Outgoing','Going to class/work, hanging out with roommates at night.','Spend time with friends/go out. ','With my two other friends looking for housing in Boston','My friends Morgan Mazone and Jill Raia are most likely living in Boston this summer and yes I would like to live with them in the same room.','No','',3,'Web Search',0,1,1,'2015-02-25 22:10:01','2015-02-27 01:31:09'),(10,'Shannen','McLaughlin','female',20,'shannen-07@hotmail.com','0879954815','University of Limerick, Ireland.',4,'I am not a brother','Summer employment from Ireland.','I enjoy meeting new people and socializing. I would consider myself outgoing and energetic. I look forward to new experiences.','I enjoy playing most sports and during the college term I tend to be busy with sports and college work.','I like meeting with friends, go out, outdoor pursuits and sports.','Fun, experiencing new things, meeting new people.','I intend to travel with 3 friends. We would all like to live together. Their names are Adele Leogue, Laura Leogue and Jennifer Sheehan.','No\r\n','Do you normally rent the house to Irish students during the summer periods?',4,'IFC Website',0,0,0,'2015-02-26 15:04:56','2015-02-27 01:16:08'),(11,'Jennifer','Bleck','female',21,'jbleck@villanova.edu','9784602967','Villanova University',3,'I am not a brother','I have an internship in wealth management this summer. It\'s located in the Financial District.','I\'m very outgoing and friendly. I like to meet new people and go out.','During the week, I usually do work and go spinning. ','Go out to the bars with friends. ','I want to live somewhere that is pretty clean. I\'m pretty laid back and I\'m flexible.','No.','No.','No.',2,'Friend',0,0,1,'2015-02-27 00:19:35','2015-02-27 02:14:18'),(12,'Hannah','Brewster','female',19,'hbrewste@wellesley.edu','7742622380','Wellesley College',2,'I am not a brother','Internship or summer class; Boston area','Enjoy going out, extroverted','Going to class, doing work, exercising','Go into Boston','Fun environment with others around my age','Anissa Sridhar and Neha Vellanki, yes','n/a','I play field hockey at Wellesley, and I like goat cheese.',4,'Friend',0,1,1,'2015-03-04 20:01:33','2015-03-06 01:24:13'),(13,'Anissa','Sridhar ','female',20,'asridhar@wellesely.edu','5086544993','Wellesley College',3,'I am not a brother','MIT UROP ','chill extrovert ','doing homework','go into boston ','somewhere in a good location with cool people','Ellie Manon, Hannah Brewster, Neha Vellanki, Kit Rosen, Hannah Creutzfeldt, i would like to live in the same room ','N/A','I play field hockey ',4,'IFC Website',0,0,1,'2015-03-06 01:52:32','2015-03-06 02:15:54'),(14,'Ellie','Mannon','female',20,'emannon@wellesley.edu','2055330288','Wellesley College',3,'I am not a brother','I have a summer internship at MGH in a transplant research lab. ','I\'m very outgoing and enjoy laughing and joking around. ','I\'m usually at work during the days in the summer. ','Usually I go in to Boston at least once each weekend. ','Somewhere with people my age, who enjoy having a good time. ','Hannah Brewster, Kit Rosen, Anissa Sridhar, Neha Vellanki','N/A','I play lacrosse and am a breakfast enthusiast. ',4,'Friend',0,1,1,'2015-03-06 01:53:00','2015-03-06 02:15:52'),(15,'Neha','Vellanki','female',20,'nvellank@wellesley.edu','4083489614','Wellesley',2,'I am not a brother','I\'m doing a UROP in neuroscience at MGH','I\'m really outgoing and social and I get along with most people. ','Doing homework with my friends or training for field hockey.','Go out to a frat or a finals club. I\'ll also sometimes go to a game or a concert.','I would want to live somewhere that\'s not too expensive and with other college students. ','Yes! Anissa Sridhar, Ellie Mannon, and Hannah Brewster and we would want to room together.','I have never stayed in a fraternity before.','',4,'Friend',0,0,1,'2015-03-06 02:41:56','2015-03-06 02:58:37'),(16,'Caitlin','Crawford','female',20,'cmcrawford@wellesley.edu','2077761809','Wellesley College',3,'I am not a brother','I am a research lab intern at Joslin Diabetes Center which is located in Longwood medical area. ','I would say I am very flexible when it comes to plans, yet I am very outgoing and social. I am very on top of being neat. ','Typically as a neuroscience major and a duel sport varsity athlete my weekdays are spent around staying on top of my work and going to bed early. ','Sports, but in the summer I spend most of my time at my summer house in Chatham, Cape Cod. ','Clean, friendly, and sociable. ','Teryn Mitchell ','N/A','I\'m excited for the potential to live in the house for the summer! ',2,'Friend',0,1,1,'2015-03-08 01:48:06','2015-03-09 17:50:53'),(17,'Irene','Brockie','female',20,'irenebrockie@hotmail.com','0873116302','Trinity College, Dublin, Ireland',1,'I am not a brother','Waitressing, located in the Boston area','outgoing, friendly, organised, open to new experiences, I love meeting new people!','At university, going to class, spending time with friends, in the library','Meet friends I don\'t see during the week, catch up on work, work as a waitress','Somewhere with a great atmosphere, in a great location near shops and amenities, somewhere in a safe area near good nightlife, restaurants, parks etc. Also somewhere filled with friendly people!','Eimear Flynn and Catherine Hearn, and yes I would.','-','I\'m an Irish student travelling to Boston this summer with two female friends and we would really love to live at DKE! We are friendly, outgoing and hoping to make great friends and memories!',3,'Web Search',0,0,NULL,'2015-03-08 12:09:52','2015-03-08 12:09:52'),(19,'Fiona','Heaney','female',19,'fhheaney@wpi.edu','4018552357','Worcester Polytechnic Institute',2,'I am not a brother','Interning at Kiva Systems in North Reading, MA','Laid back but always up for meeting new people','Typically in classes and studying in places that allow me to take a break and socialize, followed by going to the gym and attending meetings','During the school year: catch up on sleep, laundry, socializing, homework, and go out to a fraternity party. \r\n\r\nIn the summer: go to the beach or work','This is my first time living away from home for the summer so I\'m mainly looking for a place where I\'m surrounded by people my age who have similar ambitions and goals for themselves. ','Not currently but I may have a few friends from WPI who may express interest in DKE in the near future. ','N/A','Many of my friends at WPI are affiliated with different IFC organizations and I\'m no stranger to the housing arrangements, and would be a laid back person to have in the house. ',3,'IFC Website',0,1,1,'2015-03-11 02:06:50','2015-03-11 05:25:57'),(20,'Courtney','Peterson','female',19,'cpeters4@wellesley.edu','8609180020','Wellesley College',2,'I am not a brother','tentatively taking classes at Harvard','outgoing, funny, easy-going, energetic','hanging out with friends','go out with friends to a party ','surrounded with nice people, fun and a good atmosphere','Ellie Mannon\r\nAnissa Sridhar\r\nNeha Vellanki\r\nHannah Brewster','no','I play field hockey and lacrosse at Wellesley',4,'Friend',0,1,1,'2015-03-11 02:41:16','2015-03-11 05:25:56'),(21,'leigh','murtagh','female',19,'murtaghupvcwindows@eircom.net','3876957295','dublin city university',0,'I am not a brother','bar/waiting staff','outgoing','college and study','after work socialize','fun and safe','no','no','hard working and like to mix with others',2,'Web Search',0,0,NULL,'2015-03-11 19:52:37','2015-03-11 19:52:37'),(22,'Aaron','Brown','male',21,'aaronbro@andrew.cmu.edu','8622168402','Carnegie Mellon Univerisity',3,'I am not a brother','I will be a software development Intern with Charles River Development in Burlington Massachusetts. ','I am a laid back guy. I do not like chaos, messiness, or noisiness, though I can tolerate it in moderation. I am fairly social, and can get along with just about anyone. ','I typically exercise, read, do homework, and cook several meals for my self. ','Attend a sporting event. Go with friends to the bars to watch sports and have fun. ','I would like to live in a city with good people, good food, and opportunities for fun experiences. ','No.','No.','',2,'Friend',0,0,NULL,'2015-03-12 17:24:03','2015-03-12 17:24:03'),(23,'Zachary','Robbins','male',20,'zrrobbins@wpi.edu','5084557252','Worcester Polytechnic Institute',2,'I am not a brother','Kiva Systems - Software Engineering Intern\r\nNorth Reading, MA','Laid back, likes to go on spontaneous trips, easy to talk to, likes meeting new people','Full time student, going to class, afterwards attending meetings for clubs and hanging out with brothers at my fraternity (Sigma Pi) house','Go out to another fraternity (or stay at my own) to party, I like to talk in a more social setting more than just loud music and dancing. Sometimes go on random trips with friends, sometimes just hang out and have a lazy weekend watching movies and such.','A place where I can come home from work on the weekdays and relax, talk with some friends, maybe go out to dinner. Then on the weekends, go out and explore the city and go to new places, and have a good time during the night if we feel up to it.','Fiona Heaney, didn\'t plan on living with her though','Have not stayed over any fraternity besides my own.','',3,'Friend',0,1,NULL,'2015-03-13 22:30:11','2015-03-13 22:30:11'),(24,'Jeremy','Noller','male',21,'jnoller93@gmail.com','9784603076','University of Maryland, College Park',3,'I am not a brother','I will be working as a Quantitative Systems Pharmacologist for Pfizer, which is located in Kendall Square. ','I would describe myself as very outgoing and social. I am in a fraternity at the University of Maryland.','When I\'m not doing homework, I\'m usually either hanging out with my friends or playing sports such as basketball, football, or soccer.','When I am at school, I usually do work during the day and then, at night, I\'ll go to a party or a bar. ','A clean, convenient, and accommodating house where I would be able to meet new people while working in Kendall Square.','No','No','',2,'Web Search',0,0,NULL,'2015-03-14 00:43:38','2015-03-14 00:43:38'),(25,'Nikhil','Patel','male',19,'nikhil_patel@brown.edu','5164040606','Brown',2,'I am not a brother','Internship at Putnam Investments in Boston','Sociable, nice, sports fan ','Working ','Having a good time with friends','Somewhere with easy-going, fun people ','N/A','N/A','',2,'IFC Website',0,0,NULL,'2015-03-14 19:06:21','2015-03-14 19:06:21'),(26,'Ashok','Rao','male',20,'raoashok@seas.upenn.edu','3198832922','UPenn / Wharton',2,'I am not a brother','Engineering Research at Kensho, a fintech startup near Harvard.','Outgoing and social, but like time to myself every now and then (hence preference for a single or double).','Most of the day at work. Work out 3-4 days a week at night. Read, hang out with friends time allowing.','Probably sleep till around 11 or 12, brunch, nap, light work out. Read and work for a bit and go out. ','Laid back, but comfortable and generally sociable. Not too far from Harvard.','N/A.','N/A.','N/A.',2,'Friend',0,0,NULL,'2015-03-14 19:13:07','2015-03-14 19:13:07'),(27,'Abshaar','Taj','male',21,'aat66@cornell.edu','9172946705','Cornell University',3,'I am not a brother','Consulting internship with Accenture','Outgoing','Sports, tv, sleeping','Play basketball','Nice and social','No','N/a','Parking situation',2,'Friend',0,1,NULL,'2015-03-15 18:08:46','2015-03-15 18:08:46'),(28,'Michelle','Geng','female',22,'mgeng@college.harvard.edu','7133674498','Harvard University',3,'I am not a brother','Internship at Bain Capital - Sankaty Advisors, located in the Prudential Center','Outgoing, but still loves Netflix','Schoolwork and extracurricular activities','Go to a bar or a party','On Memorial Drive :) (My college dorm is also on Memorial Drive). I\'m not too picky, would just like a decently clean place and nice people :)','Is it possible if my brother, who is in high school, can live with me in a double? He is interested in doing research in Boston this summer but on campus housing is very expensive. It\'s okay if you cannot, just wanted to ask. I also have a friend named Alison Zhang who is interning at Sankaty Advisors too and she is also looking for housing, and we would like to live near to each other.','N/A','',2,'Web Search',0,0,1,'2015-03-16 03:20:42','2015-03-16 23:37:15'),(29,'Tony','Jiang','male',18,'tony.jiang@yale.edu','4082183796','Yale University',1,'I am not a brother','I\'ll be a software engineer intern at Google\'s office in Cambridge right next to MIT.','Laid back on the weekdays, outgoing on the weekends.','After dinner, I\'d usually relax somewhere and read, work, or just hang out with friends.','I\'d go out and explore the area, screw around with friends at night, or occasionally go party.','Quiet (on the weekdays at least), close to the office, air-conditioned, has WiFi','N/A','N/A','Nope',2,'Web Search',0,0,NULL,'2015-03-16 17:09:17','2015-03-16 17:09:17'),(30,'Cody','He','male',20,'philipcodyhe@college.harvard.edu','5178626320','Harvard',3,'I am not a brother','Lab research, Harvard ','Chill','Usually laid back, doing work or climbing at Brooklyn boulders in somerville','Pong, slapcup, etc.','A big house with a bunch of guys who want to have a good time.','N/A','N/A','N/A',2,'Web Search',0,0,NULL,'2015-03-17 01:38:54','2015-03-17 01:38:54'),(31,'Raleigh','McElvery','female',20,'rmcelver@bowdoin.edu','6037699876','Bowdoin College',3,'I am not a brother','I will be a summer intern at the Broad Institute. I will be working in the Communications Group as a science writer.','I enjoy hanging out with a diverse group of people. I live in a triple at Bowdoin and I\'m used to being around people/noise/activity all the time.','During the school year, I study, socialize and go to cross-country or track practice, depending on the season.','Hang out with friends, socialize in larger groups, or have a movie night.','Social, safe and clean.','No.','N/A','I am looking for an opportunity to meet new people, live in close proximity to the Broad, and be in a safe environment. ',2,'Friend',0,1,1,'2015-03-17 17:54:21','2015-03-17 19:07:24'),(32,'Gabriela','Hartman','female',19,'ghartman@wellesley.edu','6199550268','Wellesley College',2,'I am not a brother','Research with a professor at Wellesley.','I am pretty outgoing and love to meet new people and explore new places. ','I normally spend my weekdays playing soccer, watching TV, hanging out with friends, and doing work. ','I love to go into Boston on the weekend, either go out to dinner with friends or see a movie. ','My ideal place to live would be easy to get to from Wellesley, in a good location within Boston, and is clean, preferably. ','Hannah Brewster, Anissa Sridhar, and Neha Vellanki from Wellesley are all looking into living at DKE this summer. ','I haven\'t stayed in a fraternity over the summer before. ','',4,'Friend',0,0,1,'2015-03-17 18:22:57','2015-03-17 19:07:25'),(33,'Noah ','Zweben','male',20,'njz2104@columbia.edu','3018285839','Columbia University',2,'I am not a brother','I\'ll be working for a start-up called Vibrant Composites in Cambridge. ','Really outgoing, laid-back about housing','In the summer after work, I love going out to free concerts and other events in the city especially when they involve free food. ','Go hiking, more free concerts and free food. ','A really social and communal environment ','No','Nope','Really excited to be in Boston and living in the house seems like an awesome way to spend the summer.',2,'IFC Website',0,0,NULL,'2015-03-19 00:03:54','2015-03-19 00:03:54'),(34,'Nhi','Ho','female',20,'nhiho@college.harvard.edu','3103827304','Harvard',3,'I am not a brother','Research at BWH','Laid back','Doing work in my room','Run by the river','Cheap by the river','Nope','Nope, but my friend highly recommends it!','',4,'Friend',0,0,1,'2015-03-19 23:56:17','2015-03-20 00:30:39'),(35,'Sorcha ','Murray','female',21,'smurray8@tcd.ie','0868828472','Trinity College Dublin',3,'I am not a brother','As of yet I am unsure as to what kind of work I will be doing this summer as I am only at the beginning of my application and search for jobs in Boston.','I would describe my social preferences as being quite an outgoing person. I love meeting new people and gaining new friends. I love to have an extended group of friends that I can hang out with and partake in various activities and social events. I am a friendly, caring and approachable person. I would also say that I would be easy going and slightly laid back depending on the circumstances.','Usually I spend my weekdays attending lectures and studying the relevant material for my course. A few evenings in the week though I play squash and am involved in various societies around college so I also commit some of my time to them. I enjoy these as a break from academic work and also to get the opportunity to socialise with a broad range of people.','Usually on the weekend I will catch up with family and friends. I may go for dinner with them or catch a movie in the evening time. Also at the weekend I tend to catch up on any assignments or college work that is needed for the coming week. ','I would describe my ideal place to live for the summer as being a nice, friendly and welcoming place with reasonably pleasant living conditions overall. I would like someplace that I feel comfortable in and that has a good balance between being able to have your own space but at the same time being able to interact regularly with others.','My friend, Mary Cleary, is also considering living at DKE this summer. I would like to live in the same room as her should the opportunity to live at DKE arise. ','N/a. ','I am a female Pharmacy student at Trinity College Dublin, in Ireland and will be travelling to Boston this coming summer where I am hoping to work. I am currently looking for a place to live in Boston and was recommended to apply to fraternity houses in the area. I am a friendly, responsible and organised person and hope to embrace the American life this summer. ',2,'IFC Website',0,0,1,'2015-03-22 10:06:29','2015-03-25 04:59:39'),(36,'Benjamin','Wolfberg','male',20,'bwolfberg1@babson.edu','8603061329','Babson College',2,'I am not a brother','I will be working for New Sector Alliance (Non-Profit fellowship program)','Very outgoing who enjoys going out and getting to know people.','Working, golfing, and just hanging out. ','Golf or go to the beach','A place where I can meet new people and create new friendships in the Boston area.','N/A','N/A','',2,'IFC Website',0,1,1,'2015-03-22 16:26:44','2015-04-18 17:08:39'),(37,'Daniel','Douglass','male',21,'daniel.douglass@wustl.edu','6176101619','Washington University in St. Louis',3,'I am not a brother','Cogo Labs in Kendall Square','Outgoing and laid-back , like to go out to bars, sports games, but then also chill at nights, watching movies etc.','Playing fifa, going out, playing frisbee and skating','Go to the park with friends and play sports during the day if its nice out. Go out to bars or clubs at night','Laid back environment, friendly kids, ability to hang outside. Close to restaurants','Peter Metz, We do not want to room together but would like to be both living in the same place','No, but i lived in a fraternity house sophomore year at Washu. I am in AEPi here','I would like to live in a single if it is still available ',2,'Web Search',0,0,NULL,'2015-03-23 18:41:32','2015-03-23 18:41:32'),(38,'Colby ','Fugere','male',22,'colbyfugere@my.uri.edu','4015756821','University of Rhode Island',4,'I am not a brother','I will be working in the Financial District at Ernst & Young. I will be auditing financial companies such as State Street and John Hancock Insurance','I am very outgoing and enjoy meeting new people. I am very easy to get along with but also, very focused on my career. ','I spend most of my weekdays working at Textron Inc. in Providence and attending classes around my schedule. ','On the weekends, I like to go out with my friends at night. During the day, I like to go hang out or go golfing when the weather is nice. ','My ideal place to live allows me to be focused on my priorities such as work during the week and social on the weekends. ','Ben Heroux, Jake Schweitzer. I would like to live with one of them in a double. ','n/a','I was given the link to this housing opportunity from a friend of Seve Esparrago',2,'Friend',0,0,NULL,'2015-03-24 20:49:39','2015-03-24 20:49:39'),(39,'Julie','Castro','female',21,'castr22j@mtholyoke.edu','7863686484','Mount Holyoke College',3,'I am not a brother','I am going to be working as a research assistant. My lab is located in the Brigham and Women\'s Hospital.','I am very \"laid back\" I am also very friendly and outgoing. Not many things upset me and I am very tolerant of others.','I am either resting, working on coursework, or exercising. ','I will try to go out and get some exercise, take a break from my coursework by cooking, or cleaning my room.','An ideal place for me to live is one that is clean, respectful, and socially enjoyable. I do not have many requirements for a good place to live, simply that there is clear communication between house members, and a nice courteous and sociable atmosphere.','Yes, Maria Montero','I have not','I am a very simple person, I am very very understanding and I do not enjoy conflict. Clear communication is key. I do not play loud music, I am not a strong religious affiliate, and I pack lightly.',4,'Friend',0,0,NULL,'2015-03-24 22:01:25','2015-03-24 22:01:25'),(40,'Michael','Barton','male',20,'bartonm@wharton.upenn.edu','5135437702','UPenn',2,'I am not a brother','Working at Solamere Capital - Newbury Street','Outgoing','Studying and going out','Frats/Bars','Fun place to live','No','No but I currently live in a fraternity house - Zeta Psi at Upenn','',2,'Friend',0,0,NULL,'2015-03-25 01:33:29','2015-03-25 01:33:29'),(41,'Yeshwanth','Devara','male',25,'yesh.devara@gmail.com','3528719551','University of Florida',0,'I am not a brother','I am going to be an intern at mathworks ','outgoing for weekends','I will spend time at work, hit the gym, and study.','I would like to go out atlease once, every weekend.','Any place with calm and easy going people around.','No','N/A','',2,'Other',0,0,NULL,'2015-03-25 16:18:16','2015-03-25 16:18:16'),(42,'Ravi','Chowdhary','male',20,'rchwdhr2@illinois.edu','2245229925','University of Illinois at Urbana-Champaign',3,'I am not a brother','research at Professor Peter So\'s lab at MIT','I am more outgoing than laid-back, though I prefer some time to be alone whenever possible.','I attend classes and do classwork, read books, and spend my free time with my friends.','I volunteer at a local hospital in Urbana every Sunday.','My ideal place would be a fraternity house where I could have a view of the Charles River.','I know no one else who is living with me.','I have never stayed at a fraternity house.','Even though my first priority is doing research and other important work, I do take some time to socialize with people and attend local events.',3,'IFC Website',0,0,NULL,'2015-03-25 21:56:22','2015-03-25 21:56:22'),(43,'Cecilia','Sanders','female',20,'csanders@college.harvard.edu','4439680151','Harvard',3,'I am not a brother','Planetary science research on Harvard\'s campus (Cambridge, MA)','Always down for adventures, music, dancing, and high-energy things - but also just as happy having a quiet evening in. Love being around other people in unfamiliar contexts.','Working, generally, with chill evenings watching movies and hanging out.','Get a rental car, and take people stargazing out in Western Mass. Or bouldering. Anything outside and unfamiliar.','A safe place to come home to, full of people who love the process of getting to know fellow people.','Don\'t know anyone yet.','Never stayed in a fraternity over the summer before.','I have no gender preferences for rooming.',4,'Web Search',0,0,NULL,'2015-03-26 06:09:53','2015-03-26 06:09:53'),(44,'George','Liu','male',20,'x.liu@columbia.edu','9096679572','Columbia University',1,'I am not a brother','Product Summer Fellowship at Hubspot. Cambridge','Outgoing and chill','Classes, meetings and emails to set up a fall startup accelerator at Columbia, 3D printing at Columbia Makerspace, crying over econometrics problem sets, managing Columbia\'s student-run investment fund. ','Off-key karaoking in Chinatown','Place with good accommodations and awesome community. Would love to get to know others living in the house over the summer','Have a friend (Joshua Zweig) who might be interested in living in the same room.','None','',2,'IFC Website',0,0,NULL,'2015-03-27 15:34:54','2015-03-27 15:34:54'),(45,'Taylor','Reed','female',21,'reed@college.harvard.edu','7863711597','Harvard',3,'I am not a brother','I\'m doing academic research in Harvard\'s libraries.','I\'m pretty laid back. I have two brothers, so noise isn\'t an issue.','I\'m usually out of the house all day in class or at work.','Sleep.','Having people around sounds way better than living alone.','n/a','n/a','n/a',4,'Other',0,0,1,'2015-03-27 17:19:19','2015-03-27 21:44:48'),(46,'Samuel','Oh','male',18,'samueloh@college.harvard.edu','5166604440','Harvard ',1,'I am not a brother','Research at Harvard Medical School','I prefer a pretty social atmosphere, but not to the point where it becomes too disruptive during the week. ','Normally I would either be doing my work, going to the gym, and sleeping in by around 12am to 1am. ','I would typically stay in to watch TV or movies, go out with friends to eat, or go to the occasional party. ','Someplace where I would feel at ease from academic life and stress. ','I do not know of anyone who is considering living in DKE at the moment. ','I have not stayed at a previous fraternity ','',4,'IFC Website',0,0,NULL,'2015-03-27 23:05:17','2015-03-27 23:05:17'),(47,'Emily ','Chung ','female',20,'echung3@wellesley.edu','7344760462','Wellesley College ',2,'I am not a brother','This summer I am planning to do a UROP with the Graybiel lab at Building 46. I also plan to take a biochem class at Harvard. ','considerate, happy, outgoing, respectful, friendly, openminded ','studying, playing tennis, eating with friends ','grab a meal with friends, explore boston, study, workout ','clean, social, welcoming, diverse ','it\'d be great to live with Soojin Jeong ','n/a ','n/a ',2,'Friend',0,0,1,'2015-03-28 03:05:27','2015-03-28 04:25:39'),(48,'Soojin','Jeong','female',20,'sjeong3@wellesley.edu','5714555442','Wellesley College',2,'I am not a brother','I\'m working on accounting research at MIT Sloan School of Management with Professor Rodrigo Verdi. ','Friendly, respectful, open to new experiences!','Studying, working out, eating with friends. ','I brunch, study in Boston cafes, and party. ','My ideal place to live would be close to MIT Sloan and allow me to meet a lot of great new people!','Emily Chung; Yes','N/A','I can ride my bike with no handlebars. ',2,'Friend',0,0,1,'2015-03-28 03:06:57','2015-03-28 04:25:40'),(49,'Dearbhla','Moore','female',21,'moored9@tcd.ie','0873327372','School of Pharmacy, Trinity College Dublin',0,'I am not a brother','I have just been approved with a J1 visa. The main purpose of this visa is to engage in cultural activities in America. I am currently looking into jobs in retail/waitressing to fund my trip','Outgoing, I love meeting new people.','Well at the moment my week days comprise of college work and extracurricular activities in college. I love engaging in sport and I feel it is a nice way to get to know people. I also am involved with being a class rep of my class, attending student union meetings and convening with the school of pharmacy','I like to play sport, baking and visiting family and friends. ','I would like to live somewhere where people are open to making new friends, perhaps enjoying social activities including trips and various games with each other','Yes. I know Clodagh Harney this summer and I would like to be sharing a double room with her. Jessica Commane, also considering getting a single room in DKE.','Never - this would be my first time in a fraternity','Not at the moment',2,'Web Search',0,0,NULL,'2015-03-30 14:53:42','2015-03-30 14:53:42'),(50,'Clodagh','Harney','female',21,'harneycl@tcd.ie','0872463292','School of Pharmacy, Trinity College Dublin',0,'I am not a brother','At the moment I am waiting for approval on my J1 visa. I should get it by next week. I\'m hoping to work in retail/waitressing to fund the summer','I\'m fairly outgoing. I\'m always up for a chat.','I normally try to spend time with friends after college. I enjoy playing tennis with them. I\'m also involved in a first aid organisation','Normally at the weekend I like to meet up with friends to watch a movie, or go to the pub.','I would love to live somewhere with other people, so I can socialise and make friends. ','I would like to share a double with Dearbhla Moore if that\'s possible. I know that another friend of ours, Jessica Commane, is also looking into accommodation at DKE.','No','No',2,'Web Search',0,0,NULL,'2015-03-30 15:00:57','2015-03-30 15:00:57'),(51,'Jessica','Commane','female',21,'commanej@tcd.ie','0868980327','Trinity College Dublin, School of Pharmacy',3,'I am not a brother','I will be carrying out work as part of the J1 Visa (Summer work and travel) in the retail sector, in central Boston.','I am a very social person, and enjoy meeting new people, however also enjoy having time to relax.','I currently spend my weekdays attending university lectures during the day, and training with Dance Ireland, or teaching dance for my university in the evening.','On the weekends I enjoy taking a break from study to visit friends and attend social events.','My ideal summer accommodation would allow me to meet new people and to have a social outlet, whilst providing a safe and secure environment.','I am applying for accommodation alongside two other students from my university, Clodagh Harney and Dearbhla Moore. As such, a triple room would be most suitable.','I have never stayed in a fraternity before.','',3,'Friend',0,0,NULL,'2015-03-30 15:22:54','2015-03-30 15:22:54'),(52,'Dan','Corcoran','male',20,'dan.corcoran@volossoftware.com','6173120985','Babson',3,'I am not a brother','Software Dev','Generally outgoing :)','Reading, coding, watching netflix, seeing friends','Cook, go to parties, read, code, workout','Being able to hang with interesting people, a good view, easy access to the city','Ben Wolfberg (friend from Babson)','Lived at DKE last summer in Ocean and had an awesome time','Nahh',2,'Other',1,1,1,'2015-03-30 16:30:44','2015-04-02 02:52:30'),(53,'Dan','Fu','male',18,'dfu@college.harvard.edu','3176251134','Harvard',1,'I am not a brother','CS work; deciding between one in Cambridge and one in Boston','Pretty laid back','A mix of work and ballroom dancing','Ballroom dancing','Comfortable, not too small','No','N/A','',2,'IFC Website',0,0,NULL,'2015-03-30 19:40:56','2015-03-30 19:40:56'),(54,'Jake','Pompeo','male',20,'pompeojr@dukes.jmu.edu','4343279355','James Madison University',3,'I am not a brother','Investment banking, 260 Franklin Street','outgoing','I will be working every day during the week this summer','I like going out and meeting new people','A social place with cool and friendly roommates','No','none','I am outgoing and easy to get along with',2,'IFC Website',0,0,NULL,'2015-03-30 20:49:47','2015-03-30 20:49:47'),(55,'Sebastian','Biggam','male',20,'sebbiggam@gmail.com','0862168921','University of Exeter',1,'I am not a brother','J1 working visa from Ireland','Outgoing, sociable, hard-working, sporty. ','Going out, going to the gym, playing soccer, studying.','Watch/play sport/ socialise/ BBQ','I think its more important about the people you stay with rather than the place. I imagine Delta Kappa Epsilon would suit me and my friends perfectly. We are all looking to meet new people and experience a summer that we won\'t forget. I\'m convinced that we could get that here. We\'re really excited by the prospect.','Yes I am travelling from Ireland with 7 other friends. We are a really good group of guys that I promise you would have no problem with. Their names are as follows:\r\n\r\nDavid Baker, David Beamish, Stephen Beamish, Jack Ryan, David Boland, Luke Fitzgerald, Jake Courtney.','I have not stayed at a fraternity before.','',4,'IFC Website',0,0,NULL,'2015-03-30 23:40:38','2015-03-30 23:40:38'),(56,'Ryan','Vogan','male',20,'rcv39@cornell.edu','4844670720','Cornell University',3,'I am not a brother','Internship at MathWorks in Natick, MA','laid back','class/tv/homework','meet up with friends. go out at night','DKE','No','No','Is parking available?',2,'Web Search',0,1,NULL,'2015-04-01 03:29:03','2015-04-01 03:29:03'),(57,'Patricia','Grahmann','female',18,'pgrahman@wellesley.edu','4802062120','Wellesley College',1,'I am not a brother','I will be working in Bevil Conway\'s neuroscience lab at MIT. ','I am definitely a more laid back and introverted person, especially when I first am getting to know a group of people. The more I know people, the more outgoing I become. ','Each weekday my main focus is my classes and classwork, but afterwards I usually practice playing the harp, exercise, and watch tv. ','On weekends I generally hang out with friends, practice the harp, and go into boston to explore the city.','This summer I would like to live with other intellectuals who enjoy music and want to develop a community together. ','No, I do not know anyone else living at DKE this summer. ','I have not stayed at a fraternity over the summer before.','',4,'IFC Website',0,0,1,'2015-04-01 14:38:39','2015-04-02 02:50:32'),(58,'Madeline','Dupre','female',20,'mdupre1@babson.edu','5083539868','Babson College ',1,'I am not a brother','assistant operations analyst position with Akamai ','I can be laid back or outgoing. It all depends on the situation. ','When I am not in class or at swim practice I am probably watching Netflix ','I split my time between work, homework, sleep, and parties ','Safe and moderately clean ','no ','I have not stayed in a summer frat yet ','I am a member of Kappa Kappa Gamma. ',2,'Friend',0,1,1,'2015-04-02 03:29:23','2015-04-10 19:20:27'),(59,'Lindsey','Wattley','female',20,'lwattley@mit.edu','5026481563','MIT',2,'I am not a brother','UROP','laid back','working, mcat class, volunteering','beach, food, alcohol','Brad\'s room','not right now, still waiting on their plans.','n/a','',2,'Friend',0,0,1,'2015-04-02 18:34:14','2015-04-02 19:16:18'),(60,'David','Boland','male',20,'davidboland2@hotmail.com','0877708852','Dublin Institute of Technology (DIT)',2,'I am not a brother','I\'m coming on a J1 visa from Ireland and currently have no work sorted.','outgoing. I enjoy talking but I can be quiet depending on my mood.','Writing music, meeting friends, working if I have a job at the time, attending classes.','Go to a bar.','A chill place with chill people.','A friend who I\'ll be travelling over with (David Beamish) would be interested in sharing a double room.','n/a','n/a',2,'IFC Website',0,0,NULL,'2015-04-03 13:22:06','2015-04-03 13:22:06'),(61,'Chelsi','Scott','female',21,'cscott2@wellesley.edu','5174201266','Wellesley College',3,'I am not a brother','Event Planning Company (Rugged Events) located in downtown Boston.','Out going, I enjoy going out on the weekends but also like to relax some days. Extraverted, like to meet new people and easy going.','In class, working and studying. ','Go shopping or to the movies during the day then normally go into Boston at night. ','Ideally with other fun and easy going students in a upbeat neighborhood with easy access to the T and stores.','Hannah Brewster, Neha Vellanki, Anissa Sridha and Ellie Mannon.','N/A','I play basketball at Wellesley College and I hate bananas with a burning passion.',4,'Friend',0,0,1,'2015-04-03 17:13:19','2015-04-03 20:27:13'),(62,'Mir','Faiyaz','male',21,'mir@dartmouth.edu','6033064467','Dartmouth College',3,'I am not a brother','It\'s a strategy consulting firm on Franklin Street, Boston. ','Outgoing, work hard play hard ','Study in the afternoon, relax and hang out with my fraternity brothers on most evenings ','Hang out in my fraternity, go watch a movie, play video games, catch up on work sometimes. Work out ','A place not too far from work where I will have the opportunity to meet new people and develop friendships. I lived in my own fraternity at Dartmouth for my sophomore and had a great experience and DKE seems like a great place ','I don\'t know anyone ','Never lived in a MIT fraternity before ','This would really be PERFECT in terms of location and living conditions. I am seriously considering this so please let me know asap if there are openings ',2,'IFC Website',0,0,NULL,'2015-04-04 20:42:00','2015-04-04 20:42:00'),(63,'Kit','Rosen','female',20,'kcr1@williams.edu','4134789913','Williams College',2,'I am not a brother','Internship in Senator Elizabeth Warren\'s Office','Outgoing','Internship, gym, relax','go out to eat, workout, watch movies','someplace peaceful but fun','Hannah Brewster, Ellie Manon, Anissa Sridhar and Neha Vellanki','no','I have had the same roommate for two years. We get along extremely well and are both very considerate of the other. I am also pretty tidy. ',2,'Friend',0,1,1,'2015-04-04 22:52:45','2015-04-05 00:00:38'),(64,'Samantha','Stone','female',19,'sstone2@wellesley.edu','2032196166','Wellesley College',2,'I am not a brother','Cardiovascular research at MIT lab ','Very social','Tennis (I\'m on the varsity team) \r\nSocializing \r\nWorking/homework ','Party\r\nSocialize \r\nExplore ','Fun, easy going, social','No, I know three brothers though ','PBE ','Had a great time at Winter Formal!',2,'Friend',0,1,1,'2015-04-06 13:18:38','2015-04-06 21:21:38'),(65,'Conor','Wuertz','male',21,'conor.wuertz@gmail.com','5306010019','Brown University',3,'I am not a brother','Software Engineering in Newton','I\'m quite outgoing and love bringing people together to do fun things. I\'m also quite chill and easy to live with.','During the school year I spend a lot of time preparing for class and working on assignments. I also love playing soccer, going to the gym, cooking food, and spending time with friends.','I like to go dancing, explore new places, and see performances of any type. I often have to study on the weekends as well, though.','I want to live in a friendly environment with pleasant people. Nice facilities and a great location are fantastic pluses. ','My friend Ryan Ngoy. If we are placed in a double, I would like to live with him.','Nope','Nope',2,'Friend',0,0,NULL,'2015-04-06 21:34:45','2015-04-06 21:34:45'),(66,'Ryan','Ngoy','male',20,'ryan_ngoy@brown.edu','9162967268','Brown University',4,'I am not a brother','Business Analyst at Brown Brothers Harriman. It is location in the financial district, near South Station.','I\'m more of a laid back and quiet individual. However, I do prefer to go out an party once or twice a week.','My weekdays are usually quiet. I usually spend them meeting up with friends or doing work.','On the weekends, I usually like to go out at least once with friends. Visit a few places to dance or explore the city.','I prefer to live in a place where individuals get to know each other. Maybe have a few social events in which we all meet and relax outside during a nice day, or have a fun event indoors (pool or poker tournament, things of that nature).','Yes. Conor Wuertz. I would like to room with him.','I have no stayed in the summer before.','95758',2,'Friend',0,0,NULL,'2015-04-06 22:06:02','2015-04-06 22:06:02'),(67,'mohamoud','egal','male',22,'egalx011@umn.edu','5072134894','University of Minnesota - Twin Cities',4,'I am not a brother','Internship with IBM.','Laid back','Working.','Chill','Great city, with good people.','n/a','n/a','I am allergic to dogs.',3,'Other',0,0,NULL,'2015-04-07 15:01:26','2015-04-07 15:01:26'),(68,'Tim','Petri','male',22,'tapetri@wpi.edu','7743295507','Worcester Polytechnic Institute',2,'I am not a brother','Intern at Silicon Labs, Congress Street in Boston.','Outgoing, looking to meet new people and be social in my free time.','During the school year, I am pretty busy with athletics and other commitments aside from the school work. \r\nIn the summer I hope to get spend my free time hanging out at the house, working out and experiencing Boston.','Hang out out with friends, work out and definitely party to relieve stress','Ideally I do not want to live in an apartment but rather a fraternity house with a social atmosphere and events/activities that bring the people who live there together. While not as important, proximity to central Boston or transportations that can take me around Boston also makes a place great for me.','Himanshu Sahay; yes','N/A','from Sweden; a total viking',2,'IFC Website',0,0,NULL,'2015-04-07 15:13:33','2015-04-07 15:13:33'),(69,'Himanshu','Sahay','male',19,'hsahay@wpi.edu','5085020001','Worcester Polytechnic Institute (WPI)',2,'I am not a brother','I\'ll be working as a Software Engineering Intern at Monster in Weston, MA.','Outgoing, always looking to meet new people and up for new experiences.','I split my day between class, homework, club meetings and hanging out with friends. During the summer, I\'d spend a lot of the day at work and then go to the gym. I\'d spend the rest of the day either at the house or I\'d go out.','I normally hang out with friends during the day and go out on weekend nights.','My ideal place for the summer would be a relaxed yet social environment in a spacious, comfortable house.','Yes, I\'d like to live with Tim Petri, who has also applied for summer housing at DKE.','I haven\'t stayed at fraternity over the summer before.','3 semi interesting facts \r\n- I\'m from Dubai.\r\n- I\'m really into the startup world and started the Entrepreneurship Club at WPI.\r\n- I\'ve lived in a Cambridge apartment last summer while interning there and was incredibly bored, which is why I\'m looking to live at DKE this year, on a friend\'s recommendation.',4,'Friend',0,0,NULL,'2015-04-07 15:45:25','2015-04-07 15:45:25'),(70,'Katie','Link','female',20,'klink2@jhu.edu','3148007305','Johns Hopkins University',1,'I am not a brother','Research Assistant under the Division of Neurotherapeutics at Harvard/MGH','Laid-back but social','Studying, low-key hanging out','Go out into the city','Somewhere where I could meet more undergraduates and have a fun summer','Katie Awh (a friend at Princeton), yes I would like to live in the same room ','No','',2,'Friend',0,0,1,'2015-04-07 17:47:25','2015-04-07 18:04:47'),(71,'Mike','Root','male',21,'Mroot@umass.edu','9786607803','University of Massachusetts, Amherst',4,'I am not a brother','I am going to be an intern at Grant Thornton LLP. The office is located at 75 State Street, Boston MA 02110','My social preference is definitely outgoing. I\'m always easygoing and get along with mostly everyone. But, as I am going to be working full time this summer I\'ll definitely be prioritizing work on the weekdays/nights, so any potential roommates don\'t have to worry about noise during the week. ','I am going to be working 9am-5pm every Monday to Friday from June 1st until mid-August. ','I\'m a big fan of going out in the city at night. I also have some friends living in Boston this summer so I\'m sure I\'ll be hanging out with them a lot. I live about 1 hour outside of the city (Lancaster) so I\'ll occassionally make a trip out there. ','MIT frat house, obviously. No but seriously the location/price couldn\'t be better for my job. I\'m not bothered by having roommates so I\'m up for any type of room.','Nope, I don\'t know anyone. ','I haven\'t stayed at any of the other houses. ','I am a brother of Phi Sigma Kappa at UMass Amherst. After living in a fraternity house for 2 years, I know exactly how it operates and exactly how to respect the living space. I also was suggested this house by a good friend of mine who is a DKE brother at Rutgers Universty. This house would be ideal. \r\nI also don\'t have a huge preference on a room type. I will take whatever is open.\r\nLastly, I put my US phone number down but email would be preferable. I am currently studying abroad in the UK and my US number doesn\'t work right now. ',3,'Friend',0,0,NULL,'2015-04-07 18:13:36','2015-04-07 18:13:36'),(72,'Alison','Savage','female',20,'asavage2@wellesley.edu','2076531993','Wellesley College',2,'I am not a brother','not sure yet, but hoping to be doing graphic design work in Wellesley','laid back but social','working for most of the day (sometimes into the night), then relaxing later in the evening/night','Go to a museum or restaurant with friends, hang out in a park downtown, etc.','comfortable, safe, and not too rowdy','Isabel Staccuneddu, yes','I have not stayed in a fraternity over the summer before','',2,'Web Search',0,0,NULL,'2015-04-07 20:58:06','2015-04-07 20:58:06'),(73,'Manudeep','Suresh','male',21,'ns2@illinois.edu','2175524361','University of Illinois at Urbana-Champaign',3,'I am not a brother','Summer internship at Intel. Hudson, Massachusetts','I am an extrovert and I tend to to be outgoing and lively most of the time. But if there is something that needs to be done, I can ignore any form of distraction.','I normally spend my weekdays working on a project or studying till midnight and then watching TV or chilling with my friends after.','Play soccer or basketball.','Decently social but not over-the-top.','N/A','N/A','I like playing basketball and soccer a lot.',2,'Friend',0,0,NULL,'2015-04-08 14:17:34','2015-04-08 14:17:34'),(74,'Daniel','Benson','male',21,'djbenson@wpi.edu','8022493809','Worcester Polytechnic Institute',3,'I am not a brother','Software Engineering intern at Silicon Labs. It is located near the north end of Boston','I am very easy going and sociable. I enjoy going out on the weekends and hanging out.','Working, working out, doing homework, playing frisbee and hanging out with friends in free time','I like to go out on weekend nights and relax during the day. I also enjoy hiking or trips to the beach during the days on weekends.','Somewhere that is close and has easy commute to work. Somewhere that is close to amenities and attractions in Boston. And somewhere I can meet new people and enjoy the social life in Boston','Himanshu Sahay and Tim Petri are applying.','Not over the summer but I am a Phi Kappa Theta brother at WPI','I am a rising senior majoring in computer science. I am a member of the Ultimate Frisbee A team. I would also love a parking spot if available this summer.',2,'Friend',0,1,NULL,'2015-04-08 19:43:15','2015-04-08 19:43:15'),(75,'Michael ','Noonan ','male',20,'mnoon070@mail.endicott.edu','5084237135','Endicott College ',3,'I am not a brother','The Four Seasons Hotel Boston, intern in the sales, marketing and public relations department ','Outgoing and adventurous. I\'m currently in Switzerland studying abroad where I came to an international hotel school by myself where I\'ve met some cool people from all over the world. ','I\'ll usually spend my weekdays watching/playing sports with friends ','Love to get outside and enjoy the nice weather when its warm. I love to chill and play sports but love to go out at night and I\'m always down for a nice day drink when the opportunity presents itself. ','I\'d like to be able to meet some new people who enjoy being social and like to go out. I\'d like a place where I can toss around the football or play some ncie corn hole. I\'d like to get my work done and do a good job at my internship but I\'m very interested in socializing. ','no','none','I\'m in hospitality, I know how to be hospitable with everyone. Let me live here so I can show you the tricks of the trade...',2,'Friend',0,0,NULL,'2015-04-08 20:25:07','2015-04-08 20:25:07'),(76,'Sam','Williams','male',22,'sam.williams@byu.net','2816380965','Brigham Young University',2,'I am not a brother','Deloitte- Assurance, Boston','Outgoing, amiable','Working / studying','Sports & outdoors, community events','Cool people, convenient location','No','No','',4,'IFC Website',0,0,NULL,'2015-04-08 22:23:35','2015-04-08 22:23:35'),(77,'Veronica','Bunn','female',22,'v.bunn@stat.fsu.edu','8594899199','Florida State University',0,'I am not a brother','PhD intern in Biostatistics division at Genzyme, in Cambridge.','Very laid back, down for just about anything. ','Work, happy hour, work more. ','An ideal Saturday is: \r\n1) Brunch\r\n2) Beach \r\n3) Bar\r\n4) Bed\r\n\r\nAnd an ideal Sunday is napping. ','I\'ve never lived in the Boston area before, so I would prefer somewhere that\'s filled with people that know the area and can make good recommendations on where to go, and come with if they want!\r\n\r\nAlso, I\'m a poor grad student, so cheap is good. \r\n','Nope. ','N/A','I make a fantastic jalapeno margarita! \r\nAlso, I can do backflips. Which is a much less useful skill unfortunately. ',2,'Other',0,0,1,'2015-04-09 00:49:12','2015-04-09 01:39:56'),(78,'Austin','Shin','male',21,'ashin01@college.harvard.edu','8136900482','Harvard',3,'I am not a brother','MIT Lincoln Labs, group 9\r\nLexington MA but there is a shuttle from the MIT campus','laid back but looking to meet people','Training for rowing team, work, listening to good music, personal electronics projects','row boats, go to bars, personal electronics projects','A place that has ambitious people looking to hang out and meet one another ','Andrew Mauboussin, I would like to be near him, but we both are ideally looking for our own bedroom','Never','',2,'Friend',0,0,NULL,'2015-04-09 00:55:28','2015-04-09 00:55:28'),(79,'Andrew','Mauboussin','male',22,'ammaub@college.harvard.edu','2036444540','Harvard',3,'I am not a brother','Software Engineering at Kensho in Harvard Square','laid back, outgoing','Hanging out','Have some beers and watch a movie, go to a party','Social and friendly','I am friends would Austin Shin and would want to live with him','No','',2,'IFC Website',0,0,NULL,'2015-04-09 01:00:28','2015-04-09 01:00:28'),(80,'Katie','Awh','female',20,'kawh@princeton.edu','6158292227','Princeton University',2,'I am not a brother','I have a three-month-long medical research position at Massachusetts Eye and Ear Infirmary.','I\'m very social but also like downtime to relax. I’m warm, enthusiastic, and excited to explore Boston and make new friends.','The school year is pretty busy, so the average week usually has a lot of studying and meals with friends.','Definitely catch up on sleep! Also go to parties, the gym, and the library.','I\'m happy living wherever as long as I can be with friends. I hope that by living in a frat house I can hang out with other college students during the summer. It will be much more fun than living alone in an apartment!','Hopefully I can live with my friend Katie Link. She applied earlier and already heard back from you.','n/a','Looking forward to meeting you guys! :) ',4,'Friend',0,0,1,'2015-04-09 01:14:47','2015-04-09 01:36:20'),(81,'Yaovi','Akakpo','male',24,'brilliant.akakpo@gmail.com','7202432281','University of Denver, Daniels College of Business',0,'I am not a brother','I will interning an Ad agency called Mullen, located in Boston.','A good combination of outgoing and laid back. I\'m up for most things and pretty down to earth. ','At the moment, school and work. When I have some time, I love playing pick up basketball/football and my PS3. If not those, I hang out with friends and family. ','Hangout with friends and maybe go out for a bite downtown. ','This will be my first time in Boston. I would love to be in a place that allows me to explore the city and a decent price. ','No I do not.',' I have not','Nothing I can think of at the moment. ',2,'Friend',0,0,NULL,'2015-04-09 02:29:26','2015-04-09 02:29:26'),(82,'Michelle','Lu','female',18,'mlu@wellesley.edu','9083615004','Wellesley College',1,'I am not a brother','MIT UROP-Working with the Zero Robotics competition','Outgoing, but sometimes laid back!','Working','Hanging out with friends','Clean, Fun, Interesting!','N/A','N/A','',4,'Friend',0,0,1,'2015-04-10 02:23:57','2015-04-10 18:11:59'),(83,'Natalie','Pudalov','female',20,'npudalov@colgate.edu','9145825756','Colgate University',2,'I am not a brother','I am going to be interning at Julie\'s Family Learning Center in South Boston.','I would say that I am extroverted but a secret introvert! I am outgoing, positive, and relaxed.','During school, I spend my weekdays going to classes, studying at the library, and exercising!','Catch a movie and hang with friends.','A place where young people come together and enjoy the summer!','No, not yet!','I have not.','I am really looking forward to the summer!',2,'Friend',0,0,1,'2015-04-10 14:40:16','2015-04-10 18:10:44'),(84,'Isabel','Staccuneddu','female',20,'istaccun@wellesley.edu','6317048824','Wellesley',2,'I am not a brother','Non-profit economic research in Cambridge','Outgoing, laid-back, friendly, kind','I can be found studying, at the gym, or at frisbee practice!','I usually have tournaments, but I\'ll go out with my teammates after.','A place where I can relax after work and get to know people from other colleges.','Alison Savage. Yes, and we are also open to quads.','N/A','',2,'Friend',0,0,NULL,'2015-04-10 16:50:58','2015-04-10 16:50:58'),(85,'Derek','Hua','male',21,'dhua20@yahoo.com','5613295301','University of Florida',3,'I am not a brother','Software Engineering Internship at MathWorks in Natick','Outgoing/friendly','Doing school work/going to the gym','Be with friends','A house with cool people, in a good location','NA','NA','I\'m a friendly guy and will always try to make new friends.',2,'IFC Website',0,1,NULL,'2015-04-11 20:21:20','2015-04-11 20:21:20'),(86,'Hannah','McLaughlin','female',20,'hannahmclaughlin@college.harvard.edu','7815001374','Harvard College',2,'I am not a brother','boutique investment banking - 1 Broadway Street in Cambridge','super chill and very social','work, psets, hanging out with friends, psets...','explore restaurants around the Square, go with friends to Queenshead Pub, relax outside','Ideally, I would love to live in a very relaxed atmosphere with cool people with whom I can hang around Boston or just at the house. DKE is also perfect due to its location and beautiful housing!','I do not, but one of my friends is possibly considering applying for DKE housing. If she does apply, I would love to room with her. I\'m extremely flexible about roommates though and housing.','nope','I hear I\'m an A+ roommate',4,'IFC Website',0,0,1,'2015-04-11 21:30:04','2015-04-11 21:43:47'),(87,'Heidi ','Wade','female',21,'wade.heidi@gmail.com','5417403051','Wellesley College ',3,'I am not a brother','Biochemistry research at Wellesley College ','I\'m pretty mellow and laid back ','I work during the day and then usually go to workout in the gym in the evenings. ','I go out with friends which usually involves going out to eat and exploring Boston. ','I want to spend as much time as possible in Boston this summer so living in the city is most important to me. Other than that I\'m looking for a comfortable living environment with interesting people around. ','No. ','No. ','No. ',2,'IFC Website',0,0,NULL,'2015-04-12 13:22:55','2015-04-12 13:22:55'),(88,'Rachael','Devlin','female',19,'rdevlin@mit.edu','6104208849','MIT',1,'I am not a brother','UROP on MIT campus','Whatever is chill','Hang out with friends','go exploring','a bed, hot water and kitchen acess','No','No','goal for the summer include:http://www.buzzfeed.com/christinebyrne/oreo-my-goodness',4,'Friend',0,0,1,'2015-04-12 19:54:06','2015-04-12 23:04:41'),(89,'Samantha (Sammy)','Porter ','female',20,'Saporter@brandeis.edu','8609120427','Brandeis University ',2,'I am not a brother','Intern at Massachusetts Health Council in Needham.','I would describe my social preferences as outgoing. I love meeting new people and just hanging out. ','I would spend my weekdays at my internship. I also like to exercise so I would find time for that during the day as well. ','On weekends I would normally go out into the city with friends or visit friends staying in the Boston area.','My ideal place to live for the summer would be a social environment with great people in an amazing location (and I think DKE offers just that, being right in Cambridge).','No','N/a','I am actually a sister of Delta Phi Epsilon at Brandeis. Our sorority had a mixer with DKE last semester and unfortunately I was unable to make it, but I have heard many positive things about the brotherhood. One of my sisters is living in the same area this summer for her internship and I think a summer in Cambridge would be an awesome experience. ',2,'Friend',0,1,1,'2015-04-13 00:45:32','2015-04-13 01:21:29'),(90,'James','Findlay','male',21,'jmacfindlay@gmail.com','8479029692','Duke University',3,'I am not a brother','Consulting for Parthenon, located at 50 Rowes Wharf','Outgoing','Working, working out, hanging out','Relax, explore Boston, go out ','A fun atmosphere with personal space.','2 friends- yes, but in individual bedrooms if possible.','N/A','Nah',3,'Friend',0,0,NULL,'2015-04-13 01:44:32','2015-04-13 01:44:32'),(91,'Andy','Ly','male',21,'andy_ly@brown.edu','8327585915','Brown University',3,'I am not a brother','Twitter, Software Development','Laid back','Cooking, gaming, music','Gaming, watching movies.','Chill, relax place.','Yes, Karthik Reddy Battula','No','',2,'Friend',0,0,NULL,'2015-04-13 01:53:04','2015-04-13 01:53:04'),(92,'Divya','Seth','female',22,'dseth@post.harvard.edu','5852301617','Case Western Reserve School of Medicine ',0,'I am not a brother','Research at MGH','outgoing ','going to medical school, saving lives, etc. ','explore new places/events with friends, go out, sleep','friendly, clean, open, interesting conversations','No....','N/A','I\'m a recent Harvard College alum (Class of 2014) and a first year medical student in Cleveland. I\'m excited to be in Boston again for the summer. I love to bake! ',2,'Friend',0,0,1,'2015-04-13 14:34:28','2015-04-13 22:02:56'),(93,'Adnan ','Khan','male',22,'adnan3khan@yahoo.com','2017902776','NJIT',0,'I am not a brother','Verizon Internship, Financial District Boston','I\'m pretty laid back but enjoy hanging out with friends','working, studying, going to the gym','hangout with friends, relax at home','comfortable and friendly','No','N/A','I enjoy the outdoors, going to the gym or playing sports, tennis my favorite',4,'Web Search',0,1,NULL,'2015-04-13 22:37:32','2015-04-13 22:37:32'),(94,'Megan','Shea','female',20,'sheatu@bc.edu','4136365895','Boston College',2,'I am not a brother','in the process of hearing back from jobs','outgoing, but chill','hanging out with friends, doing work, exercising','go out with friends','a roof over my head and a shower','Katherine Rosen, Hannah Brewster, Ellie Manon, Anissa Sridhar, Neha Vellanki','N/A','please pick me, I\'m a great girl',4,'Friend',0,0,1,'2015-04-14 02:31:56','2015-04-14 02:53:01'),(95,'Aditya','Dhulipala','male',23,'adhulipa@usc.edu','2138074043','University of Southern California',0,'I am not a brother','I\'m interning as a Web Applications Engineer at Mathworks in Natick, MA. I\'ll be working in the advanced code editing and web services integration team.','Friendly, outgoing, fun-loving gamer/led-zep fan','Mostly at the University. Engineering professors seem to think we have \"too much free time\". I spend most of my time programming on school projects or hobby/open-source projects','I\'d go out. Explore the city,. Or stay at home and play games (big fan of Dragon Age and Mass Effect)','I\'m a an international student in the U.S. I\'d be happy to explore any city that has deep historical & cultural significance in America','No','No','',3,'Other',0,0,NULL,'2015-04-14 18:37:47','2015-04-14 18:37:47'),(96,'Sarah','Cohen','female',19,'scohen3@wellesley.edu','2489244492','Wellesley College',2,'I am not a brother','I\'m going to be commuting back to Wellesley College to take summer classes in addition to pursuing internship work in Boston.','Outgoing, but can be laid back','I normally have an informal schedule where I go to class and take care of other business and personal matters. Occasionally, I will attend several social events during the week.','Go to the movies, explore Boston/Cambridge, go out to eat, and go to concerts!','Clean and safe!','Michelle H. Lee and Julia Han are considering living at DKE this summer. They are also current sophomores and will be pursing UROPs at MIT this summer. I would prefer to live in the same room as them.','I have never stayed at a fraternity before.','Is there a place where I can keep my car at or nearby the fraternity this summer? If so, how much would that parking spot cost?',3,'Friend',0,1,1,'2015-04-14 19:32:35','2015-04-14 20:38:20'),(97,'Mary','Struble','female',16,'rjstruble@yahoo.com','4437429760','Our Lady of Good Counsel HS',0,'I am not a brother','Intern with Twitter in Kendall Square through Girls Who Code','Outgoing, laid back, funny. Fine in groups or spending time alone.','HW or social media after work. Internship will be 9-4 p.m.','Run, go to a sporting event, see a movie, shop, go to the beach','Friendly, convenient, inexpensive, safe','No','None','Double or triple with other females is fine. From MD but have family in area. Will be 17 in September.',2,'IFC Website',0,0,NULL,'2015-04-14 20:14:51','2015-04-14 20:14:51'),(98,'Isabella','Narvaez','female',20,'inarvaez@wellesley.edu','2035853154','Wellesley College',2,'I am not a brother','Research at Wellesley College and taking a class ','Like going out on the weekends, mostly down time during the week. ','Working out, doing work, and hanging out with friends','Workout, go out to dinner, go out at night, find things to do in Boston','Surrounded by friends and in a fun city','Hannah Brewster, Anissa Sridhar, Neha Velanki, Ellie Mannon. Yes I would like to live with them. ','NA','Im on the Wellesley Track and Field team. I love to dance. ',4,'Friend',0,0,1,'2015-04-15 01:44:32','2015-04-15 03:27:15'),(99,'Arlene ','Cordoves','female',20,'arlenecordoves@gmail.com','7863554298','Brandeis University ',2,'I am not a brother','social work, boston ','outgoing ','Netflix or with friends ','go out with friends, Netflix pizza ','somewhere warm but not drenched in sweat ','Samatha Porter! She\'s applied too! We just learned we were both doing it though so she might not have put me on the app! We are both sister of DPhiE Brandeis. ','n/a','I am kind and clean! Always down for a good time. ',2,'Friend',0,0,1,'2015-04-15 03:38:03','2015-04-15 04:41:03'),(100,'Justin','Lai','male',18,'jzlai@stanford.edu','5122280367','Stanford University',1,'I am not a brother','Front-end intern at Cuseum, Boston','Both, honestly','Climb, write, think, program, design','Go climbing','I don\'t need much — just interesting people interested in getting to know each other, who are decently compatible!','Nope','x','x',3,'Friend',0,0,NULL,'2015-04-15 09:52:33','2015-04-15 09:52:33'),(101,'Anmol','Ahuja','male',19,'aahuja@umass.edu','8628126589','Umass Amherst',2,'I am not a brother','Interning at Liberty Mutual insurance on 175 Berkeley st.','Outgoing and laid back','Getting work done an relaxing.','Going out.','A place where I can get work done but also have a good time.','No','No','No',3,'IFC Website',0,0,NULL,'2015-04-15 14:39:59','2015-04-15 14:39:59'),(102,'Austin','Kueffner','male',21,'kueffner@live.unc.edu','3363917005','UNC-Chapel Hill',3,'I am not a brother','Consulting for SONOS','Outgoing, social, like meeting new people and having a good time ','Primary focus on work but like to hang out as well. I enjoy playing basketball and going out about twice a week. ','Travel. I like to make trips and do something unique almost every weekend','Social, but with people who are focused on completing something whether it be summer school or internships','No, but I can recruit other SONOS interns if things work out. ','Well I am in a fraternity at UNC, so I am familiar with the the environment, however, not at MIT','',2,'Friend',0,1,NULL,'2015-04-15 22:31:14','2015-04-15 22:31:14'),(103,'Lucy','Duan','female',20,'Lucy_duan@brown.edu','6072279683','Brown University ',3,'I am not a brother','Working at AthenaHealth (in Watertown) as a product innovation intern. ','I am pretty outgoing. I love meeting new people and hanging out. ','Running, cooking, watching TV, talking with friends. ','Hang out with friends, play tennis. ','A fun and social environment where I can meet friendly people that I can hang out with. ','A few friends are considering living here - Jessie Bleiler, Iris Shao but I don\'t think they\'ve submitted applications. I would be ok either way - living with them or not. ','Zeta Psi summer 2014','Also willing to live in a triple! ',2,'IFC Website',0,0,1,'2015-04-15 22:56:22','2015-04-17 00:30:18'),(104,'tremaan','robbins','male',19,'tremaan@mit.edu','5622938362','MIT',2,'I am not a brother','Interning at Draper Labs in Tech Squeare','Im chill af!','Working, working out, eating, sleeping.','Party. Sometimes chill with my bros at DKE','Somewhere where I can stay with friends.','Yes Ryan Karnish. And yes please. He is Bae!','I stayed at DKE last summer.','Yo hook me up fam!',2,'Friend',1,0,1,'2015-04-16 02:00:16','2015-04-17 00:27:38'),(105,'Jessica','Tran','female',20,'jtran10@tulane.edu','8057541832','Tulane University',2,'I am not a brother','Research Internship at MGH','outgoing!','participating in school activities or studying ','go to happy hour / hang out with friends','a clean, liveable space with the basic amenities. opportunities to socialize with other college students. ','N/A','N/A','my internship technically ends August 14 so if possible, I would love if I could stay until August 15',4,'Friend',0,0,1,'2015-04-16 14:49:00','2015-04-20 04:25:28'),(106,'Michael ','Saaranen','male',24,'saaranem@gmail.com','6412204485','Iowa State University',4,'I am not a brother','Interning with the Boston Red Sox groundscrew taking care of Fenway Park','Outgoing but also enjoy personal time','Working','Have a couple beers with friends','Somewhere clean','Yes, Desmond Decker and Dylan Gress. We would like to share a room.','Pi Lambda Phi','',3,'IFC Website',0,0,NULL,'2015-04-16 15:23:22','2015-04-16 15:23:22'),(107,'Desmond ','Decker','male',21,'dsdecker@iastate.edu','5634192822','Iowa State University',3,'I am not a brother','I will be interning at Fenway Park on the grounds crew.','I am a laid back person, but I like to be active outdoors.','During my week I am normally studying and going to class.','On weekends I hang out with friends and like to disc golf.','I would like a comfortable place that provides the essentials, like a bed and bathroom.','Michael Saaranen','I have not stayed in fraternity over the summer.','',4,'Friend',0,0,NULL,'2015-04-16 16:52:14','2015-04-16 16:52:14'),(108,'Dylan','Gress','male',21,'dgman009@gmail.com','8435301228','Coastal Carolina University',3,'I am not a brother','Boston Red Sox grounds crew intern','very outgoing.','Either working or hanging out with friends','Go surfing, fishing, wakeboarding.','Place with easy going people just like myself.','No','No','No.',4,'Web Search',0,0,NULL,'2015-04-16 17:45:41','2015-04-16 17:45:41'),(109,'Derek','Hua','male',21,'dhua20@yahoo.com','5613295301','University of Florida',3,'I am not a brother','Software Engineering Internship at MathWorks','Outgoing, friendly','Chilling with friends or studying','Go out with friends','A place with good location and great people','N/A','N/A','N/A',2,'IFC Website',0,1,NULL,'2015-04-16 19:15:00','2015-04-16 19:15:00'),(110,'Nathan ','Walton ','male',20,'nathantwalton@gmail.com','5154234357','Washington University in St. Louis ',2,'I am not a brother','Organic chemistry at the other school ','Mix of outgoing and laidback depending on the context - definitely enjoy having a good time. I\'m a brother of another fraternity at WashU and enjoy the lifestyle that it brings with it. ','Going to class, working, working out, studying, and going out or doing something at the house should I have the time. ','I usually try and get out and do something non-school sponsored, as in see the city - go out to dinner, try out a new bar, or just explore. I also attend most of the nightly social events put on by my fraternity. I also try to get out once a month to go camping, climbing, fishing, or hiking somewhere to break it up. ','Nice, easy-going social group of people who are friendly and courteous - who do their own things during the day but also enjoy doing things at night. As for actual living conditions, a bed and someplace to put my minimal belongings is all I need. A kitchen is an added perk. ','No, but I have someone (emilie.neez@wustl.edu) who is doing the same thing as me and is interested in getting a double together. ','n/a','I\'m always down to cook and help out in any regard - I\'ve done some house managerial stuff for my fraternity and know all it takes to keep things running. ',2,'IFC Website',0,0,NULL,'2015-04-16 23:42:26','2015-04-16 23:42:26'),(111,'Aisha','Bornoe','female',20,'aborno@wellesley.edu','6176151305','Wellesley',2,'I am not a brother','MIT research, and a research assistant for a Wellesley professor.','Pretty outgoing, but like to just chill with people. ','Studying, reading, drinking, peruse art.','Go to tasty burger at three in the morning.','Somewhere with lovely chill people, who don\'t mind getting weird.','My ride or die, violet kozloff. We will be the best of roommates.','N/A','I drink every day. In moderation.\r\nAlso I smoke, hoping thats not an issue?',4,'IFC Website',0,0,1,'2015-04-17 00:23:42','2015-04-17 01:06:39'),(112,'Violet','Kozloff','female',20,'vkozloff@wellesley.edu','5107780592','Wellesley',2,'I am not a brother','MIT anther and history departments','Laid back but I like outgoing people!!','I\'ll be busy with work most of the week','Not work :P Go out, spend time with friends, go adventuring or to a party','Laid back, nice community','Aisha Bornoe, my fave, in half a quad (can we be placed with two others in the other room?)','No','I like baking and worked as a baker for 1.5 years',4,'IFC Website',0,0,1,'2015-04-17 00:24:43','2015-04-17 01:06:40'),(113,'Colin','McLeish','male',18,'cmcleis1@swarthmore.edu','8028551390','Swarthmore College',1,'I am not a brother','Infectious disease research at Tufts Medical Center','Outgoing, friendly','Spending time with friends, doing work','Go out to my fraternity ','Good group of people who I could become friends with, quieter on the weekdays but social on weekends.','No','No','I am scuba diving certified, but I don\'t think that it will come in handy.',2,'Friend',0,0,NULL,'2015-04-17 00:49:54','2015-04-17 00:49:54'),(114,'Albert','Herencsar','male',24,'albertcoder@gmail.com','0904029137','Comenius University in Bratislava, Slovakia, Europe',0,'I am not a brother','software engineer intern, Google Cambridge','friendly, calm, laid back','I am in school','Relax, go out, have fun with friends','Nice place where I can sleep, at meet new people','no','-','I am a 24 year old PhD student. I am in my first year of PhD studies, I study in Slovakia (Europe). I am going to work as a software engineer intern at Google this summer. My phone number is +421904029137.',2,'Web Search',0,0,NULL,'2015-04-17 18:40:40','2015-04-17 18:40:40'),(115,'Liz','Kantor','female',19,'eptkantor@gmail.com','9143570607','Harvard',1,'I am not a brother','Physician shadowing at Boston Children\'s, in a play at Harvard','I\'m pretty outgoing and friendly. I\'m ENTJ Meyer Briggs if that helps at all (which it probably won\'t). ','Working and rehearsing','Go out with friends, stay in and have a board game night or something - I get done what I have to get done and then I spend the rest of that time with people I like. ','Friendly, supportive, social group of people who build a community when they\'re not doing their summer things ','No','No','No',4,'Web Search',0,0,NULL,'2015-04-18 04:22:06','2015-04-18 04:22:06'),(116,'Burak','UZAY','male',22,'burak.uzay@gmail.com','5372335522','Hacettepe University',3,'I am not a brother','An observership- Harvard University Massachusetts General Hospital/Department of Neurology','Outgoing','A balance between studying and going out. Also I usually attend language courses.','Going out to spend some time with my friends. And also sparing some \"me time\" to read some books and watch Netflix.','Not too noisy and crowded, a place that I can enjoy the feeling of a brotherhood.','Yes, one of my friends(female) is considering but we would probably stay in seperate rooms.','I haven\'t.','I will make my internship between 22.06.2015 and 23.08.2015. Is it possible to extend the time of departure?',3,'IFC Website',0,0,NULL,'2015-04-18 11:38:06','2015-04-18 11:38:06'),(117,'Larissa','Senatus','female',24,'ljsenatus@mit.edu','8573332937','MIT',4,'I am not a brother','Accenture internship in Boston','Generally laid-back. I enjoy a good time, but also like being alone every now and then. Loudness and excitement don\'t bother me.','A combination of classes (substitute with internship for the summer), meetings, and extracurriculars, and procrastination of course!','Spend a few hours with friends in different settings.','Lively and flexible. I want to live with exciting people, but I want to be able to decompress after long work days.','No.','I haven\'t. But I\'m looking forward to the experience.','I live in PiPhi next door during the school year, and moving to/from DKE will be really convenient for me.',2,'IFC Website',0,0,NULL,'2015-04-18 18:47:03','2015-04-18 18:47:03'),(118,'Leon','Yu','male',19,'leonyu@mit.edu','6267823372','MIT',1,'I am not a brother','UROP','very outgoing & laidback','work, then relaxing','plans with friends or city exploring','relaxing fun environment','no','no','',4,'Friend',0,0,NULL,'2015-04-18 20:05:52','2015-04-18 20:05:52'),(119,'Blake','Barr','male',21,'bab354@cornell.edu','8058894490','Cornell University',3,'I am not a brother','Public Health internship at Ariadne Labs, in Longwood medical area. ','Friendly, laid-back.','Relaxing. Either studying or watching movies talking with friends.','Go out and exercise, hang out with friends.','Some place quiet. I am going to be studying for the MCAT this summer and want a quiet place to study.','No','No','',2,'IFC Website',0,0,NULL,'2015-04-18 20:20:19','2015-04-18 20:20:19'),(120,'Julie','Leow','female',19,'jleow@wellesley.edu','9086442832','Wellesley',1,'I am not a brother','I\'ll be doing a UROP located at Sloan.','Usually pretty flexible, depending on the setting','Classes and club meetings','Studying at Starbucks and parties with friends','Good community with a friendly vibe, active social scene','There isn\'t anybody that I know of. ','I haven\'t before.','',2,'IFC Website',0,0,1,'2015-04-19 01:42:08','2015-04-20 04:23:44'),(121,'Yooni ','Choi','female',22,'yschoi@umd.edu','2407509839','University of Maryland, CP',4,'I am not a brother','Internship with Health Leads in the financial district','I like to both stay in and to go out. I am laid back about a lot of things and love having conversations with people. Regardless of what I am doing during the time I am home, I am super respectful of keeping common areas clean and being responsible for my own space. ','Interning, working out, hanging out, cooking, watching TV','Exploring the city, going out with friends, staying in to watch Netflix, working out','A place that can be both fun and quiet depending on the atmosphere and what people are doing that day','No','None','My friends have had housing at the MIT frathouses, so I\'m looking forward to staying here. My friend, Gholson Glass, was also in LCA at MIT if that counts for anything. ',3,'Friend',0,0,1,'2015-04-19 02:35:52','2015-04-19 03:03:27'),(122,'Noelle','Colant','female',19,'ncolant@mit.edu','3302566259','MIT',3,'I am not a brother','UROP at the Koch Institute','I like being around people and socializing. Not that outgoing, but I\'m a people person.','Work then food then wandering around campus or Boston looking for fun things to do.','See plays in the area, eat lots of food, play card games, bike','Chill. People around who are friendly. People who like food.','I don\'t know anyone (super well) living at DKE this summer :( (but .I know Geoff Hegg and Matt Iovino from MTG and they say DKE is super cool...)','No','',3,'IFC Website',0,0,1,'2015-04-19 18:02:00','2015-04-20 04:22:59'),(123,'Paul','Rogofsky','male',20,'ropa@sas.upenn.edu','5167761593','University of Pennsylvania',2,'Delta Kappa - University of Pennsylvania','I will be a software engineering intern at Wayfair this summer. The company is located in Back Bay.','I\'m pretty outgoing. I like to chill (play video games, watch tv) and go out on weekends.','During school, I\'ll usually just do homework. During the summer, I try to lift or play basketball every day, and then relax/watch tv for the remaining time before I go to sleep.','I\'ll go to a party at night usually one day. Otherwise, I will mainly just hang out, play video games, or play basketball.','A good place to live this summer would have people I can just hang out with when I\'m bored. I am in DKE at Penn, and it\'s awesome to just leave my room and hang out with my brothers.','No I don\'t know anyone else living at DKE.','No','',3,'Friend',0,0,1,'2015-04-19 18:18:13','2015-04-22 17:34:32'),(124,'Avril','Howe','female',20,'howe22a@mtholyoke.edu','6037171243','Mount Holyoke College',2,'I am not a brother','New Forest Capital--Private Equity Firm in Cambridge, MA','I am very easygoing--I like to be social and get to know people in a variety of settings. ','During the summer I will be spending my weekdays working (10-6,) then mostly relaxing and unwinding after the workday is complete. ','On a weekend I may visit/go out with friends, go out to eat, watch a movie, go for a run. ','My ideal summer housing would be among other college students with similar summer plans. I prefer a situation in which the people I am around are interested in getting to know each other--but I am not unhappy with a situation mostly comprised of brief living interactions. ','No, I do not. ','N/A','',4,'Friend',0,0,NULL,'2015-04-19 21:10:16','2015-04-19 21:10:16'),(125,'Wendy','Feng','female',20,'wf2194@columbia.edu','2052223146','Columbia',2,'I am not a brother','Research at MGH','Outgoing, chill, friendly. I guess it depends on what I\'m doing','Go to class, eat dinner with friends, do homework/catch up on TV shows','Go downtown, netflix, go to school athletic events, study','Someplace chill during the week but fun on the weekends. Some place social','Nope','PKT last summer','I\'m planning to stay in boston 5/22-8/1. I know these dates are a little different from what y\'all put on the website.',2,'Friend',0,0,1,'2015-04-19 23:20:25','2015-04-20 04:22:00'),(126,'David','Xu','male',20,'davix@seas.upenn.edu','7183549535','University of Pennsylvania',3,'I am not a brother','Software engineering at Google Cambridge.','Laid back.','Playing videogames.','Bar crawl.','The ideal place has a lot of cool people that also enjoy playing videogames / drinking beer.','No.','No.','',2,'Friend',0,0,NULL,'2015-04-20 17:24:00','2015-04-20 17:24:00'),(127,'Kim','Matthews','female',23,'kim.matthews3@mail.dcu.ie','0862261104','Mater Dei Institute of Education (DCU)',4,'I am not a brother','I will be gaining further experience in the hospitality sector and located on Newbury street.','I am easy going, laid back, and enjoy meeting new people as well as hanging out with friends. ','I am currently in college until 5 most evenings. In my spare time I attend college events and spend time with my friends.','I currently work part time at weekends. I also read, go to the cinema and spend time with my family (bringing the dogs for walks, visiting relatives etc.)','DKE! I would like to live in secure, social accommodation that gives me the chance to meet new people and fully embrace all aspects of American life.','I would like to share with another Irish girl, Dearbhail Brogan. ','Have never stayed in a fraternity.','I am an Irish girl travelling to America for the first time this summer who would love the opportunity to live at DKE.',2,'IFC Website',0,0,NULL,'2015-04-20 17:54:53','2015-04-20 17:54:53'),(128,'John','Maxwell','male',22,'johnmaxwell1992@gmail.com','3174135241','Purdue University',4,'I am not a brother','Account Management Intern at Otis Elevator \r\n\r\n100 Summer St, Boston','Very Outgoing, Really enjoy meeting new individuals ','School work, hanging out with friends','Playing sports with friends, going out to the bars at night','a social environment composed of people who are looking to make new connections.','N/A','N/A','I am in a fraternity a Purdue, and know the benefits with living in a fraternity. I am from Indianapolis and wont have any friends in Boston this summer. Living in Delta Kappa Epsilon can give me the opportunity to make new friends.',2,'IFC Website',0,1,NULL,'2015-04-20 19:17:36','2015-04-20 19:17:36'),(129,'Ching Pin','Cheng','male',19,'shaymin84@gmail.com','8572091173','MIT',2,'I am not a brother','UROP','outgoing but not extremely outgoing ','on campus','also on campus or go walking in downtown','convenient, clean, quite','no','no','no',4,'IFC Website',0,0,NULL,'2015-04-20 21:15:50','2015-04-20 21:15:50'),(130,'Alyssa','Dayan','female',18,'ady@mit.edu','6178031732','MIT',1,'I am not a brother','A synthetic biology UROP at NE47','I like people! ','Studying, sleeping, eating, hanging out with friends, up until Sunday Next Act was my life','Going to plays, musicals, dance performances and workshops, watching movies, sometimes going to parties','Somewhere reasonably clean with lots of other MIT students, where everyone hangs out and does lots of fun stuff together. ','Another MIT freshman called Marjorie Buss- I\'d like to be in a double or triple with her.','This would be my first time','',2,'Friend',0,0,NULL,'2015-04-20 22:39:09','2015-04-20 22:39:09'),(131,'Prachi','Doshi','female',26,'prachidoshi89@gmail.com','4126082585','Carnegie Mellon University',0,'I am not a brother','Interning at Wayfair, Copley Place','Outgoing','Weekdays would be busy with office . ( currently weekdays are spent doing classes at Carnegie Mellon University )','Meet friends, relax at home, watch a movie','Smoke free zone with friendly people','No','No','Indian girl ( prefer to share with another girl)',2,'Friend',0,0,NULL,'2015-04-21 01:55:15','2015-04-21 01:55:15'),(132,'Kyle','Horvath','male',21,'Kyle.Horvath@uconn.edu','2038855246','University of Connecticut',3,'I am not a brother','Business Strategy intern for Tech startup operating out of Harvard ILab','Outgoing, easygoing','working, going to the gym, practicing hobbies, occasionally going to the bar (Thursdays)','Play Golf, go to the beach, go out to eat/movies, go to a bar/party, travel','Ideally I would love to live in a place righ in history, close to my work location, and a short way away from boston. It would be great to be in the most social environment as possible and meet new people','no','no','NA',2,'Web Search',0,1,NULL,'2015-04-21 03:29:34','2015-04-21 03:29:34'),(133,'Quanzhi','Guo','female',21,'qguo@colgate.edu','3152288086','colgate',1,'I am not a brother','non profit fellowship','don\'t drink and party much','work and study and workout','go for concert/talks/hang out with friends/eat/cook','not too noisy. convenient','yes. val polycarpe','no','',3,'Friend',0,0,1,'2015-04-21 04:10:37','2015-04-23 01:40:01'),(134,'Amy','Cloy','female',21,'amycloy2@illinois.edu','7089218031','University of Illinois at Urbana-Champaign',3,'I am not a brother','I have an internship with Anheuser-Busch, located in Medford, Massachusetts. ','I am super laid back and I love going out. ','Hanging out with friends, catching up on netflix, etc. ','Going out to eat and to a bar, watching live music','Anywhere with fun people!','N/A','N/A','N/A',2,'Other',0,1,NULL,'2015-04-21 08:25:39','2015-04-21 08:25:39'),(135,'Olivia','Ondeck','female',21,'oondeck@wellesley.edu','5859028671','Wellesley College',3,'I am not a brother','I will be working at CogoLabs located in Kendall Square. I will be working on analytics team.','I am a very outgoing person and I love organising events/outings/socialising. ','I like balance between socialising and working. I usually work during the day and relax in the evenings.','I would go biking, go for a run, sit in the sun, or go for a long walk. I love checking out restaurants/cafes. ','My ideal place would have people my age who are in college just like myself.','N/A','N/A','',2,'Other',0,0,1,'2015-04-21 08:55:46','2015-04-21 16:23:22'),(136,'Lauren','Paul','female',19,'lpgw1996@mit.edu','7403192341','MIT',1,'I am not a brother','I will be working a course 9 UROP at Lin Lab on Vassar Street. ','I am an introverted person, but it\'s not difficult to make me laugh. Once I get comfortable around people I am much more forthcoming. ','I will probably spend them working, playing piano, and learning Finnish.','I like to walk around Boston and cook. ','My ideal summer living arrangement would be a place I could come home to without dreading. Optimally I would make a few friends, too. ','No','N/A','',4,'IFC Website',0,0,1,'2015-04-21 20:39:44','2015-04-22 00:31:32'),(137,'Nicholas','Gabriel','male',20,'ngabriel@mail.umw.edu','7033954223','University of Mary Washington',2,'I am not a brother','I will be a summer fellow in the physics division of Massachusetts General Hospital, doing medical physics research.','laid back, with my mind on my money, and my money on my mind.','drinking alcohol','Go on outdoor adventures, concerts, listening to tunes etc.','Close to my work place, with lots of like minded people to hang out with.','negative','I have not, but I am in a fraternity.','negative',4,'IFC Website',0,0,NULL,'2015-04-22 02:51:37','2015-04-22 02:51:37'),(138,'Sami','Hopkins','female',20,'shopkins1@berklee.edu','4802546581','Berklee College of Music',2,'I am not a brother','Berklee summer classes, language classes, part-time work','very laid-back, love meeting new people, and having time to hang out with friends is really important to me','working/studying, producing music, etc.','go out, drink, see live shows, meet as many people as possible','Environment with lots of other people, tons of opportunities to socialize but I can come and go as I need to for work, school, etc. Convenient location between Back Bay and Cambridge for my friend and I','Brenna Christensen (shared room)','none','',2,'Friend',0,0,NULL,'2015-04-22 04:53:51','2015-04-22 04:53:51'),(139,'Bailey','Graves','female',20,'bgraves@colgate.edu','3154056529','Colgate University',3,'I am not a brother','I am working at a non-profit called Heading Home which fights homelessness in Boston. It is located at 529 Main Street #100, Boston. ','I can be either given the situation. I like me time, but I also like to socialize and really enjoy new roommates. ','Weekdays I go to work, hangout at a park or go for a walk and then settle down to cook dinner and binge watch netflix. ','On a weekend I would barbecue or go to a farmers market (often both) and explore. ','My ideal place to live is somewhere where I can socialize when I want to, but still have somewhere to chill with headphones in and relax. ','I do not. ','I have not. ','I like cooking for large groups of people and meeting new people. ',4,'IFC Website',0,1,1,'2015-04-22 17:00:02','2015-04-22 17:32:06'),(140,'Danielle','Putur','female',21,'dputur@colgate.edu','6034932430','Colgate University',3,'I am not a brother','This summer I am a Manzi Fellow with Colgate University which means I will be doing nonprofit work at Boston Healthcare for the Homeless. The branch of BHCH that I will be located at is on Albany Street in Boston.','I would say that I am a laid back personality, up for whatever is going on around me. I am always happy to meet new people but also appreciate a quite night in with friends.','On the weekdays I anticipate having long hours at work, so after getting back from work I usually go on a run, make dinner, and then either hang out with my friends or relax around the house.','Having grown up near the north shore, I spend most of the weekends during the summer relaxing on the beach during the day, and hanging out with my family or friends at night.','This summer I am looking for a relaxed and open environment where I can meet new people and enjoy Boston.','Bailey Graves','No, I have not.','I selected quad but I\'d be happy in either a triple or a quad.',4,'Friend',0,1,1,'2015-04-22 19:59:57','2015-04-22 20:22:49'),(141,'Christina','Chen','female',20,'cgc3@williams.edu','2408932772','Williams College',3,'I am not a brother','I will be doing research in Richard Gregory\'s lab at Boston Children\'s Hospital.','I\'m pretty outgoing and enjoy hanging out with people, but I also appreciate having some time to myself. ','I have a pretty science-heavy schedule right now, so most of the time I\'m in lab or doing problem sets. I also teach at the local elementary school and tutor.','Sleep...I also like to head outside when the weather is nice and go to the occasional party with my friends. ','Somewhere centrally located and close to public transportation so that I can explore the area on the weekends. ','Nope. ','Nope!','Nothing for now, thanks!',4,'Friend',0,0,1,'2015-04-23 21:24:26','2015-04-23 22:29:52'),(142,'Shu Yun(Gina)','Liu','female',19,'ginaliu@mit.edu','2672748858','MIT',1,'I am not a brother','UROP -- Koch Institute ','chill & laid back\r\nshy at first, but talkative once I got to know the person','class, UROP, p set','dance (ADT)','somewhere I can gain a different experience than dorm life','Sibo Wang\r\nYes, I would love to get a double with her','N/A','',2,'Friend',0,0,NULL,'2015-04-24 03:51:28','2015-04-24 03:51:28'),(143,'Michael','Powell','male',24,'mpowe027@fiu.edu','3055103506','Florida International University',3,'I am not a brother','Summer research in Dr. Dan Gilbert\'s lab at Harvard University','Outgoing but shy at first.','Monday through Friday I will be working all day.','Normally I\'d go to the beach with a few friends, however in the Boston area, I\'m excited to explore the city.','Honestly, it would be a colonial city like Boston. Being from Florida, I\'m not used to the history behind a city and I\'d love to be able to experience it without the cold winters. ','No.','N/A','',4,'IFC Website',0,0,NULL,'2015-04-24 13:27:39','2015-04-24 13:27:39'),(144,'sibo','Wang','female',18,'sibowang@mit.edu','9739324356','MIT',1,'I am not a brother','I\'m uroping with a phD student at Sloan this summer.','laid back','Mostly just work and surf the internet','I like exploring Boston with friends on the weekends','a place where all the residents are friendly and chill and the facilities are clean','Gina Liu and I would like to room with her','no','',2,'Friend',0,0,NULL,'2015-04-24 21:06:53','2015-04-24 21:06:53'),(145,'Andrea','Plat','female',21,'ap654@cornell.edu','3054091182','Cornell University',3,'I am not a brother','R&D internship at Gillette','I like to go out on weekend nights, but will be staying in during the week','If I don\'t have to study, I hang out with my housemates or go out.','If the weather is nice, I like to spend time outside or if I have to stay in during the day I\'ll just hang around with friends or watch TV.','Somewhere with cool people I can hang out with, but I also need to be able to focus on my internship during the week. On weekends, I\'d like to be able to explore Boston and meet new people.','Pujaa Rajan (also from Cornell) might be applying.','No','',2,'Friend',0,0,1,'2015-04-24 22:08:47','2015-04-25 01:54:00'),(146,'Carolyn ','Yao','female',20,'cyao42@gmail.com','9172240301','Duke University',2,'I am not a brother','Startup, incubating at the Harvard Innovation Lab','chill, a fan of spending time outdoors (literally)','will be working weekdays, but hopefully peaceful, pleasant evenings earlier in the week with cooking and working out and nights out later in the week','Spend the daytime on a hobby, catching up on conversations, spending the nighttime out in town','Affordable, accessible, with people of my age who share some of my interests','Nope','N/A','Flexible about room sizes that cost less than the single (single may be expensive for me)',3,'Web Search',0,0,NULL,'2015-04-26 03:13:04','2015-04-26 03:13:04'),(147,'Mallory','Ham','female',20,'mham1@babson.edu','2032470832','Babson College',2,'I am not a brother','I am interning at Entercom in Brighton','I\'m a pretty laid back person, easy to talk to, pretty organized and can definitely stay out of the way. I\'m also definitely up for some cooking with friends!','I\'ll be working every week day. Tuesdays and Thursdays will be 9 am -5 pm and the other days are to be determined.','I\'m going to try to work most weekends, but if I am not I\'ll usually hang out during the day, go out to lunch, go shopping, and at night go out. ','I want to be surrounded by new people to make friends with and have a good time with. I am definitely looking for a fun, social atmosphere as well as place that I can come home to and relax.','My friend Lexie is considering living in DKE this summer and I would room with her.','I have not.','I am a very hard working person and will keep my areas clean.',2,'Friend',0,1,1,'2015-04-26 17:11:45','2015-04-26 22:46:54'),(148,'Alex','Chou','male',21,'alexander_chou@brown.edu','7034720567','Brown University',4,'I am not a brother','Software Engineer at nToggle (startup)','Laid back and loyal','Watching/playing sports and coding','Go out to dinner, go shopping with friends, go to socials','Easy access to the city, near other college students','No','No','Not really',2,'Friend',0,0,NULL,'2015-04-26 23:17:42','2015-04-26 23:17:42'),(149,'Carey','Mott','male',21,'careykmott@gmail.com','2039624385','University of Colorado Boulder',3,'I am not a brother','Interning at the Federal Reserve Bank of Boston downtown. ','Laid back, reserved but social, need my quiet time every now and then. ','Working most of the day, then usually evenings with friends and reading at night. ','Depending where in the country I am, usually fly fishing, sailing, rowing, and visiting with friends. ','Quiet but still lively, clean, safe. ','No. ','N/A ','I’m fairly reserved, enjoy reading, writing, sailing, and rowing, and will spend most weekends on camping/fishing trips or traveling to New York and DC to visit friends. ',2,'IFC Website',0,1,NULL,'2015-04-27 05:34:53','2015-04-27 05:34:53'),(150,'John','Potter','male',20,'j.potter1@nuigalway.ie','0877623992','National University of Ireland Galway',2,'I am not a brother','Unknown, we will be job hunting on arrivial, most likely in restaurants and bars','outgoing','college, playing sports and hanging out with friends','go out, watch games','central to services and city, clean living environment, and a good atmosphere','Joe Healy, Kevin Lee, Cian De Lamport and yes we would like to share a quad room','no','We\'re all friendly hard working irish students visiting Boston for the summer on a J1 work and travel visa',4,'Web Search',0,1,NULL,'2015-04-27 14:38:50','2015-04-27 14:38:50'),(151,'Deirdre','Plaus','female',22,'dplaus@colgate.edu','3035226718','Colgate University',4,'I am not a brother','Marketing, Financial District','Outgoing!','Working','Going out, exploring Boston','Friendly people, clean, fun, safe','Allie Schneider--we would prefer two singles but would be willing to share a double','N/A','N/A',2,'IFC Website',0,0,1,'2015-04-27 18:28:28','2015-04-30 00:02:07'),(152,'Alice','Lee','female',18,'elee19@wellesley.edu','4125088647','Wellesley College',1,'I am not a brother','MIT Research - AgeLab','Outgoing','Hanging out with my friends, exploring Boston/studying.','Go to friends\' parties in the city. ','A friendly and clean environment. Accessibility to work.','No','No','I\'m pretty chill. I also wouldn\'t mind a triple.',4,'Friend',0,0,NULL,'2015-04-28 00:18:58','2015-04-28 00:18:58'),(153,'Philippa','Haven','female',20,'philippahaven@comcast.net','6178332657','Scripps College ',2,'I am not a brother','I will be interning at Charles Group Consulting in downtown Boston, as well as conducting independent economic research on women in the labor market. ','I am outgoing, and love to be social. However I do take my work seriously, and hope that the house can be a place to unwind after work. ','Besides working 9-5 I like to cook, work out/go for runs, watch T.V., read, and just hang out and talk with people. ','Something active outside, like hiking, going to the beach, or attending a music festival. Sometimes I will attend a few parties and entertain people, but low-key weekends are also fun. ','A social place, where people are respectful and relatively neat. I understand there will be people with different work schedules, and I hope everyone will be respectful of others in regards to common, shared spaces. I\'d also like to get to know the other people living in the house, and hope that throughout the summer we can get to know each other!','N/A','N/A','I am really excited to be interning and researching in Boston this summer! I have some friends that will be in the Boston area, and hope to make more this summer! ',2,'Friend',0,0,1,'2015-04-28 04:05:50','2015-04-29 00:46:53'),(154,'Jakub','Kaczmarzyk','male',21,'kaczmarj@union.edu','5163537736','Union College',3,'I am not a brother','Neuroscience research at MIT (Laura Schulz\'s lab)','Easy-going but also outgoing.','Practicing the piano, hanging out with my friends, doing cog neuro research, and doing homework.','I would go on a 20-50 mile bike ride with my best friend.','Close to MIT, clean, and decently priced.','Yes, Adrianna Ratajska. I would like to share a room with her.','N/a.','I can play the piano for you.',2,'Friend',0,0,NULL,'2015-04-28 05:35:42','2015-04-28 05:35:42'),(155,'Judene','Thomas','female',20,'thoma23j@mtholyoke.edu','4136579936','Mount Holyoke College',2,'I am not a brother','Internship in the Brookline area','I am pretty laid and quite.','I will be at work.','I would normally go to church or watch tv, hang out with friends or attend events.','Somewhere that is quite, serene and very relaxing. ','No','I have not stayed in a fraternity before.','',4,'Web Search',0,0,NULL,'2015-04-28 18:13:08','2015-04-28 18:13:08'),(156,'Karen','Moorthi','female',18,'kmoorthi@wellesley.edu','5856439902','Wellesley College',1,'I am not a brother','I\'m going to be researching in the Spencer lab at Beth Israel Deaconess ','I\'m pretty laid back, and usually down for anything ','Over the summer, I\'ll probably spend most of my time during the day in the lab, and the rest of the time in the evening either around the house hanging out, or out in Boston.','I\'m usually either catching up on work, or out exploring the city','Some place with a welcoming community where people are down to hang out together after their days','N/A','I\'ve never spent the summer in a frat','Looking forward to hearing from you guys! ',2,'IFC Website',0,0,1,'2015-04-28 21:23:39','2015-04-30 00:02:11'),(157,'Sarah','Meyers','female',21,'sjm342@cornell.edu','9498385022','Harvard University',0,'I am not a brother','I am taking classes through Harvard Extension School.','I would say I\'m pretty laid back - I lived in a co-op for 2 years in college so I\'m definitely used to living with a lot of people.','School, volunteer stuff, working out, etc.','Go to bars with friends','Conveniently located, fun/social, relatively cheap','Nope','N/A','',2,'Web Search',0,0,NULL,'2015-04-28 22:06:53','2015-04-28 22:06:53'),(158,'Andrew','Adams','male',18,'adamsa@mit.edu','9198869406','MIT',2,'I am not a brother','I will be UROPing with the MIT AeroAstro department on campus. ','I will most likely not be hanging out at DKE very much if I stay there. I am outgoing and generally very intense about what I do. ','I will spend them in lab followed by playing games, reading, and hanging out with friends on campus.','Go to Boston, sleep in, play games, read','I would most likely spend most of my day outside of where I live, so the ideal place for me would be somewhere that I can come in at any hour (literally) and sleep or work or read. I also enjoy company, so having people that I can talk to is important to me as well. ','Rachael Devlin, and no ','No, but I have stayed at Theta Xi over CPW.','I am loud as a roommate. I like rockets, planes, physics, and music. ',4,'Friend',0,0,NULL,'2015-04-29 02:31:19','2015-04-29 02:31:19'),(159,'Brandon','Klugman','male',21,'brandonklugman@gmail.com','9528367172','American University',3,'I am not a brother','Summer internship -- location will be finalized in the coming weeks','Laid back during the week, outgoing on weekends','Going to class, and work, eating meals with friends, doing homework and watching sports.','Hang out/drink with friends, watch/play sports, do homework, go out to eat.','My ideal place would be somewhere where I am living with nice, easy going people who are friendly and like to have a good time.','No','No','I am a kind, laid back person who likes to meet people and have a good time. I am a big sports fan and like to play pick up basketball.',2,'IFC Website',0,0,NULL,'2015-04-29 06:17:52','2015-04-29 06:17:52'),(160,'Zachary ','Brown','male',20,'zbrown@friars.providence.edu','9787643167','Providence College',2,'I am not a brother','interning at Mass Dems','outgoing frindly','studying, working community service','video games, hanging with friends','a reasonably priced space with other people around ','no','no','not really',3,'Web Search',0,0,NULL,'2015-04-29 11:10:31','2015-04-29 11:10:31'),(161,'Barbara','Terwilliger','female',20,'bmt2128@columbia.edu','6178175788','Columbia University',4,'I am not a brother','Not decided yet','I am very social and laidback. Love being around people even if its just sitting around doing work together.','Normally wake up early to work out, go work, after work relax by reading, playing guitar, hanging out with roommates ','Biking along Charles River, walking around downtown, at night going out with friends. ','I am looking for a place that is relaxing and a great hang out spot. I love being productive, so am usually looking to relax when I come home. I have many siblings so love being around many people and am used to sharing things and space with others. ','I have someone who is considering living with me, but she is not entirely sure yet if she will be in Boston for the summer. ','NA','NA',4,'Web Search',0,0,1,'2015-04-29 14:08:10','2015-05-01 23:25:21'),(162,'Alex','Faura','female',20,'afaura@wellesley.edu','6264833666','Wellesley College ',2,'I am not a brother','I will be working with a nonprofit group to help create lobbying campaigns the company is located near Boston Common','Pretty outgoing','Hanging out with friends','Go out into the city','A place with an exciting city and a beach nearby','Yes. Chelsi Scott, Hannah Brewster, Ellie Mannon, Anissa Sridhar \r\nIf possible yes! ','No',' ',2,'Friend',0,0,1,'2015-04-30 03:43:59','2015-05-01 23:25:22'),(163,'Jack','Curtis','male',60,'jack.curtis.31415@gmail.com','6035605473','MIT',0,'I am not a brother','Doing a Launch Academy boot camp in Boston, Chinatown, need a place to limit commute during Monday to Thursday','I\'m old. (obv.), pretty laid back, tolerant.','I\'ll be doing a lot of work as the boot camp on Ruby on Rails is likely intense.','Ski, cycle, visit girlfriend','fairly quiet, friendly people who are working hard on themselves or a project','no','Hahahaha. Pi Lambda Phi (i\'m a brother) a LONG time ago.','My major need is to have a place to stay that is convenient and allows me to study, crash, etc. without returning to Acton, MA every night.',2,'Friend',0,1,NULL,'2015-04-30 17:01:14','2015-04-30 17:01:14'),(164,'Connor','Van Cleave','male',20,'cvancleave@colgate.edu','2015665483','Colgate University',2,'I am not a brother','I will be working at Youth Centers with the Music and Youth Fellowship in Boston.','I am friendly and outgoing. I am in a fraternity at Colgate.','Doing homework, going to parties, or just hanging out with friends.','Go to a party, play a gig, play basketball/workout.','Being in a fraternity at Colgate, I really like the idea of spending the summer in a fraternity house. I enjoy community living, and MIT is very convenient for where I will be working.','Justin Newman, and we would like to be roommates.','I have not stayed in a fraternity over the summer before.','I am an easygoing guy, and I will not be a problem of any kind. ',2,'IFC Website',0,1,NULL,'2015-05-01 00:25:47','2015-05-01 00:25:47'),(165,'Luis','Uribarri','male',43,'uribarri@alum.mit.edu','6465932809','MIT',0,'I am not a brother','IT, BofA','I pretty much get along with anyone.','Work, Visiting Hanscom AFB','Travel to NYC and Philadelphia','Something simple, something inexpensive.','N/A','DU, like way back in like 1992','Dear Summer Housing Coordinator:\r\nI am writing to officially request information regarding the availability of summer housing for 2015.\r\nI am an MIT Alumni who is looking for an inexpensive place to stay in the Boston area for the summer of 2015. Considering the current costs of housing in the Boston area, the possibility of renting a room at one of the MIT Fraternities would be an absolute bargain.\r\nA little bit about myself:\r\nI graduated MIT course 11 back in 1998 (yes, class of 1998), I have been up and down the east coast ever since, I was a New York City resident for a significant portion of that time. (Including survival of the 9/11 attacks). I currently work in Cyber Security for a major Financial Institution and the position allows me flexibility of where I can live and work. \r\nSo why am I looking for a room in an MIT fraternity for the summer? \r\nAs in my previous statement, cost is definitely a factor, but most importantly I am hoping to obtain summer housing in the Boston area for the following reasons:\r\nMy younger brother, who is active duty military, is currently stationed at Hanscom Air Force base. He lives on base with his wife and 2 children (my niece and nephew). My brother has just received his orders for deployment and will be headed to Afghanistan within a few weeks. His deployment is expected to last 6 months. My younger brother has asked for me to provide support for his family by staying in the Boston area while he is away. I figure if I can stay in Boston for the summer, and visit his family regularly during the summer, it would provide them with the needed support and comfort during what will be an obvious period of difficulty and stress.\r\nIn any case, I look forward to your response as to whether or not you still have any spaces for rent. Although not absolutely necessary, a parking spot would be a great benefit as well. \r\n\r\nSincerely,\r\n\r\nLuis Uribarri\r\n1998 Course 11\r\nuribarri@alum.mit.edu\r\n',2,'IFC Website',0,1,NULL,'2015-05-01 06:51:58','2015-05-01 06:51:58'),(166,'Varnel','Antoine','male',-5,'varnel.antoine@gmail.com','7812283756','Harvard',3,'I am not a brother','MGH, lab research','laid back','I will be working in lab 40+ hours','Go to the bar. watch tv','It would be similar to a dorm experience where there are social students my age around that is close to where I\'m working.','no','no','',2,'IFC Website',0,0,NULL,'2015-05-01 08:57:07','2015-05-01 08:57:07'),(167,'Annie','Jachthuber','female',19,'Jachthuber.1@osu.edu','4047710504','The Ohio State University',2,'I am not a brother','This summer I will be rowing for Riverside boat club, and I will also be working in the Cambridge area.','I am pretty laid back and I tend to get along with all types of people.','I am an athlete at Ohio State so I normally spend my weekdays going to practice and classes and in the evening I like to relax and watch Netflix or do homework. ','On the weekends I normally go out to dinner or see a movie with my friends. I also make sure to save time to organize my room and get caught up on my school work. ','I am looking for somewhere that the people will be friendly and respectful. The ideal summer place is somewhere that is clean and affordable to be honest.','No','I have never stayed in a fraternity before.','I am kind, funny, and respectful. I hope to find a nice person to room with this summer.',2,'IFC Website',0,0,1,'2015-05-01 17:45:08','2015-05-01 23:22:54'),(168,'Dylan','Moore','male',21,'dmoore2@stanford.edu','5103324325','Stanford',4,'I am not a brother','I will be working as an cs intern at Google.','social but chill','I am on the running club, enjoy practicing guitar, hanging out with friends, and writing fiction stories. ','Explore someplace I\'ve never been with a friend.','Surrounded by fun, interesting, and motivated young people','I don\'t know anyone else working at my Google office yet or living in the Boston area, but I am excited to make new friends','none','Please send me an email if you have any questions, or if there is no space in your house over the summer, if you have any other suggestions of places to stay I would really appreciate them. Thanks so much!',2,'Web Search',0,0,NULL,'2015-05-02 07:54:24','2015-05-02 07:54:24'),(169,'Nicholas','Bahnson','male',20,'nicholas_bahnson@brown.edu','9199713617','Brown University',3,'I am not a brother','Business Development at a start-up called ACEA in the Harvard iLab','Outgoing but enjoy some time to myself','Doing work, going to the gym, playing video games','Go out with friends to house parties and the occasional club','A DKE fraternity house','I know Jake Rosenfeld and Nathatn Giacalone we would like to live together','I live in a fraternity house during the school year','',3,'Friend',0,1,NULL,'2015-05-03 00:35:04','2015-05-03 00:35:04'),(170,'Jacob','Rosenfeld','male',20,'jacob_rosenfeld@brown.edu','3109263852','Brown University',3,'I am not a brother','I am working at OnShape, a software company in cambridge.','mostly laid back, video games/tv/programming. Occasional night out.','programming for CS projects, rugby practice 3x a week','go to house parties with friends, host Game of Thrones viewing parties','Somewhere in cambridge convenient to the Red Line ','Nick Bahnson and Nathan Giacalone are also applying, and we all hope to live together in DKE.','I have not stayed in one over the summer, but am a member of Delta Tau, and live in-house during the year','N/A',3,'Friend',0,0,NULL,'2015-05-03 00:35:09','2015-05-03 00:35:09'),(171,'Nathan','Giacalone','male',21,'nathan_giacalone@brown.edu','9783994243','Brown University',3,'I am not a brother','Working at a startup in cambridge called Mineral Tree','Time to but myself but outgoing','Rugby practice and work','Lacrosse and going out with friends','Definitely a DKE fraternity house','Nicholas Bahnson and Jacob Rosenfeld','I live in a fraternity house during the year','',3,'Friend',0,0,NULL,'2015-05-03 00:40:01','2015-05-03 00:40:01'),(172,'Kimberly','Yu','female',18,'kimbeeyu@mit.edu','6266770269','MIT',1,'I am not a brother','I\'ll be working as a web programmer for the Build in Progress UROP at the Media Lab.','I consider myself an extraverted introvert, am very laid-back, and am comfortable spending time by myself or with a small group of people.','Besides going to classes, I also play ultimate frisbee, practice playing the guitar, and meet up with friends for meals/psetting.','I go to church on Saturdays, occasionally go shopping on Sundays, and throw frisbees with friends.','Somewhere within walking distance to campus that is safe, clean, organized, and full of friendly and interesting people. ','No','None','I am a really chill person that loves playing ultimate frisbee. I am also a Christian and have an identical twin sister.',4,'IFC Website',0,0,NULL,'2015-05-03 02:47:51','2015-05-03 02:47:51'),(173,'John','Niroula','male',19,'jniroula@mit.edu','2132108361','MIT',2,'I am not a brother','UROP at MIT','introvert at heart who became an extrovert','watch a movie, do homework, play some tennis','watch a movie','Place that has fun activities and fun people','No','N/A','',2,'IFC Website',0,0,NULL,'2015-05-04 04:28:07','2015-05-04 04:28:07'),(174,'Will','Armero','male',19,'armerow@gmail.com','2032786145','Skidmore College',2,'I am not a brother','Interning at the center for alzheimer research and treatment at Brigham and Women\'s Hospital','I like to go out on occasion, but I also enjoy just hanging out.','I work, train for crew, hangout','Explore the city, go for a long bike ride or run','In the middle of the city','Isabella Narvaez, she already has a room, so no.','No','',2,'Friend',0,1,NULL,'2015-05-04 20:06:54','2015-05-04 20:06:54'),(175,'Erica','Zhang','female',21,'zzhang4@wellesley.edu','3392047164','Wellesley College',3,'I am not a brother','Continuing the research I\'ve been doing during the semester in MIT materials science research project and work on research job in organic synthesis at MGH.','I focus on work during week days, but like to have fun during weekends, party or hang out with interesting people etc.. ','Mostly busy with classes and research bench work.','Go to movies, have drinks with friends, hang out with friends, do sports (sailing, horseback riding), lots of gym, etc..','A clean and tidy environment that could help me focus in academia. Also a fun space to hang out with friends. Of course air conditioning is very important.','No I don\'t. ','No I haven\'t.','',2,'Friend',0,0,1,'2015-05-05 00:39:27','2015-05-05 03:02:53'),(176,'Valerie','Lanzone','female',21,'vlanzon@emory.edu','9122220246','Emory University',4,'I am not a brother','I\'ll be working for IBM as a World Wide Performance Marketing Intern for Security. ','Very outgoing, and down to earth. President of my sorority, Alpha Delta Pi at Emory. ','I will be working during the week. ','I enjoy sailing, running, and exploring. Looking forward to getting to know the city. ','Looking to meet other college kids and excited to be working for IBM, so this sounds wonderful to me. ','Nope ','Nope ','',2,'IFC Website',0,0,1,'2015-05-05 16:15:13','2015-05-05 17:04:25'),(177,'Michael','O\'Connor','male',22,'mkoconno@andrew.cmu.edu','6315135625','Carnegie Mellon University',4,'I am not a brother','Interning for Automation Engineering Inc in Wilmington, MA','Outgoing, Social','Relaxing after work and unwinding','Travel; exploring different portions of Boston and the northeast','A relaxed environment with friends around to hang out and socialize with ','My friend Bryce Beisswanger and I would be looking to be roommates','No','I am a member of Sigma Phi Epsilon and Bryce is a member of Sigma Chi here at CMU so we both know how great being in a fraternity environment can be.',2,'IFC Website',0,1,NULL,'2015-05-06 00:37:54','2015-05-06 00:37:54'),(178,'Htoo Tint','Wai','female',20,'hwai@smith.edu','3475670761','Smith College',2,'I am not a brother','I am doing research in the chemistry department in Boston University.','I\'m quiet and easy-going. ','I go to class and do my work.','I would usually stay indoors, but I like to go out and get a snack sometimes.','A nice, cozy place where there are friendly people.','I don\'t know anyone else.','I have never stayed in a fraternity house.','I won\'t be staying for the whole summer. I am only interested in staying from late May until late July.',4,'Friend',0,0,NULL,'2015-05-06 03:08:58','2015-05-06 03:08:58'),(179,'Jamie','Voros','female',21,'jammie@mit.edu','6173085201','mit',3,'I am not a brother','urop on campus','laid back','in class...','work/crew','I like to hang out with athletes','no','no','no',2,'IFC Website',0,0,1,'2015-05-06 04:46:23','2015-05-06 19:03:50'),(180,'Aaron','Berg','male',20,'aaron.s.berg@gmail.com','0851131409','University College Dublin, Ireland',3,'I am not a brother','Have not found work as of yet','I would consider myself out going, I enjoy meeting new people, however I am very easy and laid back','Out with friends most of the time.','I would definitly try do something, from paintballing to going out to a bar or club with friends','Somewhere in central boston. Or close to public transport. ','No','No','Irish Number 00353851131409',2,'Web Search',0,0,NULL,'2015-05-07 21:50:09','2015-05-07 21:50:09'),(181,'Amelia','Alvarez','female',20,'aalvarez@wellesley.edu','6504003017','Wellesley College',2,'I am not a brother','Historic New England - archives and preservation, Boston and Haverhill','mellow','Keeping busy with lots of work!','Go for runs, go to a farmers\' market, go to museums and coffee shops','I\'d like to live in a relaxed atmosphere where people are sociable but still give you space to yourself. ','no','n/a','',3,'IFC Website',0,0,1,'2015-05-08 01:02:44','2015-05-08 01:36:05'),(182,'Amy','Qiu','female',20,'yqiu2@wellesley.edu','4256478003','Wellesley College',3,'I am not a brother','Data Science Intern at CDK Global\'s Cambridge office located at Autotegrity\r\n198 Broadway\r\nCambridge, MA 02139. I will also most likely be doing research with an MIT CSLI professor ','friendly introvert','homework, sleeping, answering the neverending barrage of emails.','sleeping in, chores, cooking, art, shopping, watching game of thrones or Doctor Who','A place with inspirational people who are kind, respectful, and generous. Amenities-wise, you\'re perfect. I just hope there aren\'t mosquitos, cockroaches or snoring roommates. ','Not at the moment\r\n','I am looking forward to the first time I stay in a fraternity over the summer.','I am open to any size room that you have available. ',2,'Friend',0,0,NULL,'2015-05-08 03:45:52','2015-05-08 03:45:52'),(183,'Cindy','Coffee','female',22,'ccoffee@wellesley.edu','6317891437','Wellesley College',3,'I am not a brother','MIT CoLab, Cambridge','Outgoing extrovert','Sleep-Study-Social activity','Go for a run, cook, shopping, HBO Go','Airy, walking distance to everything','N/A','No','',4,'Friend',0,0,NULL,'2015-05-09 00:21:28','2015-05-09 00:21:28'),(184,'Sohum','Patnaik','male',19,'sp12@williams.edu','5105793646','Williams College',1,'I am not a brother','Data Analytics at Journal of Medical Insight (JoMI). JoMI, a tech startup located at 101 Arch Street, Suite 1950, is a surgical video journal/virtual operating theatre.','Chill and laid back.','Hang out with friends after I get my work done.','Hanging out, going out, and parties. Both chill and crazy nights are great. I also have recently been getting really into outdoorsy things, so the weekends of the past few months have involved lots of backpacking trips, canoeing trips, bouldering, rock climbing, hammocking, and stargazing.','Somewhere with great people surrounding me.','Nope.','Never have, but hopefully that\'s about to change ;-)','I can\'t think of much else you guys need to know about me. However, let me know if you have any questions.',4,'Web Search',0,0,NULL,'2015-05-09 20:52:12','2015-05-09 20:52:12'),(185,'Stormer','Santana','male',21,'stormer.santana@s-sm.org','7202801041','University of Denver',1,'I am not a brother','Asset Management @ Fiera Capital USA','I am a very laid back, relaxed yet motivated person. ','I will be working from 8-6 everyday and will try to workout after work.','Being in Colorado, I love hiking and try to go to the mountains as much as possible','For my current situation, my ideal summer housing would be in the heart of Boston so that I can be close to work and experience the city.','No','No','I am willing to pay upfront asap.',2,'IFC Website',0,0,NULL,'2015-05-10 15:29:12','2015-05-10 15:29:12'),(186,'Karen','Zirkle','female',21,'kzirkle@lesley.edu','8456290608','Lesley University',4,'I am not a brother','Nanny-Central Sq','Very outgoing and super chill. I have no problem hanging out with people and just having a good time. ','Usually I am either nannying, studying, or just hanging with friends. I\'m not too crazy but I\'m not too boring either. ','Usually I try to go out around Boston and Cambridge to different parties.','Clean and with a lot of fun people. ','Nope','Nope','',2,'Friend',0,0,1,'2015-05-10 23:05:06','2015-05-11 02:36:41'),(187,'Molly','Sitzer','female',21,'msitzer@colgate.edu','4438340133','Colgate University',3,'I am not a brother','Working for the Music and Youth Initiative ','easy going, laid back','Doing work','Hang out with friends, go to a movie, find some live music','In a good location and a clean living situation','I know of people, but no one who I will be rooming with','no','N/A',2,'Friend',0,0,1,'2015-05-10 23:57:31','2015-05-11 02:36:40'),(188,'Taylor','Ladd','female',18,'taylorladd@college.harvard.edu','3402441582','Harvard College',1,'I am not a brother','I will be a research assistant at the Lab for Developmental Studies at Harvard University.','I am pretty outgoing, and like to chill and have fun. I enjoy alone time every once in a while but for the most part like to be around people.','I usually go to class, eat and hang out with friends, go to sailing practice, and then come back and study/hang out until bedtime.','I am usually competing for sailing on the weekends, but on my off weekends I normally watch netflix, go to museums, or go out with friends.','I would really like to live in a community that is social, diverse, and really fun to come home to every day.','no','n/a','',2,'Web Search',0,0,1,'2015-05-11 01:31:37','2015-05-11 02:36:39'),(189,'Gabrielle','Pacia','female',1,'Gabrielle.N.Pacia.16@dartmouth.edu','6312350080','Dartmouth College',3,'I am not a brother','Harvard Law Legal Service Center ','outgoing and chill/really easy going, fun','Working, studying for the LSAT','go out with friends','clean, friendly&fun neighbors','No','No','',2,'IFC Website',0,0,1,'2015-05-11 17:02:10','2015-05-11 19:08:00'),(190,'Sameul','Hom','male',20,'samuelahom@gmail.com','7812644533','Washington University in St. Louis',3,'I am not a brother','taking classes at BU','outgoing, social, likes to chill','spending time with friends, studying','go out, explore the city','a fraternity house','nah','nah','enjoys long walks on the beach',2,'Friend',0,1,NULL,'2015-05-12 02:42:23','2015-05-12 02:42:23'),(191,'Duke','Dalton','male',21,'dukedalton93@gmail.com','5108628220','USC',3,'I am not a brother','Internship at biogen','outgoing','working or in class','go to the bars','a laid back social enviroment','no','Yes, my own fraternity last summer. Phi psi at USC','',2,'IFC Website',0,0,NULL,'2015-05-12 19:08:48','2015-05-12 19:08:48'),(192,'Scott','Hom','male',18,'scottwhom@gmail.com','7813859332','Cornell',1,'I am not a brother','Taking Classes at BU','outgoing','chilling with friends, watching sports, working out, watching tv.','go out into the city and meet up with friends.','A fraternity house','Yes, Sam Hom','No','',2,'Friend',0,1,NULL,'2015-05-13 02:30:42','2015-05-13 02:30:42'),(193,'Chen','Zhang','male',29,'zhangc@u.nus.edu','6590379151','MIT',0,'I am not a brother','post-doc research in MIT','laid back','working, reading','have meals with friends, play soccer/basketball','place where can meet interesting people of different background','no','yes, omega fi ','preferred move-in date: May 18-20',2,'Email',0,0,NULL,'2015-05-13 18:44:01','2015-05-13 18:44:01'),(194,'Chris','Chorzepa','male',20,'christopher.chorzepa@gmail.com','8604360994','Williams College',2,'I am not a brother','I will be helping Boston Youth Wrestling, an organization that makes a difference in inner city kids\' lives through wrestling. I\'ll be in various places all over the city.','Laid back. I\'m a relaxed, easy-going guy.','Studying, working out, and hanging out with friends.','Hanging out with my friends. College stuff.','Somewhere simple and cheap. I don\'t have to pay much, but have a place to sleep, shower, and cook.','I do not.','I have not.','',2,'Friend',0,0,NULL,'2015-05-13 23:41:49','2015-05-13 23:41:49'),(195,'Jason','Herrmann','male',18,'jasonherrmann@college.harvard.edu','6105050458','Harvard',1,'I am not a brother','Physics research at Harvard SEAS campus.','Outgoing','I will be in the lab during the week.','Go into Boston or hang out with friends. Maybe play frisbee.','Somewhere with an outgoing social scene. Also somewhere semi-close to where I will be working.','I do not know anyone else considering housing at DKE.','I have not.','',2,'IFC Website',0,0,NULL,'2015-05-14 02:28:53','2015-05-14 02:28:53'),(196,'Eunu','Song','female',19,'jes549@cornell.edu','6465961865','Cornell',2,'I am not a brother','Research Assistant, Harvard School of Public Health','I\'m pretty outgoing but also relaxed/chill. ','Studying/doing work, working out, hanging out with friends','Hang out/Go out with friends, go get good food, sleep','Somewhere with laid-back people who like to have fun yet know when to get to work. Comfortable, relaxed, welcoming.','No','N/A','Since I\'m a girl, I\'d prefer being in a room with another/other girls (if this is possible).',2,'IFC Website',0,0,NULL,'2015-05-14 03:18:48','2015-05-14 03:18:48'),(197,'Jude Chisom','Erondu','male',26,'eronduj@greenmtn.edu','8022870773','Green Mountain College',4,'I am not a brother','Unpaid Summer Internship with the Millennium Campus Network (MCN) located at 101 Huntington Ave. Suite 2205 Boston, MA 02199. As Director of Operations','Very outgoing with strong interpersonal skills ','Friends apartment/ social night like pub and night clubs','Go on a walk, watch movies, and participate in sporting activities','A place very vibrant and hot!!!','None','This would be my first time to stay in a fraternity house. I have been looking for an opportunity to start one at my school, but haven\'t had the opportunity. But I have served my college in different leadership roles such as student senate as President, Judicial Review Board Member, and Director of Civic Engagement. ','You can look me up on LinkedIn via https://www.linkedin.com/in/erondujudechisom',4,'Web Search',0,0,NULL,'2015-05-14 12:40:47','2015-05-14 12:40:47'),(198,'Gary','Liskovich','male',20,'garyjoseph@gmail.com','7184315129','RPI',2,'I am not a brother','Working for an MIT startup in Suburb of Boston.','Both outgoing and laidback, im good with literally whatever','work, eithe rrealx or go out afterward','go on a day trip somewhere','somewhere social and i can still get some personal space','no','yes, i currently live in the SAE chapter at my school, as I am a brother.','',3,'IFC Website',0,1,NULL,'2015-05-14 18:56:19','2015-05-14 18:56:19'),(199,'Eve','Barnett','female',21,'ebarnett@princeton.edu','2024945803','Princeton University',3,'I am not a brother','I will be interning for the Massachusetts Department of Environmental Protection.','Easygoing, fun, spontaneous.','I usually like to go for a run in the late afternoon and hang out in the evening.','I love rock climbing and going to outdoor movie festivals.','Somewhere fun with other college students.','No.','No.','Not that I can think of!',4,'IFC Website',0,0,1,'2015-05-14 19:03:28','2015-05-14 20:04:21'),(200,'Kristin','Fong','female',19,'fong_kris@bentley.edu','2032407565','Bentley University',3,'I am not a brother','I will be interning with SThree located on State Street in Boston. This is a global recruitment and business sales agency.','Very outgoing and friendly, love to meet new people. Always out with my other sorority sisters or friends on the weekends.','Will be working 8-5. Besides that, hanging out with friends. Love to try new restaurants and watch movies.','Social events with my sorority (previously I was social chair). ','Easy commute to work, around lots of people my age who are interested in having a fun summer together!','N/A','N/A','Member of Alpha Phi at Bentley (Zeta Rho Chapter). From Brewster, NY. Very involved with Greek life at Bentley! Economics-Finance major with a liberal studies major in Global Perspectives. Favorite hobby is to travel, going abroad to Brussels this fall for the semester. ',2,'IFC Website',0,0,1,'2015-05-16 10:47:38','2015-05-16 14:41:17'),(201,'Peter','McGahren','male',19,'psm92@cornell.edu','2017045716','Cornell',2,'I am not a brother','I\'m doing Software Development at IBM in Littleton, MA','Outgoing','I\'m involved in a few clubs on campus that keep me busy.','Planning/organizing events. I\'m my fraternity\'s social chair.','I don\'t know many people in Boston/Cambridge so somewhere I can meet new people quickly.','N/A','Briefly stayed in my fraternity house (FIJI) for a few weeks last summer.','I don\'t have a room preference. Any available spot works. I know it\'s late but I only recently received the offer letter.',4,'IFC Website',0,1,NULL,'2015-05-16 18:34:34','2015-05-16 18:34:34'),(202,'Sean','Pruneau','male',21,'pruneau_sean@bentley.edu','9725232518','Bentley University',4,'I am not a brother','Marketing, Waltham','outgoing, laid back','working, football practice, studying, relaxing','Go somewhere in Boston','cost friendly','no','-','',4,'Web Search',0,0,NULL,'2015-05-18 03:58:15','2015-05-18 03:58:15'),(203,'Padhraig','Mc Adam','male',22,'pmcasoundish@hotmail.com','0877581074','Maynooth University',4,'I am not a brother','Bar Work ','Very Friendly and always try to make best of any situation. ','I would normally study in college during the week but over the summer it will be working, relaxing and exploring Boston','Normally the weekend will involve work or if im free i\'ll spend time chilling with friends','A place full of fun people with a nice relaxing atmosphere','Yes, I have three friends, they\'re childhood friends of mine and all very decent lads. would love to live with them in one of the quad rooms if that\'s possible? ','no i haven\'t.','Myself and my three friends are genuine fun lads, hoping to experience American life and make good mates. ',4,'IFC Website',0,0,NULL,'2015-05-18 21:47:30','2015-05-18 21:47:30'),(204,'Andrew','Adams','male',18,'adamsa@mit.edu','9198869406','MIT',1,'I am not a brother','UROP - AeroAstro','I will largely be out and about. ','I will be UROPing with AeroAstro, then cooking myself dinner and reading.','I like to go out and try something new over the weekend.','I would enjoy somewhere where I can have a comfortable community if I want to hang out, but also understanding if I do not end up being there. ','Rachael Devlin, No','N/A','Are there any spots left? I had my last option fall through.',3,'Friend',0,0,NULL,'2015-05-22 00:44:14','2015-05-22 00:44:14'),(205,'Amar','Pandya','male',25,'amarbp07@gmail.com','6307283582','chicago medical school',0,'I am not a brother','Summer health policy analyst, company is located in Back Bay','I\'m pretty laid back and outgoing as well, easy get to along with','At work from 8:30-5:30, probably grabbing a beer or chilling in my room until about 11pm when I hit the sack','Go to a baseball game, bars/nightlife','A place to chill and have a good time. I\'m a very low-key, easy to get along with type of person. willing to give references if needed. ','N/A','N/A','I\'m a big sports fan, originally from Chicago, just finished an internship in DC and going to be in Boston from early June till mid to late August. ',2,'IFC Website',0,0,NULL,'2015-05-23 20:21:57','2015-05-23 20:21:57'),(206,'kelsey','justis','male',21,'kelsey.c.justis@gmail.com','3862146600','dartmouth college',3,'I am not a brother','Harvard research','laid back','Im from Dartmouth. LOL\r\nCoding also.','Hike. Sleep. Go to beach.','laid back geeks.','nope','my own at dartmouth ','',2,'Friend',0,0,NULL,'2015-05-24 17:06:57','2015-05-24 17:06:57'),(207,'Omari','Powell','male',21,'ojp3@cornell.edu','6783135746','Cornell University ',4,'Delta Chi - Cornell University','Software','very social but chill','working,chilling, hanging out, and partying when free','turn up','nice house with lots of cool people ','no','I lived at my Fraternity house at Cornell','when I was a freshman, i freshman soft and green',2,'Friend',1,0,NULL,'2015-05-25 14:49:30','2015-05-25 14:49:30'),(208,'Jennifer','Stryker','female',20,'jennymarienator@gmail.com','4154647649','Wellesley College',3,'I am not a brother','I\'m going to be working at the YWCA in Boston, near the Prudential Center. I will be an intern in Marketing and Fund Development.','I think I\'m pretty laid back--I like to hang out with old friends, but I also love meeting new people.','Most weekdays I spend (when not in class) doing stuff around campus--eating or cooking with friends, reading outside, or doing some work with friends during the school year. ','I like to spend the days of my weekends doing something outdoors--whether that\'s hiking or biking or simply walking around the city. At night, I like to host or go to parties, or just simply hang out with friends and a few beers.','My ideal place to live for the summer would be somewhere comfortable and fun, in Cambridge which I love. I\'d love to make new friends this summer and live in a relaxed, positive environment.','N/A','N/A','',4,'Friend',0,0,NULL,'2015-05-27 23:57:03','2015-05-27 23:57:03'),(209,'Yoitsu','Kamijo','male',21,'yoitsu@berkeley.edu','6262035386','UC Berkeley',3,'I am not a brother','Summer Internship at Bookbub, its located at 1 Broadway','laid back and chill','working and I am still figuring out what to do at night','Go to places, hang out with friends, exploring and working out','friendly people, good environment, and it\'d be nice if you guys throw parties too','No, I currently don\'t','Phi Chi','is it possible to extend the move out date for a couple days?',4,'Web Search',0,0,NULL,'2015-05-28 23:25:22','2015-05-28 23:25:22'),(210,'Shannen','McLaughlin','female',20,'Shannen-07@hotmail.com','8573181451','University of Limerick',4,'I am not a brother','Restaurant server - Back Bay','Outgoing ','Hanging out with friends ','Sports and hang out with friends ','Fun, clean & friendly.','Myself and 3 friends. Adele Leogue, Jennifer Sheehan, Laura Leogue. ','No','No',2,'IFC Website',0,0,NULL,'2015-05-30 02:30:20','2015-05-30 02:30:20'),(211,'john','powell','male',21,'john.walter.powell@gmail.com','3618761124','University of Texas at Austin',4,'I am not a brother','Engineering Intern at Silicon Labs in downtown Boston.','laid back','working, going to gym','sleep late, do stuff with people around town','easy to get to work, people to chill with occasionally','n/a','n/a','',2,'IFC Website',0,0,NULL,'2015-05-31 02:48:05','2015-05-31 02:48:05'),(212,'Shawn','Amjad','male',21,'samja@vt.edu','7034077766','Virginia Tech',4,'I am not a brother','Software Development Intern at Sonos in Cambridge','I am pretty laid back','Working','Go explore the city','Somewhere relaxing, where I can work and relax during the week.','No.','No.','No.',2,'Friend',0,1,NULL,'2015-05-31 17:05:05','2015-05-31 17:05:05'),(213,'Aaron','Berg','male',20,'aaron.s.berg@gmail.com','0851131409','University College Dublin, Ireland',3,'I am not a brother','I have yet to find work but I am hoping to find work in a restaurant or something similar ','I would consider myself to be an introvert yet I do go out and I enjoy meeting new people. ','Weekdays during college are spent at college, at bars, library and just a bit of everywhere. ','Chill, go for a drive, do something with friends, generally just take it easy','Somewhere central with a lot of excitement and things happening','No, unfortunately not','-','',2,'IFC Website',0,0,NULL,'2015-05-31 21:10:03','2015-05-31 21:10:03');
/*!40000 ALTER TABLE `summer_housing_applications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_brother_dke_infos`
--
DROP TABLE IF EXISTS `user_brother_dke_infos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_brother_dke_infos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`brother_id` int(11) DEFAULT NULL,
`p_name` text COLLATE utf8_unicode_ci,
`project` text COLLATE utf8_unicode_ci,
`past_pos` text COLLATE utf8_unicode_ci,
`big_id` int(11) DEFAULT NULL,
`residence_id` int(11) DEFAULT NULL,
`p_class` int(4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
`meal_plan` tinyint(1) DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_brother_dke_infos`
--
LOCK TABLES `user_brother_dke_infos` WRITE;
/*!40000 ALTER TABLE `user_brother_dke_infos` DISABLE KEYS */;
INSERT INTO `user_brother_dke_infos` VALUES (1,1,'','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(2,2,'','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(3,3,'Captain Telechubby','Making Russell go to meetings','New Member Educator (Feb 4, 2014 - Aug 25, 2014)',22,NULL,2015,'2015-01-26 06:13:28','2015-08-23 18:25:54',0),(4,4,'','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(5,5,'','','President, Vice President/Risk Manager',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(6,6,'','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(7,7,'','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(8,8,'Shenanigans','DKE website','Zeta (Spring 2012), Bro Chicken',0,NULL,2013,'2015-01-26 06:13:28','2015-02-15 02:56:09',0),(9,10,'','','',NULL,NULL,2013,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(10,11,'Aseel Tare','','',NULL,NULL,2013,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(11,12,'','','',NULL,NULL,2013,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(12,13,'','','',NULL,NULL,2013,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(13,14,'','','',0,NULL,2013,'2015-01-26 06:13:28','2015-06-14 22:50:46',0),(14,15,'','','',0,NULL,2013,'2015-01-26 06:13:28','2015-06-11 06:27:42',0),(15,16,'','','',5,NULL,2013,'2015-01-26 06:13:28','2015-01-31 23:23:39',0),(16,17,'','','Delta (Spring 2013)',NULL,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(17,18,'','','',10,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(18,19,'','','',NULL,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(19,20,'','','',NULL,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(20,21,'','','',15,NULL,2014,'2015-01-26 06:13:28','2015-01-31 23:23:28',0),(21,22,'','','Rush Chair (Feb 3, 2013 - Feb 4, 2014), New Member Educator (Sep 15, 2013 - Feb 4, 2014)',29,NULL,2014,'2015-01-26 06:13:28','2015-04-12 04:43:05',0),(22,23,'Lemon Pledge','','Pi (Spring 2013), Pi (Spring 2013), Summer House & Risk Manager (May 8, 2014 - Dec 7, 2014)',4,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(23,24,'','','Epsilon (Spring 2013)',0,NULL,2014,'2015-01-26 06:13:28','2015-01-27 08:25:57',0),(24,25,'','','',8,NULL,2014,'2015-01-26 06:13:28','2015-02-15 02:34:36',0),(25,26,'Thug Life','Hand forged fireplace set','',14,NULL,2014,'2015-01-26 06:13:28','2015-02-18 02:21:40',0),(26,27,'','','Vice President & Risk Manager (Feb 3, 2013 - Feb 4, 2014)',12,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:41:35',0),(27,29,'','','Upsilon (Spring 2013) , Community Service Chair (Feb 3, 2013 - Feb 4, 2014)',NULL,NULL,2014,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(28,30,'Plan-C','','',28,NULL,2014,'2015-01-26 06:13:28','2015-02-24 16:36:25',0),(29,31,'Smiley','','',NULL,NULL,2012,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(30,32,'','','',NULL,NULL,2009,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(31,33,'','','',NULL,NULL,2011,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(32,34,'Hi, my name is Will, and I\'m an alcoholic','','',NULL,NULL,2011,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(33,35,'','','',NULL,NULL,2005,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(34,36,'Fart Catcher','','Gamma (Fall 2012); Treasurer (Feb 3, 2013 - Feb 4, 2014)',15,NULL,2015,'2015-01-26 06:13:28','2015-03-19 15:57:08',0),(35,37,'','','Summer President / Treasurer (May 8, 2014 - Dec 7, 2014)',9,NULL,2015,'2015-01-26 06:13:28','2015-08-23 18:25:57',0),(36,38,'','','',0,NULL,2015,'2015-01-26 06:13:28','2015-08-23 18:25:44',0),(37,39,'','','',0,NULL,2015,'2015-01-26 06:13:28','2015-08-23 18:25:43',0),(38,40,'','','',0,NULL,2015,'2015-01-26 06:13:28','2015-08-15 19:23:15',0),(39,41,'','','Zeta (Spring 2013)',0,409,2015,'2015-01-26 06:13:28','2015-10-17 02:56:04',1),(40,42,'Curb Stomp','','Gamma (Spring 2013), President (Feb 3, 2013 - Dec 7, 2014)',10,NULL,2015,'2015-01-26 06:13:28','2015-08-23 18:25:57',0),(41,43,'','','',NULL,NULL,2015,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(42,44,'','','House Steward (Sep 15, 2013 - Feb 4, 2014)',14,NULL,2015,'2015-01-26 06:13:28','2015-06-11 06:27:42',0),(43,45,'','','',NULL,NULL,2015,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(44,46,'','','Assistant to the Pi (Jan 4, 2014 - Feb 4, 2014), Assistant to the Pi (Feb 4, 2014 - Aug 25, 2014)',NULL,NULL,2015,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(45,47,'','','',0,NULL,2015,'2015-01-26 06:13:28','2015-08-16 22:30:31',0),(46,48,'Tube Sausage','Lights for Roof','Zeta, Upsilon',44,311,2016,'2015-01-26 06:13:28','2015-01-26 21:07:41',1),(47,49,'Precious','Magazine Racks ','Social Chair',22,411,2016,'2015-01-26 06:13:28','2015-01-26 06:13:30',1),(48,50,'buttered walrus','magazine holders','',40,311,2016,'2015-01-26 06:13:28','2015-01-26 06:13:30',1),(49,51,'Simple Jef','Lights on the roof','Pi Fall 2014, New Member Educator (Aug 25, 2014 - Dec 7, 2014)',35,404,2016,'2015-01-26 06:13:28','2015-12-07 22:21:49',0),(50,52,'','','',3,409,2016,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(51,53,'','','',0,NULL,2016,'2015-01-26 06:13:28','2015-08-12 01:01:11',0),(52,54,'Keebler Cumguzzler','Hand Sanitizers','Pledge Captain - DKE Class of 2016, Vice President & Risk Manager (Feb 4, 2014 - Dec 7, 2014)',45,411,2016,'2015-01-26 06:13:28','2015-01-26 06:13:30',1),(53,55,'','','Summer House Recruitment Chair (Jan 5, 2014 - Dec 7, 2014)',42,303,2016,'2015-01-26 06:13:28','2015-01-26 06:13:30',1),(54,56,'','','',0,402,2016,'2015-01-26 06:13:28','2015-10-14 17:44:25',1),(55,57,'','','Rush Chair (Feb 4, 2014 - Dec 7, 2014)',0,510,2016,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(56,58,'','','',17,NULL,2016,'2015-01-26 06:13:28','2015-08-23 18:25:52',0),(57,59,'','','',0,NULL,2016,'2015-01-26 06:13:28','2015-09-10 01:16:30',0),(59,61,'Puffy the Dump Slayer','','',44,304,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(60,62,'','','',47,NULL,2017,'2015-01-26 06:13:28','2015-08-23 18:26:28',0),(61,63,'','','',38,403,2017,'2015-01-26 06:13:28','2015-02-09 06:56:50',0),(62,64,'There\'s a snake in my butthoule','','',52,505,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(63,65,'','','',55,501,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(64,66,'','','',21,309,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(65,67,'','','',0,503,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(66,68,'','','',26,NULL,2017,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(67,69,'','','',0,309,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(68,70,'','','Assistant to the Pi (Aug 25, 2014 - Dec 7, 2014)',0,501,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(69,71,'','','',40,505,2017,'2015-01-26 06:13:28','2015-05-18 03:15:12',1),(70,9,'You\'ve Activated My Fap Card','Flag Pole','',47,NULL,2017,'2015-01-26 06:13:28','2015-08-23 18:26:22',0),(71,28,'','','',63,301,2018,'2015-01-26 06:13:28','2015-08-23 18:26:42',1),(72,72,'Double Penetration','Roof Lights','Nu (Fall 2015)',69,405,2018,'2015-01-26 06:13:28','2015-08-23 18:26:31',1),(73,73,'','Roof Lights','Gamma',68,405,2018,'2015-01-26 06:13:28','2015-08-23 18:26:33',1),(74,74,'Butters Stotch','Cornhole','',62,305,2018,'2015-01-26 06:13:28','2015-08-23 18:26:35',1),(75,75,'','','',NULL,NULL,2018,'2015-01-26 06:13:28','2015-01-26 06:13:28',0),(77,77,'Shark Bait','Basement Cleaning ','',61,302,2018,'2015-01-26 06:13:28','2015-08-23 18:26:36',1),(78,78,'','Roof Lights','Iota (Spring 2015)',47,509,2018,'2015-01-26 06:13:28','2015-08-23 18:26:32',1),(80,80,'Lance Armstrong','Caulking of Showers','Alpha (Alumni Relations)',53,401,2018,'2015-01-26 06:13:28','2015-12-02 01:51:05',1),(81,81,'','','Bro-Speaker',70,305,2018,'2015-01-26 06:13:28','2015-08-23 18:26:43',1),(82,82,'','','Alpha',65,301,2018,'2015-01-26 06:13:28','2015-08-23 18:26:41',1),(83,83,'','','',0,401,2018,'2015-01-26 06:13:28','2015-10-24 14:45:02',0),(84,84,'Trapped in the closet','Boiler Room Shelf','Chi',55,509,2018,'2015-01-26 06:13:28','2015-12-19 22:54:31',1),(85,85,'','','IM Chair, Rush Chair',60,509,2018,'2015-01-26 06:13:29','2015-12-31 18:26:22',1),(86,86,'','Second Floor Rejuvenation','',64,NULL,2019,'2015-10-10 19:21:50','2015-12-27 01:10:17',0),(87,87,'','','',0,NULL,2019,'2015-10-10 19:21:50','2016-01-14 04:36:33',0),(88,88,'','','',73,NULL,2019,'2015-10-10 19:22:48','2015-12-12 19:07:48',0),(89,89,'Pistorius','Fixing Pool Table','Pledge Captain',60,NULL,2019,'2015-10-10 20:08:00','2015-12-27 02:45:38',0),(90,90,'','','',0,NULL,2019,'2015-10-10 20:08:00','2016-01-08 03:18:22',0),(91,91,'Rope','Black Lights','',85,NULL,2019,'2015-10-10 20:08:00','2015-12-28 20:34:15',0),(92,92,'','','',0,NULL,2019,'2015-10-10 20:08:00','2015-12-27 22:19:32',0),(93,93,'','','',0,NULL,2019,'2015-10-10 20:08:00','2015-12-28 16:26:18',0),(94,94,'','','',84,NULL,2019,'2015-10-10 20:08:00','2015-12-19 22:54:31',0),(95,95,NULL,NULL,NULL,NULL,NULL,2019,'2015-10-10 20:08:00','2015-10-10 20:08:00',0),(96,96,'','','',0,NULL,2019,'2015-10-10 20:08:00','2015-12-28 04:52:05',0),(97,97,'','','',80,NULL,2019,'2015-10-10 20:08:00','2015-12-28 21:03:18',0),(98,98,'','','',0,NULL,2019,'2015-10-10 20:51:30','2015-12-27 19:22:34',0);
/*!40000 ALTER TABLE `user_brother_dke_infos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_brother_mit_infos`
--
DROP TABLE IF EXISTS `user_brother_mit_infos`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_brother_mit_infos` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`brother_id` int(11) DEFAULT NULL,
`mit_id` varchar(9) COLLATE utf8_unicode_ci DEFAULT NULL,
`majors` text COLLATE utf8_unicode_ci,
`minors` text COLLATE utf8_unicode_ci,
`concentration` text COLLATE utf8_unicode_ci,
`extracurriculars` text COLLATE utf8_unicode_ci,
`interests` text COLLATE utf8_unicode_ci,
`urops` text COLLATE utf8_unicode_ci,
`internships` text COLLATE utf8_unicode_ci,
`fav_classes` text COLLATE utf8_unicode_ci,
`year` int(4) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_brother_mit_infos`
--
LOCK TABLES `user_brother_mit_infos` WRITE;
/*!40000 ALTER TABLE `user_brother_mit_infos` DISABLE KEYS */;
INSERT INTO `user_brother_mit_infos` VALUES (1,1,NULL,'2','','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(2,2,NULL,'15','MusPer','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(3,3,'927644507','6','','Music','Football','','Zero Robotics','Five Rings Captial','',2015,'2015-01-26 06:13:27','2015-01-26 13:07:38'),(4,4,NULL,'8','5,EDU','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(5,5,NULL,'6.2','','','Varsity Football','Embedded systems, robotics, SW Engineering','','','6.004, 16.322, 6.302',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(6,6,NULL,'10','','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(7,7,NULL,'16','','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(8,8,'','6.3','','CMS','Football, TAing','','MIT Game Labs (GAMBIT)','','',2013,'2015-01-26 06:13:27','2015-02-15 02:34:36'),(9,10,NULL,'10B','','','','','','','',2013,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(10,11,NULL,'10B','7','','','','','','',2013,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(11,12,NULL,'15','','','','','','','',2013,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(12,13,NULL,'2','PSY','','','','','','',2013,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(13,14,'','8,22','','','','','','','',2013,'2015-01-26 06:13:27','2015-06-13 17:05:04'),(14,15,'','6.2','','','','','','','',2013,'2015-01-26 06:13:27','2015-06-11 06:27:42'),(15,16,'925371158','15,17','14','','','','','','',2013,'2015-01-26 06:13:27','2015-01-31 23:23:55'),(16,17,NULL,'3','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(17,18,NULL,'0','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(18,19,NULL,'2','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(19,20,NULL,'8','Philosophy','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(20,21,NULL,'1','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(21,22,'','16.1','Music','','','','Space Propulsion Lab (SPL), Aerospace Controls Lab (ACL)','','',2014,'2015-01-26 06:13:27','2015-04-12 04:43:05'),(22,23,'912515898','2','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-28 05:20:21'),(23,24,'','6.3,8','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-27 08:25:57'),(24,25,NULL,'6.2','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(25,26,'','2 & 8','','STS','Football, Baptist Student Fellowship','blacksmithing','','SpaceX, Waters Corp. ','2.008, 2.72, 8.225',2014,'2015-01-26 06:13:27','2015-02-18 02:21:40'),(26,27,'','5, 15','','14','','','','','',2014,'2015-01-26 06:13:27','2015-05-13 00:27:54'),(27,29,NULL,'5,9','','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(28,30,'','10-eng','ENERGY, Ancient and Medieval studies','Ancient and Medieval Studies','','','','','',2014,'2015-01-26 06:13:27','2015-02-07 01:16:46'),(29,31,NULL,'2','EngMan','','','','','','',2012,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(30,32,NULL,'6.3','','','','','','','',2009,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(31,33,NULL,'6.3','','','','','','','',2011,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(32,34,NULL,'2,8','21W','','','','','','',2011,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(33,35,NULL,'16','14','','','','','','',2005,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(34,36,'','Course 17 - Political Science','','Course 14 - Economics','Undergraduate Association Judicial Board Chairman','','Prof Roger Petersen - Social Science & the Iraq War; Prof Fotini Christia - Protest and Drone Strikes in the Yemeni Arab Spring','Booz Allen Hamilton; IDA Science and Technology Policy Institute; MIT Washington Office; BK Trading (NYMEX)','',2015,'2015-01-26 06:13:27','2015-03-19 15:57:07'),(35,37,'914610903','14,15','','17','','','','','',2015,'2015-01-26 06:13:27','2015-01-26 19:27:50'),(36,38,'','2','','','','','','','',2015,'2015-01-26 06:13:27','2015-02-03 16:24:35'),(37,39,'','2','','','','','','','',2015,'2015-01-26 06:13:27','2015-03-06 22:43:54'),(38,40,'','2','8','','','','','','',2015,'2015-01-26 06:13:27','2015-08-15 19:23:15'),(39,41,'','6','','','','','','','',2015,'2015-01-26 06:13:27','2015-01-31 17:09:56'),(40,42,'917285358','6-3','','','Football','','SSL: Zero Robotics, SSL: VERTIGO','Ball Aerospace: Technical Intern','6.004',2015,'2015-01-26 06:13:27','2015-11-09 05:48:54'),(41,43,NULL,'18c','GERMAN','','','','','','',2014,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(42,44,'','10','','','','','','','',2014,'2015-01-26 06:13:27','2015-02-12 01:56:06'),(43,45,NULL,'2','','','','','','','',2015,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(44,46,NULL,'2','','','','','','','',2015,'2015-01-26 06:13:27','2015-01-26 06:13:27'),(45,47,'','2','','','','','','','',2015,'2015-01-26 06:13:27','2015-08-16 22:30:28'),(46,48,'924287478','6.3','','17','Football','','Irvine Lab, Shah Lab','Quantlab Financial','',2016,'2015-01-26 06:13:27','2015-01-26 21:07:41'),(47,49,'929616574','2A','','Music','Resonance A Cappella, Football, Tech Catholic Community','','Supernumerary Robotic Fingers','','',2016,'2015-01-26 06:13:27','2015-03-16 16:18:17'),(48,50,'','6','','','','','','','',2016,'2015-01-26 06:13:27','2015-01-26 08:56:10'),(49,51,'','6-3','','Theater','Musical Theatre Guild','','','Walle Live Wallpaper','',2016,'2015-01-26 06:13:27','2015-02-13 02:38:06'),(50,52,'','','','','','','','','',2016,'2015-01-26 06:13:27','2015-01-29 23:10:43'),(51,53,'','2','','','','','','','',2016,'2015-01-26 06:13:27','2015-08-12 01:01:11'),(52,54,'','6-3','','','StartLabs','Entrepreneurship','CSAIL - SLS','','GSD',2016,'2015-01-26 06:13:27','2015-02-19 17:55:30'),(53,55,'911419295','6-2','','economics','IM sports','','','','',2016,'2015-01-26 06:13:27','2015-02-10 14:27:06'),(54,56,'922290404','6','','','','','','','',2016,'2015-01-26 06:13:27','2015-01-31 01:00:57'),(55,57,'','6','','','','','','','',2016,'2015-01-26 06:13:27','2015-04-28 18:35:35'),(56,58,'910920552','6','','','Taekwondo','','','','',2015,'2015-01-26 06:13:27','2015-02-07 19:17:54'),(57,59,'','','','','','','','','',2016,'2015-01-26 06:13:28','2015-09-10 01:16:30'),(59,61,'','AeroAstro','','','Football','Outdoor activities','MIT Strategic Engineering (Mars 2040 Project)','United Launch Alliance (Summer 2015)','Unified',2017,'2015-01-26 06:13:28','2015-01-26 19:39:47'),(60,62,'','Course 2','Course 20','','Football','','','','',2017,'2015-01-26 06:13:28','2015-02-04 21:36:51'),(61,63,'','','','','','','','','',2017,'2015-01-26 06:13:28','2015-02-09 06:56:50'),(62,64,'','','','','','','','','',2017,'2015-01-26 06:13:28','2015-01-28 03:17:07'),(63,65,'916917738','','','','','','','','',2017,'2015-01-26 06:13:28','2015-05-04 04:40:55'),(64,66,'','10B','7','21M','Football, Theater','','','Circor Aerospace','',2017,'2015-01-26 06:13:28','2015-02-03 16:19:50'),(65,67,'','18','','','Football','','','','',2017,'2015-01-26 06:13:28','2015-05-09 05:35:14'),(66,68,NULL,'','','','','','','','',2015,'2015-01-26 06:13:28','2015-01-26 06:13:28'),(67,69,'','','','','Football','Sports','','','',2017,'2015-01-26 06:13:28','2015-01-26 17:06:04'),(68,70,'','','','','','','','','',2017,'2015-01-26 06:13:28','2015-02-03 00:18:54'),(69,71,'','Course 6','','','Football','','','','',2017,'2015-01-26 06:13:28','2015-01-27 04:37:07'),(70,9,'','18','','','','','','','',2017,'2015-01-26 06:13:28','2015-02-03 19:09:52'),(71,28,'','18 15','','','','','','','',2018,'2015-01-26 06:13:28','2015-10-03 06:54:27'),(72,72,'926077179','2','Energy Studies','','Football, IFC','','Scalability of Superhydrophobic Surfaces','','21M.011',2018,'2015-01-26 06:13:28','2015-05-19 00:58:41'),(73,73,'','Mechanical Engineering','French','','Football #25','','Materials Engineering: Sustainable Fertilizers','','',2018,'2015-01-26 06:13:28','2015-04-27 08:30:13'),(74,74,'916056054','8, 18','','','Football','','','','',2018,'2015-01-26 06:13:28','2015-01-29 07:39:51'),(75,75,NULL,'','','','','','','','',2017,'2015-01-26 06:13:28','2015-01-26 06:13:28'),(77,77,'915316686','Computer Science','','French','','Football, Fishing, Skiing, and Partying','Free sPEACH','','Physics',2018,'2015-01-26 06:13:28','2015-02-05 01:32:24'),(78,78,'','6-2','','Chinese','Skiing, Fishing, Football, Golf, beating Cosma in FIFA','','','Analog Devices','3.091',2018,'2015-01-26 06:13:28','2015-10-15 19:04:08'),(80,80,'919939308','Mechanical Engineering','Business Management','Economics','Lacrosse','Hiking, Sailing, Beachin\' it','Bio-Inspired Photonic Devices','','Differential Equations, Macroeconomics',2018,'2015-01-26 06:13:28','2015-12-02 01:51:05'),(81,81,'','2','14','','Football','','','','',2018,'2015-01-26 06:13:28','2015-04-29 04:37:14'),(82,82,'918392141','Mathematics ','Business','Economics','Football','Sports, Investing','','','18.02',2018,'2015-01-26 06:13:28','2015-02-08 01:16:31'),(83,83,'','','','','','','','','',2018,'2015-01-26 06:13:28','2015-04-01 06:12:13'),(84,84,'919543877','6-2','','Economics','','Snowboarding, Biking','CSAIL Summer and Fall 2015','Tango Enterprises','6.004, 6.S04, 14.01',2018,'2015-01-26 06:13:28','2015-12-19 22:54:30'),(85,85,'','2A','','15','Madden \'12 Enthusiast ','','','','2.00B',2018,'2015-01-26 06:13:28','2015-12-31 18:33:03'),(86,86,'','6','','','Basketball','','','','',2019,'2015-10-10 19:21:50','2015-12-27 01:10:17'),(87,87,'','','','','','','','','',2019,'2015-10-10 19:21:50','2015-10-21 02:18:41'),(88,88,'912557375','','','','','','','','',2019,'2015-10-10 19:22:48','2015-10-29 00:39:20'),(89,89,'918118795','Course 15 & Course 18','Course 14','Economics','Sloan Business Club; Student Athletic Advisory Committee ','Business, Sports, Stock Market','Billion Prices Project','Stanford Health Care; SchoolMint Inc.','14.01',2019,'2015-10-10 20:08:00','2015-12-27 02:45:38'),(90,90,'','','','','','','','','',2019,'2015-10-10 20:08:00','2016-01-08 03:18:22'),(91,91,'921841301','Undecided','','','MIT Football','','','','',2019,'2015-10-10 20:08:00','2015-12-28 20:35:16'),(92,92,'','','','','','','','','',2019,'2015-10-10 20:08:00','2015-12-27 22:19:32'),(93,93,'927051846','2','','15','Football, Lacrosse','','','','',2019,'2015-10-10 20:08:00','2015-10-30 19:21:41'),(94,94,'912105267','16','','','football, rocket team ','','','','',2019,'2015-10-10 20:08:00','2015-10-10 21:01:36'),(95,95,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2019,'2015-10-10 20:08:00','2015-10-10 20:08:00'),(96,96,'','','','','','','','','',2019,'2015-10-10 20:08:00','2015-10-23 15:26:31'),(97,97,'','','','','','','','','',2019,'2015-10-10 20:08:00','2015-12-28 21:03:18'),(98,98,'','','','','','','','','',2019,'2015-10-10 20:51:30','2015-12-27 19:21:54');
/*!40000 ALTER TABLE `user_brother_mit_infos` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_brothers`
--
DROP TABLE IF EXISTS `user_brothers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_brothers` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`user_id` int(11) DEFAULT NULL,
`first_name` text COLLATE utf8_unicode_ci,
`last_name` text COLLATE utf8_unicode_ci,
`phone` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`email` text COLLATE utf8_unicode_ci,
`bio` text COLLATE utf8_unicode_ci,
`activities` text COLLATE utf8_unicode_ci,
`hobbies` text COLLATE utf8_unicode_ci,
`pro_team` text COLLATE utf8_unicode_ci,
`college_team` text COLLATE utf8_unicode_ci,
`movie` text COLLATE utf8_unicode_ci,
`quote` text COLLATE utf8_unicode_ci,
`hometown` text COLLATE utf8_unicode_ci,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=99 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_brothers`
--
LOCK TABLES `user_brothers` WRITE;
/*!40000 ALTER TABLE `user_brothers` DISABLE KEYS */;
INSERT INTO `user_brothers` VALUES (1,NULL,'Douglas','Blake','',NULL,'','Football','Computer building, hanging out with friends, fishing','','Florida Gators','','','Tampa, Florida','2015-01-26 06:13:22','2015-01-26 18:03:39'),(2,NULL,'Edan','Krolewicz','',NULL,'I am interested in Entrepreneurship, Music, Travel, and philosophy.','Logarhythms, UA Finboard','Travel, Music, Basketball, Badminton, Swimming','New York Jets','MIT Engineers','Gladiator','\"Jesus take the wheel\"','Patchogue, New York','2015-01-26 06:13:22','2015-01-26 18:12:41'),(3,3,'Jacob','Masterson','7408192202','pjmaster@mit.edu','','Football','Becoming the very best, like no one ever was.','New York Jets','Notre Dame Fighting Irish','Anchorman','','Zanesville, OH','2015-01-26 06:13:24','2015-01-26 17:47:00'),(4,4,'William','Santos','',NULL,'I couldn\'t be who I am today without my parents, Martha and Alonso Santos, and my sisters Joanna and Kacy. My goal is to contribute to a better understanding of the physical world and to expand the appeal of higher education to disadvantaged students.','MIT Scheller Teacher Ed Program, Tutoring','Baseball, Pick-up sports, Fishing, Driving','Lakers, Raiders, White Sox','USC Trojans, CSUF (Fullerton) Titans','Stand & Deliver','\"Strength does not come from physical capacity. It comes from an indomitable will.\" - Mahatma Ghandi ','Diamond Bar, California','2015-01-26 06:13:24','2015-01-26 06:13:24'),(5,5,'Theodore','Tzanetos','',NULL,'President of DKE. Defensive end of the MIT Football team. Aspire to be a real life Tony Stark.','Football, MIT RC Flight Club, Maslab, 6.270','Sports, RC Aviation, Embedded controllers','New York Jets','MIT Engineers','Gladiator','\"You\'ll never shine if you don\'t glow\" - Smashmouth','Plainview, New York','2015-01-26 06:13:24','2015-01-26 06:13:24'),(6,6,'Tyler','Wagner','',NULL,'I\'m Tyler, a Senior in Chemical Engineering with an interest in synthetic biology. I am a member of the 2011 MIT International Genetically Engineered Machines (iGEM) team and am hoping to pursue a grauduate education in biological engineering. Outside of school, I have played football, baseball, and wrestled for the majority of my life.','Football, iGEM','COD, lifting, baseball','Baltimore Ravens','UMD','The Matrix','','Bel Air, Maryland','2015-01-26 06:13:24','2015-01-26 06:13:24'),(7,7,'KC','Weaver','',NULL,'','','','','','','','Sheldon, Iowa','2015-01-26 06:13:24','2015-01-26 06:13:24'),(8,8,'Chris','Dessonville','','','From Omaha, Nebraska, Chris is a die-hard Nebraska football fan. He plays tight end for the MIT varsity football team.','Football','Web Development, Video Games, Sports','','Nebraska Cornhuskers','','','Omaha, Nebraska','2015-01-26 06:13:24','2015-02-15 02:34:35'),(9,9,'Andrew','Wrenn','5033296697','','','','','','','','','Lake Oswego, Oregon','2015-01-26 06:13:24','2015-02-03 19:09:52'),(10,10,'James','Hedrick','',NULL,'As I child I enjoyed ice cream, insightful cartoons, and tossing the football, come to think of it, not much has changed.','Football, Society of Biological Engineering','Guitar','Pittsburgh Steelers, Los Angeles Lakers','Stanford Cardinal, Virginia Tech Hokies','Donnie Darko','\"Veni, Vidi, Veci\" - Julius Caesar','Pleasanton, California','2015-01-26 06:13:24','2015-01-26 18:08:29'),(11,11,'Mark','Kalinich','',NULL,'','AiChE, SBE, Undergraduate Research','Weight lifting','Chicago Bears','Purdue Boilermakers','Dark Knight','','St. John, Indiana','2015-01-26 06:13:24','2015-01-26 06:13:24'),(12,12,'Michael','Nackoul','',NULL,'I am from Pittsburgh, PA and I am currently a junior at MIT. I played football my freshman year but now i just compete in Olympic Weightlifting. I enjoying many outdoor activities and hanging out with friends.','Weightlifting','Fishing, White Water Rafting','Steelers, Pirates, Penguins','MIT Beavers','Forrest Gump','\"Our deepest fear is not that we are inadequate, our deepest fear is that we are powerful beyond all measure.\"','Canonsburg, Pennsylvania','2015-01-26 06:13:24','2015-01-26 06:13:24'),(13,13,'Chase','Olle','',NULL,'','','Art','Denver Broncos','Texas Longhorns','Scott Pilgrim vs the World','\"I came, I saw, I conquered\" - Julius Cesar','Vail, Colorado','2015-01-26 06:13:24','2015-01-26 06:13:24'),(14,14,'Ethan','Peterson','','','Ethan is a junior from Rutland, VT majoring in nuclear science and engineering. He is on the varsity football team and club ice hockey team. He enjoys playing and listening to music as well as playing video games.','Football, Hockey','','','','','','Rutland, Vermont','2015-01-26 06:13:24','2015-06-13 17:05:04'),(15,15,'Aaron','Prindle','','','I swag hard....but I make it look like badminton.','RC Flying Club, IEEE Social Chair','Chess, Scuba Diving, Video Games, Surfing, Being a Gentleman, Dancing','Los Angeles Lakers','USC Trojans','Casablanca','\"You\'re talking about practice...\"','Yorba Linda, California','2015-01-26 06:13:24','2015-06-11 06:27:42'),(16,16,'Russell','Spivak','9143938918','russell.spivak@gmail.com','','Football, The Tech, Student Ambassadors, The Forum','Reading, Watching movies at ad nauseam','News York Yankees, New York Jets','Syracuse Orange','The Shawshank Redemption','','Scarsdale, New York','2015-01-26 06:13:24','2015-01-31 23:23:28'),(17,17,'James','Balchunas','',NULL,'','','','','','','','Plainview, New York','2015-01-26 06:13:24','2015-01-26 06:13:24'),(18,18,'Austin','Boesch','',NULL,'','','','','','','','Maryland','2015-01-26 06:13:24','2015-01-26 06:13:24'),(19,19,'Phil','Marmolejo','',NULL,'','','','','','','','California','2015-01-26 06:13:24','2015-01-26 06:13:24'),(20,20,'Rhys','Borchert','',NULL,'','Football','Living in Idaho; Talking about physics and philosophy; Complaining about American politics','Chicago Bears','MIT Engineers','Avengers','\"We are a way for the universe to know itself.\" - Carl Sagan','Pocatello, Idaho','2015-01-26 06:13:24','2015-01-26 06:13:24'),(21,21,'Tim','Wilson','',NULL,'','Baseball','','Texas Rangers','Texas A&M Aggies','The Rookie','','Nacogdoches, Texas','2015-01-26 06:13:24','2015-01-26 06:13:24'),(22,22,'Will','Waste','','','I was born and raised in San Francisco, CA. I am an Eagle Scout and enjoy doing anything outdoors.','Lacrosse, Football, RC Flight Club','Backpacking, Sailing, Music','San Francisco Giants, San Francisco 49ers, Boston Red Sox','USC Trojans','','\"Do or do not, there is not try.\" - Yoda','San Francisco, California','2015-01-26 06:13:24','2015-04-12 04:43:05'),(23,23,'Jose','Lara','','','','','','Lakers','Miami Hurricanes','Dark Knight','','El Paso, Texas','2015-01-26 06:13:25','2015-01-28 05:20:21'),(24,24,'Derek','Vaughn','','','I grew up in Nashville, TN before moving to Cambridge to attend MIT. I play Defensive Tackle for the football team and enjoy long walks on the beach.','Football','Sports, Outdoors, Video Games','Tennessee Titans','Vanderbilt','Goodfellas','\"You shall not pass!\"','Nashville, Tennessee','2015-01-26 06:13:25','2015-01-27 08:25:57'),(25,25,'Joe','Driscoll','',NULL,'Joseph Driscoll graduated from Torrey Pines High School in San Diego, California. He currently studies electrical engineering and computer science.','Football','','San Diego Chargers, Washington Redskins','MIT Engineers','The Shawshank Redemption','','San Diego, California','2015-01-26 06:13:25','2015-01-26 06:13:25'),(26,26,'Daniel','Gillund','','','I grew up on a farm in North Dakota. I am a blacksmith. ','Football, Baptist Student Fellowship, Campus Crusade for Christ','Blacksmithing, Making Music','Green Bay Packers','MIT Engineers','The Return of the King','\"A man hath no better thing under the sun, than to eat, and to drink, and to be merry.\" - Ecclesiastes','Wildrose, North Dakota','2015-01-26 06:13:25','2015-02-18 02:21:40'),(27,27,'Jake','Laux','','','I\'d like to become a government official at some point, so that when I tell someone it\'s my way or the highway, both end up being my way. ','Football, Wrestling','Lifting weights, video games, trolling','Green Bay Packers','MIT Engineers','The Prestige','\"You don\'t become great by accident.\" - Bob McGinn','Genesee, WI','2015-01-26 06:13:25','2015-05-13 00:27:54'),(28,28,'Maxwell','Ruston','7066147340','mruston@mit.edu','','','','','','','','Athens Georgia','2015-01-26 06:13:25','2015-12-23 19:40:21'),(29,29,'Heath','Gould','',NULL,'I was born and raised in Florida, moved to Vegas for high school. I play Linebacker on the varsity football team and conduct research on neurodegenerative disease in the off season. Upon graduation from MIT, I hope to attend medical school to study neurology / neurosurgery.','Football','','Boston Red Sox','MIT Engineers','Good Will Hunting','\"It\'s not the size of the dog in the fight, it\'s the size of the fight in the dog.\" - Mark Twain','Las Vegas, Nevada','2015-01-26 06:13:25','2015-01-26 06:13:25'),(30,30,'Ryan','Friedrich','3016433064','rfriedrich16@yahoo.com','I spent most of my life surrounded by women, and that\'s the way I like it. I play football, act, occasional video games, and am MIT\'s self proclaimed foremost expert on Pokémon.','Football, Acting, Stand Up Comedy','Chillin\', backyard football, golf, video games','Washington Redskins','','Inception','\"I won\'t be a rock star. I will be a legend.\" - Freddie Mercury','Waldorf, Maryland','2015-01-26 06:13:25','2015-02-07 01:16:46'),(31,31,'Patrick','Jupe','',NULL,'Country Bumpkin.','MIT Electric Vehicle Team, Football','Pretty much anything not school related.','The Underdog','Texas Longhorns','Rush Hour','Every day I\'m hustlin\'','Austin, Texas','2015-01-26 06:13:25','2015-01-26 06:13:25'),(32,32,'Rick','Mancuso','',NULL,'During his years at MIT, Rick could be found shredding a plastic guitar or drum set, picking apart zone coverages (on both the real and virtual gridiron), or catching a game on the 2nd floor with some brothers.','Football','Video Games, Guitar','Miami Dolphins','Penn State Football, North Carolina Basketball','Anchorman','\"Good judgement comes from experience. Experience comes from bad judgement.\"','Dunmore, Pennsylvania','2015-01-26 06:13:25','2015-01-26 06:13:25'),(33,33,'Brad','Gaffney','',NULL,'I\'m going into my first year as a grad student at MIT, trying to get my Master\'s in EECS. I came to MIT so that I could learn to make video games, and that\'s still my plan. Look for me soon in some credits...','MIT DanceTroupe, MIT Football','Video Games, Guitar','Philadelphia Eagles','','Crash','\"I will punch you right in the mouth\" - William Shakespeare','Chewelah, Washington','2015-01-26 06:13:25','2015-01-26 18:04:45'),(34,34,'Will','Vega-Brown','',NULL,'I\'m a first-year grad student working on robotics and autonomy. Since graduation, I\'ve made it my mission to bring an element of class to DKE -- because everything is more fun if you do it with style.','Jiu-Jitsu','Robotics, writing','Philadelphia Eagles','Hawai\'i Warriors','The Godfather','','Salem, New Jersey','2015-01-26 06:13:25','2015-01-26 18:05:01'),(35,35,'Cody','Patrick','',NULL,'I\'m the Resident Advisor of Delta Kappa Epsilon and was an Active member while at MIT from 2001 to 2005. I played football for MIT during that time and now play for the MIT Rugby team while pursuing my Masters in Electrical Engineering with a specialty in Signal Processing.','Rugby','Wakeboarding','Dallas Cowboys','Texas Longhorns','The Big Lebowski','\"The Dude Abides\"','Austin, Texas','2015-01-26 06:13:25','2015-01-26 06:13:25'),(36,36,'John','Halloran','6317218410','jwh.mit@gmail.com','','Football','Lifting, Watching Jeopardy, Reading','New York Yankees','Notre Dame Fighting Irish','The Departed','\"A man is but the product of his thoughts. What he thinks, he becomes.\"','East Northport, New York','2015-01-26 06:13:25','2015-03-19 15:57:07'),(37,37,'Evan','Tencer','5514048594','evaten@mit.edu','Evan is from New Milford, NJ where he attended the Bergen County Academies. He is majoring in 14/15 and will be working in consulting following graduation.','Football','Video Games, Movies, Chess, Philosophizing','New York Giants','MIT Engineers','Original Star Wars Trilogy','\"If you\'re going through hell, keep going.\"','New Milford, New Jersey','2015-01-26 06:13:25','2015-01-26 19:27:50'),(38,38,'Matt','Hildner','','','I lived in North Carolina for 12 years, then moved to Illinois for high school. In Illinois I attended Oswego East High school where I played on the football team, wrestled, and was captain of the FIRST robotics team. I intend to major in mechanical engineering with a focus in robotics.','Football','PC gaming, computer constuction, and building robots','Chicago Bears','Iowa Hawkeyes','Fight Club','\"Any intelligent fool can make things bigger and more complex.\" - Albert Einstein','Aurora, Illinois','2015-01-26 06:13:25','2015-02-03 16:24:35'),(39,39,'Tye','Ellis','','','I\'m Tye Ellis, I enjoy discovering new movies and music. I play football for MIT and am always down to chill.','Football','Photography, Sports, Music','Tennessee Titans, Minnesota Twins','','Pulp Fiction','','Shady Side, Maryland','2015-01-26 06:13:25','2015-03-06 22:43:54'),(40,40,'Joey','Campion','','','I was born in Baltimore but grew up in Jamestown. I\'ve played football and basketball almost all my life. And I love hanging out with my friends.','Football, Basketball','Music, dancing','Buffalo Bills','MIT Engineers','Shutter Island','\"To conquer without risk is to triumph without glory.\"','Jamestown, New York','2015-01-26 06:13:25','2015-08-15 19:23:15'),(41,41,'Ben','Greenberg','','','I enjoy just hanging around and having a good time. I never get stressed out, and I\'m always down for a little fun. When I put my mind to something though, watch out. I don\'t have hobbies, I have obsessions. When I take up a new interest, my life will be so engrossed in mastering this new field that I will hardly think about anything else for weeks at a time.','RC flying club, football','Unicycling, go, pokemon, distance running, Karate','New York Jets','MIT Engineers','Space Jam','Eagles may soar, but weasels don\'t get sucked into jet engines','Pleasantville, New York','2015-01-26 06:13:25','2015-01-31 17:09:56'),(42,42,'Justin','Wallace','2248481556','',' I graduated from Fremd High School in Palatine, Illinois. I played Runningback for MIT\'s football team, and enjoy playing video games.','Football','','Chicago Blackhawks','MIT Engineers','Inception','\"No power in the the \'verse can stop me\"','Palatine, Illinois','2015-01-26 06:13:25','2015-01-31 08:16:44'),(43,43,'Brent','Johnson','',NULL,'','Football, Track and Field','','Green Bay Packers','Ohio State Buckeyes','Step Brothers','','La Canada, California','2015-01-26 06:13:25','2015-01-26 06:13:25'),(44,44,'Doug','Nmagu','','','I was born and lived in Washington D.C for 10 years. I moved to Maryland afterwards where I attended Eleanor Roosevelt High School. I am the second youngest out of six children(4 sisters, 1 brother).','Football, NSBE, ASA, AIChE, BSU, BWA','Cars, football, basketball, shoes','Washington Redskins','University of Miami','Dark Knight','\"If you want something done right, you gotta do it yourself.\"','Lanham, Maryland','2015-01-26 06:13:25','2015-02-12 01:56:06'),(45,45,'Jose','Smith','',NULL,'I\'m a Cuban-american who grew up in Miami Florida and have been playing football all my life. I enjoy fishing, hunting and I plan on studying management here at MIT.','Football','Fishing, Hunting','New England Patriots','Florida Gators','Gangs of New York','\"Speak softly, but carry a big stick.\"','Miami, Florida','2015-01-26 06:13:25','2015-01-26 06:13:25'),(46,46,'Alex','Warner','',NULL,'I attended Pope John XXIII High School before coming up to MIT. I play offensive guard and center for the football team.','Football','Chilling, lacrosse, fishing','Oakland Raiders','Notre Dame','Hunt for the Red October','\"Dictionary is the only place that success comes before work. Hard work is the price we must pay for success. I think you can accomplish anything if you\'re willing to pay the price.\" - Vince Lombardi','Rockaway, New Jersey','2015-01-26 06:13:25','2015-01-26 06:13:25'),(47,47,'Laith','Maswadeh','','','Laith is an MIT freshman who aspires for world domination. He also enjoys long naps and absolute silence.','Football','Sleeping','','','','','Fountain Valley, California','2015-01-26 06:13:25','2015-08-16 22:30:28'),(48,48,'Joseph','Cunningham','','','I was born in Memphis, TN and then moved to Chicago, where I graduated from St. Ignatius. I play football and will likely play rugby here at MIT.','Football, Rugby','','St. Louis Cardinals, Chicago Bears','','Pulp Fiction','Only a man who knows what it is like to be defeated can reach down to the bottom of his soul and come up with the extra ounce of ower to win when it is even--- Muhammad Ali','Chicago, IL','2015-01-26 06:13:26','2015-01-26 21:07:41'),(49,49,'Luther','Banner III','3147045256','lvbanner@mit.edu','','Football','Music, Sports','St. Louis Cardinals, St. Louis Rams, and LA Lakers','Missouri Tigers','','','St. Louis, MO','2015-01-26 06:13:26','2015-03-16 16:18:17'),(50,50,'Christopher','Sparano-Huiban','','','I am Christopher Sparano-Huiban and I grew up in Stamford, Connecticut. I play football as an offensive line man and I intend to study civil engineering.','Football','Model Trains, Fishing','New York Giants','','Miracle','\"It\'s kind of fun to do the impossible.\" -Walt Disney','Stamford, Connecticut','2015-01-26 06:13:26','2015-01-26 08:56:10'),(51,51,'Geoffrey','Hegg','6106398028','ghegg@mit.edu','I grew up in the suburbs outside of Philadelphia. I love all aspects of football, playing and watching it. I play offensive line for the Engineers. Other than football my other passion is singing and theater. I\'m a fairly easy going and nice guy and will help when needed. I\'m looking to major in Course 6-3 (Computer Science)','Football, Theater','Music, Video Games, Board Games','Philadelphia Eagles','MIT Engineers','Forrest Gump','','Devon, PA','2015-01-26 06:13:26','2015-02-13 02:38:06'),(52,52,'Joseph','Hanley','','','Joe was born and raised in New York. He plays offensive line for MIT and plans on studying computer science. Some refer to him as Mongo, and claim that his days consist solely of eating, smashing things, and speaking in the third person. These claims are false and slanderous. Joe is a scholar and a gentleman.','Football','Basketball, Video Games, Picking up and putting down heavy things','New York Giants','','Pulp Fiction','\"Do, or do not. There is no try.\" - Yoda','Somers, New York','2015-01-26 06:13:26','2015-01-29 23:10:43'),(53,53,'Andres','Wallentin','','','Andres\'s reputation precedes him, like lightning precedes thunder. The ancient Mayans prophesized his birth. As a baby, he taught others how to walk. At the tender age of 7 he quit school, because the teacher called \"Recess,\" and he doesn\'t play. At the less tender age of 12 he was pronounced dead for the first time.','Football, BGSA, MITI, ORIGAMIT, TMRC, USWIM','Hobbies: Films, Cooking, Puzzles, Pina Coladas, Getting Caught in the Rain','Washington Redskins','Aztecas Universidad de las Americas Puebla','Watchmen','','Mexico City, Mexico','2015-01-26 06:13:26','2015-08-12 01:01:11'),(54,54,'Seve','Esparrago','3146062726','Eaparrs@mit.edu','I was born and raised in Saint Louis, Missouri. I graduated from Saint Louis Priory School, and I play football for MIT.','Football','','Saint Louis Cardinals','MIT Engineers','Good Will Hunting','\"The greatest pleasure in life is doing what others say you cannot do.\"','Saint Louis, MO','2015-01-26 06:13:26','2015-02-19 17:55:30'),(55,55,'Cosma','Kufa','','','','','Winning in FIFA','New Orleans Saints, LA Lakers','North Carolina Tarheels, Alabama Crimson Tide','Inception','\"What does it take to be number one?\"','Harare, Zimbabwe','2015-01-26 06:13:26','2015-02-10 14:27:05'),(56,56,'Brian','Copeland','4254450171','bcope@mit.edu','','Football','Solving Rubik\'s Cubes and Playing Chess','Seattle Seahawks','MIT Engineers','Gattaca','','Snoqualmie, WA','2015-01-26 06:13:26','2015-04-30 03:28:57'),(57,57,'Alexander','Noakes','','','','Football, Track (throwing)','','Atlanta Falcons','Georgia Bulldogs','A Beautiful Mind','','Watkinsville, GA','2015-01-26 06:13:26','2015-04-28 18:35:35'),(58,58,'Eric','Klinkhammer','9789878331','eklinkhammer@gmail.com','','Rowing','Painting, Video Games, Politics','Ottawa Senators','MIT Engineers','V for Vendetta','\"There is advantage in the wisdom won from pain\" - Aeschylus','Ottawa, Ontario, Canada','2015-01-26 06:13:26','2015-02-07 19:17:54'),(59,59,'Eric','Huppert','','','','','','','','','','','2015-01-26 06:13:26','2015-09-10 01:16:30'),(61,61,'Bradley','Walcher','3035707701','bwalcher@mit.edu','','','','','','','Hard work beats talent when talent doesn\'t work.','Aurora CO','2015-01-26 06:13:26','2015-01-26 19:39:47'),(62,62,'Christian','Argenti','6109065989','','','','','','','','','Hellertown, PA','2015-01-26 06:13:26','2015-02-04 21:36:51'),(63,63,'Christopher','Sanfilippo','','','','','','','','','','Orchard Park','2015-01-26 06:13:26','2015-02-09 06:56:50'),(64,64,'David','Houle','7342237150','','','','','','','','','Plymouth, MI','2015-01-26 06:13:26','2015-01-28 03:17:07'),(65,65,'Kevin','Kusch','9252166959','kvnkusch@mit.edu','','','','','','','','Mobile, Al','2015-01-26 06:13:26','2015-01-27 20:44:37'),(66,66,'Matthew','Iovino','6319219996','Mtiovino@mit.edu','','','','','','','\"When you want to succeed as bad as you want to breathe, then you\'ll be successful\"','Sayville, NY','2015-01-26 06:13:26','2015-02-03 16:19:50'),(67,67,'Matthew','Lindsay','6303527088','','','','','','','','','Batavia IL','2015-01-26 06:13:26','2015-05-09 05:35:14'),(68,68,'Nicholas','Anaya','2037334777','','Senior in courses 14/15 with a minor in 18.','','','','','','Fortune favors the audacious ','Brookfield, Connecticut','2015-01-26 06:13:26','2016-01-03 15:06:52'),(69,69,'Ryan','Karnish','','','','','','','','','\"When my time on earth is gone, and my activities here are passed, I want they bury me upside down, and my critics can kiss my ass!\" - Bob Knight','Nesquehoning, Pennsylvania','2015-01-26 06:13:26','2015-01-26 17:06:04'),(70,70,'Seth','Studebaker','8304563940','','','','','','','','','Fredericksburg, Tx','2015-01-26 06:13:26','2015-02-03 00:18:54'),(71,71,'Travis','Herbanek','8326388275','','I\'m a Texan -- born and raised. In Texas, we have God and football. I\'m a Christian and play slot receiver for the MIT Engineers. Additionally, I love to hunt and fish. I also enjoy building and working with computers. \'Merica.','','','','','','\"Of course not, this is a lovely room of death!\"','Richmond, TX','2015-01-26 06:13:26','2015-01-27 04:37:07'),(72,72,'Jacob','Del Priore','6108447484','jacobdel@mit.edu','NC -> KY -> LA -> NJ -> PA -> Cambridge','','','','','','\"The task of the modern educator is not to cut down jungles, but to irrigate deserts.\" -C.S. Lewis','Center Valley, PA','2015-01-26 06:13:27','2015-02-17 03:34:38'),(73,73,'Robert','DiSanto','','','','','','','','','\"Nobody makes me bleed my own blood.\" - White Goodman','Havertown, PA','2015-01-26 06:13:27','2016-01-11 06:19:34'),(74,74,'Connor','Hanlon','6103126421','','','','','','','','','Conshohocken, PA','2015-01-26 06:13:27','2015-01-29 07:39:51'),(75,75,'Sebastian','Santos','',NULL,'','','','','','','','','2015-01-26 06:13:27','2015-01-26 06:13:27'),(77,77,'Raoul-Emil','Khouri','','','I was born on April 3rd 1996, in St. Louis, Missouri. Shortly after I moved to Key Biscayne an island 3 miles east of Miami. I grew up in Key Biscayne as the youngest of five siblings. Now I am at MIT studying computer science.','','','','','','“Impossible is just a big word thrown around by small men who find it easier to live in the world they\'ve been given than to explore the power they have to change it. Impossible is not a fact. It\'s an opinion. Impossible is not a declaration. It\'s a dare. Impossible is potential. Impossible is temporary. Impossible is nothing.” ― Muhammad Ali','Miami','2015-01-26 06:13:27','2015-10-10 19:19:55'),(78,78,'Michael','Delaus','9784301231','mdelaus@mit.edu','From Andover, Mass. Sophomore in DKE. Big fan of football and skiing','','','','','','\"You guys gotta scram!!\" - Ryan Kelly','Andover, MA','2015-01-26 06:13:27','2016-01-04 20:24:44'),(80,80,'Marcus','Urann','7744547840','marcusu@mit.edu','','','','','','','\"Between two evils, I always pick the one I never tried before.\"','Duxbury, MA','2015-01-26 06:13:27','2015-09-02 01:33:30'),(81,81,'Kyle','Pina ','','','Football and guitar player','','','','','','\"The problem is not the problem, the problem is your attitude about the problem.\"','South Yarmouth, MA (I\'m the one on the right)','2015-01-26 06:13:27','2015-04-29 04:40:21'),(82,82,'John','King','4048778149','johnking@mit.edu','Born in Atlanta, living in Cambridge.','','','','','','\"How you gon\' be mad on vacation?\"- Kanye West','Atlanta','2015-01-26 06:13:27','2015-02-08 01:16:31'),(83,83,'Christian','Jamison','','','','','','','','','','','2015-01-26 06:13:27','2015-04-01 06:12:13'),(84,84,'Ryan','Kelly','7039390850','rhkelly@mit.edu','Current Sophmore Computer Science Major from Northern Virginia.\r\n\r\nLove snowboarding and EDM.\r\n\r\nProud lead designer and builder of the DKE stages constructed during the Summer of 2015. \r\n\r\n','','','','','','\"I don\'t know ALL the secrets. If I did I\'d be rich!\" ~ Dan West','Fairfax Station, VA','2015-01-26 06:13:27','2015-12-27 04:03:17'),(85,85,'Matthew','Nicolai','','','','','','','','','\"I\'m a sophomore but don\'t get it twisted, there\'s nothing soft about me\" -Michael DeLaus','Northport, NY','2015-01-26 06:13:27','2015-12-31 18:30:20'),(86,87,'Luke','Luneau','6037032038','lluneau@mit.edu','',NULL,NULL,NULL,NULL,NULL,'\"Time isn\'t wasted if you enjoyed wasting it.\" - John Lennon','Hopkinton, NH','2015-10-10 19:21:50','2015-10-25 16:45:12'),(87,88,'Logan','Kluis','','kluisl@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Chandler, MN','2015-10-10 19:21:50','2015-12-28 04:08:36'),(88,89,'Tyler','Wasser','2163850165','twasser@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Brecksville, OH','2015-10-10 19:22:48','2015-10-29 00:39:19'),(89,90,'Riley','Quinn','6508681118','rquinn@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','San Carlos ','2015-10-10 20:08:00','2015-12-10 15:02:58'),(90,91,'Udgam','Goyal','','','',NULL,NULL,NULL,NULL,NULL,'','','2015-10-10 20:08:00','2016-01-08 03:18:20'),(91,92,'Mitchell','Maisel','2154784463','maiselm@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Newtown, PA','2015-10-10 20:08:00','2015-12-28 20:34:14'),(92,93,'John','Heyer','','','',NULL,NULL,NULL,NULL,NULL,'','','2015-10-10 20:08:00','2015-12-27 22:19:32'),(93,94,'Eduardo','Garcia-Montes','3057333157','egmontes@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Key Biscayne','2015-10-10 20:08:00','2015-10-30 19:21:41'),(94,95,'David','Bambrick','6618775913','davebam@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Santa Clarita,CA','2015-10-10 20:08:00','2015-10-10 21:01:36'),(95,96,'Coby','Nettleton',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2015-10-10 20:08:00','2015-10-10 20:08:00'),(96,97,'Benjamin','Boldt','3195215918','boldt@mit.edu','',NULL,NULL,NULL,NULL,NULL,'','Cedar Rapids, Iowa','2015-10-10 20:08:00','2015-12-28 04:52:05'),(97,98,'Andrew','DeNucci','','','',NULL,NULL,NULL,NULL,NULL,'','Newton, MA','2015-10-10 20:08:00','2015-12-28 21:03:18'),(98,99,'Miguel','Wagner','','','',NULL,NULL,NULL,NULL,NULL,'','El Segundo, CA','2015-10-10 20:51:30','2015-12-27 19:21:53');
/*!40000 ALTER TABLE `user_brothers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user_shadows`
--
DROP TABLE IF EXISTS `user_shadows`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user_shadows` (
`uname` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) DEFAULT NULL,
`passwd` text COLLATE utf8_unicode_ci NOT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`uname`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user_shadows`
--
LOCK TABLES `user_shadows` WRITE;
/*!40000 ALTER TABLE `user_shadows` DISABLE KEYS */;
INSERT INTO `user_shadows` VALUES ('bgaffney',33,'$apr1$GgAvdQy.$K3bx1uSDeTPYU.9/j9cNm0','2015-01-26 18:04:45','2015-01-26 18:04:45'),('cdville',8,'$apr1$EzMjHql5$KSNXjrk3hbhNe1RbnY2jq1','2015-01-26 18:08:16','2015-01-26 18:08:16'),('dke_alum',1,'$apr1$9V3S9x5G$IVOj6XpBCgF2Q5AlqCHKW0','2015-01-26 18:03:39','2015-01-26 18:03:39'),('eep77',14,'$apr1$wb50S0sn$PKaCja0IRsnFnoGI8.Ueb.','2015-06-13 17:04:28','2015-06-13 17:04:28'),('eklinkha',58,'$apr1$WzcSFswE$8okQae5Nvnvx4bUmjnNKj0','2016-01-18 23:22:09','2016-01-18 23:22:09'),('evaten',37,'$apr1$xQ5qQN86$3Ro1LRQ6ZrJ/6t1KG6v9.0','2015-06-21 04:17:03','2015-06-21 04:17:03'),('jhedrick',10,'$apr1$d4JhO9KR$IhAIUkmeXAM5dbLOTaHch0','2015-01-26 18:08:29','2015-01-26 18:08:29'),('jlara',23,'$apr1$c7KUHEUy$6QlEKVA8UV8XQZ2n9UemR.','2016-01-22 03:59:05','2016-01-22 03:59:05'),('jlaux',27,'$apr1$lNpedV00$lMsZmpP//zqwO4U2Cp.7j/','2015-05-13 00:28:22','2015-05-13 00:28:22'),('madbrown',2,'$apr1$BhCPtN.7$mbYFMaH9ar3nzhcdhwyOK/','2015-01-26 18:12:41','2015-01-26 18:12:41'),('mhildner',38,'$apr1$phP8wXFC$RPzN52XaocymehPgA417R/','2015-10-08 18:42:19','2015-10-08 18:42:19'),('nanaya',68,'$apr1$2iDMXUCq$N6YPFrqUOtXq325ZEVZQD/','2015-05-25 03:45:27','2016-01-03 15:06:52'),('rspivak',16,'$apr1$U3tc/Z83$v7lKmFx5j6exHm4M6BuUD1','2015-01-26 18:09:09','2015-01-26 18:09:09'),('tanyaliu',86,'$apr1$H0YF8cxI$LBuZpnBBxAgvohfPXhf4b0','2015-02-14 21:59:42','2015-02-14 21:59:42'),('wallace4',42,'$apr1$91ZoRgM6$Dh6l3TEz9OcXvp4SDW.Ct0','2015-06-04 16:33:33','2015-09-15 02:01:17');
/*!40000 ALTER TABLE `user_shadows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `users`
--
DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`uname` varchar(8) COLLATE utf8_unicode_ci NOT NULL,
`status` int(11) DEFAULT '0',
`group` varchar(9) COLLATE utf8_unicode_ci NOT NULL,
`chicken` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `index_users_on_uname` (`uname`)
) ENGINE=InnoDB AUTO_INCREMENT=100 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `users`
--
LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` VALUES (1,'dke_alum',1,'dkealum','','2015-01-26 06:13:22','2015-01-26 18:03:39'),(2,'madbrown',1,'dkeaffil','','2015-01-26 13:00:00','2015-01-26 18:12:41'),(3,'pjmaster',1,'dkeactive','broporn','2015-01-26 06:13:24','2015-01-26 17:47:00'),(6,'wagnert',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(8,'cdville',0,'dkealum','brochicken','2015-01-26 06:13:24','2015-01-26 18:13:45'),(9,'awrenn',1,'dkeactive','','2015-01-26 06:13:24','2015-02-03 19:09:52'),(10,'jhedrick',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 18:08:29'),(11,'kalinich',0,'dkealum','','2015-01-26 06:13:24','2015-01-28 02:29:51'),(13,'cholle',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(14,'eep77',0,'dkealum','','2015-01-26 06:13:24','2015-06-14 22:50:46'),(15,'aprindle',1,'dkealum','','2015-01-26 06:13:24','2015-06-11 06:27:44'),(16,'rspivak',1,'dkealum','broporn','2015-01-26 06:13:24','2015-07-01 22:03:00'),(17,'jbalchun',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(18,'acboesch',0,'dkealum','','2015-01-26 06:13:24','2015-01-28 02:30:03'),(19,'phillipm',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(20,'rhys34',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(21,'toolman7',0,'dkealum','','2015-01-26 06:13:24','2015-01-26 06:13:24'),(22,'wwaste',1,'dkealum','','2015-01-26 06:13:24','2015-04-12 04:43:05'),(23,'jlara',1,'dkealum','','2015-01-26 06:13:24','2015-01-28 05:20:21'),(24,'dvaughn',1,'dkealum','','2015-01-26 06:13:25','2015-01-27 08:25:57'),(25,'josephdr',0,'dkealum','','2015-01-26 06:13:25','2015-01-28 02:30:03'),(26,'gillund',1,'dkealum','','2015-01-26 06:13:25','2015-02-18 02:21:40'),(27,'jlaux',1,'dkealum','broporn','2015-01-26 06:13:25','2015-05-13 00:27:55'),(28,'mruston',1,'dkeactive','broporn','2015-01-26 06:13:25','2015-10-10 20:03:04'),(29,'hgould',0,'dkealum','','2015-01-26 06:13:25','2015-01-26 06:13:25'),(30,'rfried16',1,'dkealum','','2015-01-26 06:13:25','2015-02-07 01:16:46'),(33,'bgaffney',0,'dkealum','','2015-01-26 06:13:25','2015-01-26 18:04:45'),(34,'wrvb',0,'dkealum','brochicken','2015-01-26 06:13:25','2015-01-28 02:30:21'),(36,'halloran',1,'dkeactive','','2015-01-26 06:13:25','2015-03-19 15:57:08'),(37,'evaten',1,'dkeactive','','2015-01-26 06:13:25','2015-01-26 19:27:50'),(38,'mhildner',1,'dkeactive','','2015-01-26 06:13:25','2015-02-03 16:24:35'),(39,'tellis',1,'dkeactive','','2015-01-26 06:13:25','2015-03-06 22:43:54'),(40,'jcampion',1,'dkeactive','','2015-01-26 06:13:25','2015-08-15 19:23:17'),(41,'bengreen',1,'dkeactive','','2015-01-26 06:13:25','2015-01-31 17:09:56'),(42,'wallace4',1,'dkeactive','brochicken','2015-01-26 06:13:25','2015-01-26 17:22:59'),(44,'nmagu',1,'dkealum','','2015-01-26 06:13:25','2015-02-12 01:56:06'),(45,'jismith',0,'dkeactive','','2015-01-26 06:13:25','2015-01-26 06:13:25'),(46,'warnera',0,'dkeactive','','2015-01-26 06:13:25','2015-01-26 06:13:25'),(47,'laithm',1,'dkeactive','','2015-01-26 06:13:25','2015-08-16 22:30:30'),(48,'jmcunnin',1,'dkeactive','','2015-01-26 06:13:25','2015-01-26 21:07:41'),(49,'lvbanner',1,'dkeactive','','2015-01-26 06:13:26','2015-02-03 17:14:56'),(50,'csparano',1,'dkeactive','','2015-01-26 06:13:26','2015-01-26 08:56:10'),(51,'ghegg',1,'dkeactive','','2015-01-26 06:13:26','2015-02-13 02:38:06'),(52,'jhanley',1,'dkeactive','','2015-01-26 06:13:26','2015-01-29 23:10:43'),(53,'andresw',1,'dkeactive','','2015-01-26 06:13:26','2015-08-12 01:01:12'),(54,'esparrs',1,'dkeactive','broporn','2015-01-26 06:13:26','2015-02-19 17:55:30'),(55,'ctk1994',1,'dkeactive','','2015-01-26 06:13:26','2015-02-10 14:27:06'),(56,'bcope',1,'dkeactive','','2015-01-26 06:13:26','2015-01-31 01:00:57'),(57,'asnoakes',1,'dkeactive','broporn','2015-01-26 06:13:26','2015-04-28 18:35:35'),(58,'eklinkha',1,'dkeactive','','2015-01-26 06:13:26','2015-02-07 19:17:54'),(59,'ehuppert',1,'dkeactive','','2015-01-26 06:13:26','2015-09-10 01:16:32'),(61,'bwalcher',1,'dkeactive','','2015-01-26 06:13:26','2015-01-26 19:39:47'),(62,'cargenti',1,'dkeactive','','2015-01-26 06:13:26','2015-02-04 21:36:52'),(63,'chrissan',1,'dkeactive','','2015-01-26 06:13:26','2015-02-09 06:56:50'),(64,'dhoule',1,'dkeactive','','2015-01-26 06:13:26','2015-01-28 03:17:07'),(65,'kvnkusch',1,'dkeactive','','2015-01-26 06:13:26','2015-01-27 20:44:38'),(66,'mtiovino',1,'dkeactive','','2015-01-26 06:13:26','2015-02-03 16:19:50'),(67,'lindsaym',1,'dkeactive','','2015-01-26 06:13:26','2015-05-09 05:35:16'),(68,'nanaya',1,'dkeactive','','2015-01-26 06:13:26','2015-01-26 07:20:57'),(69,'rkarnish',1,'dkeactive','','2015-01-26 06:13:26','2015-01-26 17:06:04'),(70,'sethstud',1,'dkeactive','','2015-01-26 06:13:26','2015-02-03 00:18:55'),(71,'herbanek',1,'dkeactive','brochicken','2015-01-26 06:13:26','2015-01-27 04:37:07'),(72,'jacobdel',1,'dkeactive','','2015-01-26 06:13:26','2015-04-02 06:30:46'),(73,'rdisanto',1,'dkeactive','broporn','2015-01-26 06:13:27','2015-02-08 01:14:51'),(74,'crhanlon',1,'dkeactive','','2015-01-26 06:13:27','2015-01-29 07:39:51'),(75,'baggib2',0,'dkeactive','','2015-01-26 06:13:27','2015-01-26 06:13:27'),(77,'rrk',1,'dkeactive','brochicken','2015-01-26 06:13:27','2015-10-10 19:19:55'),(78,'mdelaus',1,'dkeactive','broporn','2015-01-26 06:13:27','2016-01-04 20:24:43'),(80,'marcusu',1,'dkeactive','','2015-01-26 06:13:27','2015-02-08 01:14:44'),(81,'kylepina',1,'dkeactive','','2015-01-26 06:13:27','2015-02-17 17:50:55'),(82,'johnking',1,'dkeactive','','2015-01-26 06:13:27','2015-02-08 01:16:33'),(83,'cjamison',1,'dkeactive','','2015-01-26 06:13:27','2015-04-01 06:12:14'),(84,'rhkelly',1,'dkeactive','','2015-01-26 06:13:27','2015-11-22 03:58:54'),(85,'mnicolai',1,'dkeactive','','2015-01-26 06:13:27','2015-02-15 23:28:26'),(86,'tanyaliu',1,'dkeaffil','',NULL,NULL),(87,'lluneau',1,'dkepledge',NULL,'2015-10-10 19:21:50','2015-10-11 05:18:56'),(88,'kluisl',1,'dkepledge',NULL,'2015-10-10 19:21:50','2015-10-21 02:18:42'),(89,'twasser',1,'dkepledge',NULL,'2015-10-10 19:22:48','2015-10-29 00:39:21'),(90,'rquinn',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-12-10 15:03:00'),(91,'udgam',1,'dkepledge','broporn','2015-10-10 20:08:00','2016-01-08 03:18:24'),(92,'maiselm',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-12-28 20:34:16'),(93,'heyer',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-12-27 22:19:33'),(94,'egmontes',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-10-30 19:21:43'),(95,'davebam',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-10-10 21:01:37'),(96,'cobyn',0,'dkepledge',NULL,'2015-10-10 20:08:00','2015-10-10 20:08:00'),(97,'boldt',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-10-23 15:26:33'),(98,'adenucci',1,'dkepledge',NULL,'2015-10-10 20:08:00','2015-12-28 21:03:18'),(99,'mawb',1,'dkepledge',NULL,'2015-10-10 20:51:31','2015-12-27 19:21:56');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `versions`
--
DROP TABLE IF EXISTS `versions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `versions` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`item_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`item_id` int(11) NOT NULL,
`event` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`whodunnit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
`object` longtext COLLATE utf8_unicode_ci,
`created_at` datetime DEFAULT NULL,
`object_changes` longtext COLLATE utf8_unicode_ci,
PRIMARY KEY (`id`),
KEY `index_versions_on_item_type_and_item_id` (`item_type`,`item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=315 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `versions`
--
LOCK TABLES `versions` WRITE;
/*!40000 ALTER TABLE `versions` DISABLE KEYS */;
INSERT INTO `versions` VALUES (1,'User::Brother::MitInfo',40,'update','42','---\nid: 40\nbrother_id: 42\nmit_id: \'917285358\'\nmajors: 6-3\nminors: \'\'\nconcentration: \'\'\nextracurriculars: Football\ninterests: \'\'\nurops: \'SSL: Zero Robotics, SSL: VERTIGO\'\ninternships: \'\'\nfav_classes: \'6.004\'\nyear: 2015\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-11-09 05:12:10.000000000 Z\n','2015-11-09 05:48:54','---\ninternships:\n- \'\'\n- \'Ball Aerospace: Technical Intern\'\nupdated_at:\n- 2015-11-09 05:12:10.000000000 Z\n- 2015-11-09 05:48:54.905917172 Z\n'),(2,'Epsilon::ESheet',261,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-09\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.496203922 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 261\n'),(3,'Epsilon::ESheet',262,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-09\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.528110580 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 262\n'),(4,'Epsilon::ESheet',263,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-09\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.535848164 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 263\n'),(5,'Epsilon::ESheet',264,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-09\ntime:\n- \n- 7:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.553412566 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 264\n'),(6,'Epsilon::ESheet',265,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-10\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.559732035 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 265\n'),(7,'Epsilon::ESheet',266,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-10\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.566858581 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 266\n'),(8,'Epsilon::ESheet',267,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-10\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.574177951 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 267\n'),(9,'Epsilon::ESheet',268,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-10\ntime:\n- \n- 7:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.715721240 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 268\n'),(10,'Epsilon::ESheet',269,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-11\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.722277482 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 269\n'),(11,'Epsilon::ESheet',270,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-11\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.729503254 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 270\n'),(12,'Epsilon::ESheet',271,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-11\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.736916160 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 271\n'),(13,'Epsilon::ESheet',272,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-11\ntime:\n- \n- 7:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.744120852 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 272\n'),(14,'Epsilon::ESheet',273,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-12\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.759817260 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 273\n'),(15,'Epsilon::ESheet',274,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-12\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.768557487 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 274\n'),(16,'Epsilon::ESheet',275,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-12\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.775092043 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 275\n'),(17,'Epsilon::ESheet',276,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-12\ntime:\n- \n- 7:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.819568347 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 276\n'),(18,'Epsilon::ESheet',277,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-13\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.829018716 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 277\n'),(19,'Epsilon::ESheet',278,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-13\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.835071990 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 278\n'),(20,'Epsilon::ESheet',279,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-13\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.841726417 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 279\n'),(21,'Epsilon::ESheet',280,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-13\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.847487511 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 280\n'),(22,'Epsilon::ESheet',281,'create','66',NULL,'2015-11-09 15:50:19','---\ndate:\n- \n- 2015-11-14\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-09 15:50:19.854076222 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 281\n'),(23,'Epsilon::ESheet',269,'destroy','66','---\nid: 269\ndke_info_id: \ndate: 2015-11-11\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:50:27',NULL),(24,'Epsilon::ESheet',270,'destroy','66','---\nid: 270\ndke_info_id: \ndate: 2015-11-11\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:50:34',NULL),(25,'Epsilon::ESheet',271,'destroy','66','---\nid: 271\ndke_info_id: \ndate: 2015-11-11\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:50:43',NULL),(26,'Epsilon::ESheet',272,'destroy','66','---\nid: 272\ndke_info_id: \ndate: 2015-11-11\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:50:49',NULL),(27,'Epsilon::ESheet',261,'update','54','---\nid: 261\ndke_info_id: \ndate: 2015-11-09\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:51:51','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-09 15:51:51.499386388 Z\n'),(28,'Epsilon::ESheet',273,'update','54','---\nid: 273\ndke_info_id: \ndate: 2015-11-12\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 15:52:49','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-09 15:52:49.202423983 Z\n'),(29,'Epsilon::ESheet',263,'update','65','---\nid: 263\ndke_info_id: \ndate: 2015-11-09\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 16:02:56','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-09 16:02:56.114635539 Z\n'),(30,'Epsilon::ESheet',264,'update','77','---\nid: 264\ndke_info_id: \ndate: 2015-11-09\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 23:40:18','---\ndke_info_id:\n- \n- 77\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-09 23:40:18.541149578 Z\n'),(31,'Epsilon::ESheet',276,'update','77','---\nid: 276\ndke_info_id: \ndate: 2015-11-12\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-09 23:40:27','---\ndke_info_id:\n- \n- 77\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-09 23:40:27.853903279 Z\n'),(32,'Epsilon::ESheet',276,'update','77','---\nid: 276\ndke_info_id: 77\ndate: 2015-11-12\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 23:40:27.000000000 Z\n','2015-11-09 23:40:38','---\ndke_info_id:\n- 77\n- \nupdated_at:\n- 2015-11-09 23:40:27.000000000 Z\n- 2015-11-09 23:40:38.463867177 Z\n'),(33,'Epsilon::ESheet',276,'update','77','---\nid: 276\ndke_info_id: \ndate: 2015-11-12\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 23:40:38.000000000 Z\n','2015-11-09 23:40:43','---\ndke_info_id:\n- \n- 77\nupdated_at:\n- 2015-11-09 23:40:38.000000000 Z\n- 2015-11-09 23:40:43.425143684 Z\n'),(34,'Epsilon::ESheet',277,'update','69','---\nid: 277\ndke_info_id: \ndate: 2015-11-13\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-10 00:21:10','---\ndke_info_id:\n- \n- 67\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-10 00:21:10.911020020 Z\n'),(35,'Epsilon::ESheet',277,'update','69','---\nid: 277\ndke_info_id: 67\ndate: 2015-11-13\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-10 00:21:10.000000000 Z\n','2015-11-10 00:21:22','---\ndke_info_id:\n- 67\n- \nupdated_at:\n- 2015-11-10 00:21:10.000000000 Z\n- 2015-11-10 00:21:22.684336838 Z\n'),(36,'Epsilon::ESheet',265,'update','28','---\nid: 265\ndke_info_id: \ndate: 2015-11-10\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-10 03:19:35','---\ndke_info_id:\n- \n- 71\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-10 03:19:35.545808982 Z\n'),(37,'Epsilon::ESheet',266,'update','28','---\nid: 266\ndke_info_id: \ndate: 2015-11-10\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-10 03:19:37','---\ndke_info_id:\n- \n- 71\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-10 03:19:37.973611374 Z\n'),(38,'Epsilon::ESheet',277,'update','28','---\nid: 277\ndke_info_id: \ndate: 2015-11-13\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-10 00:21:22.000000000 Z\n','2015-11-10 03:19:53','---\ndke_info_id:\n- \n- 71\nupdated_at:\n- 2015-11-10 00:21:22.000000000 Z\n- 2015-11-10 03:19:53.440378099 Z\n'),(39,'Epsilon::ESheet',267,'update','66','---\nid: 267\ndke_info_id: \ndate: 2015-11-10\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-10 18:25:27','---\ndke_info_id:\n- \n- 62\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-10 18:25:27.458410751 Z\n'),(40,'Epsilon::ESheet',274,'update','73','---\nid: 274\ndke_info_id: \ndate: 2015-11-12\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-12 16:13:50','---\ndke_info_id:\n- \n- 73\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-12 16:13:50.455835709 Z\n'),(41,'Epsilon::ESheet',279,'update','84','---\nid: 279\ndke_info_id: \ndate: 2015-11-13\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-13 13:09:57','---\ndke_info_id:\n- \n- 84\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-13 13:09:57.595943433 Z\n'),(42,'Epsilon::ESheet',278,'update','84','---\nid: 278\ndke_info_id: \ndate: 2015-11-13\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-13 13:27:06','---\ndke_info_id:\n- \n- 84\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-13 13:27:06.928701419 Z\n'),(43,'Epsilon::ESheet',280,'update','73','---\nid: 280\ndke_info_id: \ndate: 2015-11-13\ntime: 6:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-13 23:06:44','---\ndke_info_id:\n- \n- 73\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-13 23:06:44.656758027 Z\n'),(44,'Epsilon::ESheet',281,'destroy','66','---\nid: 281\ndke_info_id: \ndate: 2015-11-14\ntime: 6:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-14 00:00:48',NULL),(45,'Epsilon::ESheet',87,'update','66','---\nid: 87\ndke_info_id: \ndate: 0000-01-05\ntime: 7:30PM\ne_type: t_dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-09-09 23:11:58.000000000 Z\nupdated_at: 2015-09-09 23:11:58.000000000 Z\n','2015-11-15 16:35:49','---\ntime:\n- 7:30PM\n- 6:00PM\nupdated_at:\n- 2015-09-09 23:11:58.000000000 Z\n- 2015-11-15 16:35:49.711688653 Z\n'),(46,'Epsilon::ESheet',51,'update','66','---\nid: 51\ndke_info_id: \ndate: 0000-01-06\ntime: 7:30PM\ne_type: t_dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-08-30 23:06:16.000000000 Z\nupdated_at: 2015-08-30 23:06:16.000000000 Z\n','2015-11-15 16:36:05','---\ntime:\n- 7:30PM\n- 6:00PM\nupdated_at:\n- 2015-08-30 23:06:16.000000000 Z\n- 2015-11-15 16:36:05.079613819 Z\n'),(47,'Epsilon::ESheet',52,'update','66','---\nid: 52\ndke_info_id: \ndate: 0000-01-07\ntime: 7:30PM\ne_type: t_dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-08-30 23:06:30.000000000 Z\nupdated_at: 2015-08-30 23:06:30.000000000 Z\n','2015-11-15 16:36:18','---\ntime:\n- 7:30PM\n- 6:00PM\nupdated_at:\n- 2015-08-30 23:06:30.000000000 Z\n- 2015-11-15 16:36:18.349223931 Z\n'),(48,'Epsilon::ESheet',53,'update','66','---\nid: 53\ndke_info_id: \ndate: 0000-01-08\ntime: 7:30PM\ne_type: t_dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-08-30 23:06:50.000000000 Z\nupdated_at: 2015-09-06 16:42:30.000000000 Z\n','2015-11-15 16:36:37','---\ntime:\n- 7:30PM\n- 6:00PM\nupdated_at:\n- 2015-09-06 16:42:30.000000000 Z\n- 2015-11-15 16:36:37.939348069 Z\n'),(49,'Epsilon::ESheet',282,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-16\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.517709489 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 282\n'),(50,'Epsilon::ESheet',283,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-16\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.539546268 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 283\n'),(51,'Epsilon::ESheet',284,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-16\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.546488953 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 284\n'),(52,'Epsilon::ESheet',285,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-16\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.594077987 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 285\n'),(53,'Epsilon::ESheet',286,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-17\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.599710101 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 286\n'),(54,'Epsilon::ESheet',287,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-17\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.606442079 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 287\n'),(55,'Epsilon::ESheet',288,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-17\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.669009883 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 288\n'),(56,'Epsilon::ESheet',289,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-17\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.675464924 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 289\n'),(57,'Epsilon::ESheet',290,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-18\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.682265289 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 290\n'),(58,'Epsilon::ESheet',291,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-18\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.688594012 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 291\n'),(59,'Epsilon::ESheet',292,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-18\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.728661084 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 292\n'),(60,'Epsilon::ESheet',293,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-18\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.733964187 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 293\n'),(61,'Epsilon::ESheet',294,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-19\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.742264652 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 294\n'),(62,'Epsilon::ESheet',295,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-19\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.769533725 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 295\n'),(63,'Epsilon::ESheet',296,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-19\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.776484470 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 296\n'),(64,'Epsilon::ESheet',297,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-19\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.782832938 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 297\n'),(65,'Epsilon::ESheet',298,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-20\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.788506665 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 298\n'),(66,'Epsilon::ESheet',299,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-20\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.793995018 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 299\n'),(67,'Epsilon::ESheet',300,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-20\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.799463245 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 300\n'),(68,'Epsilon::ESheet',301,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-20\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.806638625 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 301\n'),(69,'Epsilon::ESheet',302,'create','66',NULL,'2015-11-15 16:37:12','---\ndate:\n- \n- 2015-11-21\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-15 16:37:12.841937178 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 302\n'),(70,'Epsilon::ESheet',268,'update','66','---\nid: 268\ndke_info_id: \ndate: 2015-11-10\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-11-15 17:37:06','---\ndke_info_id:\n- \n- 82\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-11-15 17:37:06.286489529 Z\n'),(71,'Epsilon::ESheet',283,'update','84','---\nid: 283\ndke_info_id: \ndate: 2015-11-16\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 02:54:14','---\ndke_info_id:\n- \n- 84\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 02:54:14.728833539 Z\n'),(72,'Epsilon::ESheet',282,'update','54','---\nid: 282\ndke_info_id: \ndate: 2015-11-16\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 15:39:52','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 15:39:52.582993978 Z\n'),(73,'Epsilon::ESheet',290,'update','54','---\nid: 290\ndke_info_id: \ndate: 2015-11-18\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 15:40:38','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 15:40:38.437641582 Z\n'),(74,'Epsilon::ESheet',294,'update','54','---\nid: 294\ndke_info_id: \ndate: 2015-11-19\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 15:40:41','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 15:40:41.619776352 Z\n'),(75,'Epsilon::ESheet',284,'update','65','---\nid: 284\ndke_info_id: \ndate: 2015-11-16\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 16:00:30','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 16:00:30.810060503 Z\n'),(76,'Epsilon::ESheet',285,'update','67','---\nid: 285\ndke_info_id: \ndate: 2015-11-16\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 19:18:16','---\ndke_info_id:\n- \n- 65\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 19:18:16.798485822 Z\n'),(77,'Epsilon::ESheet',289,'update','67','---\nid: 289\ndke_info_id: \ndate: 2015-11-17\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 19:18:19','---\ndke_info_id:\n- \n- 65\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 19:18:19.652403090 Z\n'),(78,'Epsilon::ESheet',293,'update','67','---\nid: 293\ndke_info_id: \ndate: 2015-11-18\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 19:18:21','---\ndke_info_id:\n- \n- 65\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 19:18:21.829941096 Z\n'),(79,'Epsilon::ESheet',297,'update','67','---\nid: 297\ndke_info_id: \ndate: 2015-11-19\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-16 19:18:24','---\ndke_info_id:\n- \n- 65\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-16 19:18:24.366463731 Z\n'),(80,'Epsilon::ESheet',287,'update','84','---\nid: 287\ndke_info_id: \ndate: 2015-11-17\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-17 02:43:27','---\ndke_info_id:\n- \n- 84\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-17 02:43:27.099955300 Z\n'),(81,'Epsilon::ESheet',288,'update','84','---\nid: 288\ndke_info_id: \ndate: 2015-11-17\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-17 02:43:36','---\ndke_info_id:\n- \n- 84\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-17 02:43:36.059548329 Z\n'),(82,'Epsilon::ESheet',290,'update','54','---\nid: 290\ndke_info_id: 52\ndate: 2015-11-18\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-16 15:40:38.000000000 Z\n','2015-11-17 06:47:42','---\ndke_info_id:\n- 52\n- \nupdated_at:\n- 2015-11-16 15:40:38.000000000 Z\n- 2015-11-17 06:47:42.595427302 Z\n'),(83,'Epsilon::ESheet',286,'update','41','---\nid: 286\ndke_info_id: \ndate: 2015-11-17\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-17 16:19:19','---\ndke_info_id:\n- \n- 39\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-17 16:19:19.427063761 Z\n'),(84,'Epsilon::ESheet',291,'update','54','---\nid: 291\ndke_info_id: \ndate: 2015-11-18\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-18 17:13:17','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-18 17:13:17.654982726 Z\n'),(85,'Epsilon::ESheet',292,'update','65','---\nid: 292\ndke_info_id: \ndate: 2015-11-18\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-18 18:03:20','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-18 18:03:20.925869153 Z\n'),(86,'Epsilon::ESheet',295,'update','64','---\nid: 295\ndke_info_id: \ndate: 2015-11-19\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-18 20:26:29','---\ndke_info_id:\n- \n- 62\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-18 20:26:29.157991819 Z\n'),(87,'Epsilon::ESheet',296,'update','64','---\nid: 296\ndke_info_id: \ndate: 2015-11-19\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-18 20:26:30','---\ndke_info_id:\n- \n- 62\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-18 20:26:30.492400109 Z\n'),(88,'Epsilon::ESheet',300,'update','64','---\nid: 300\ndke_info_id: \ndate: 2015-11-20\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-18 20:26:36','---\ndke_info_id:\n- \n- 62\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-18 20:26:36.651853355 Z\n'),(89,'Epsilon::ESheet',299,'update','41','---\nid: 299\ndke_info_id: \ndate: 2015-11-20\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-20 17:13:05','---\ndke_info_id:\n- \n- 39\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-20 17:13:05.752721093 Z\n'),(90,'Epsilon::ESheet',301,'update','85','---\nid: 301\ndke_info_id: \ndate: 2015-11-20\ntime: 6:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-15 16:37:12.000000000 Z\nupdated_at: 2015-11-15 16:37:12.000000000 Z\n','2015-11-20 22:23:27','---\ndke_info_id:\n- \n- 85\nupdated_at:\n- 2015-11-15 16:37:12.000000000 Z\n- 2015-11-20 22:23:27.527442525 Z\n'),(91,'User',84,'update','42','---\nid: 84\nuname: rhkelly\nstatus: 1\ngroup: dkeactive\nchicken: broporn\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-04-02 06:35:28.000000000 Z\n','2015-11-22 03:58:54','---\nchicken:\n- broporn\n- \'\'\nupdated_at:\n- 2015-04-02 06:35:28.000000000 Z\n- 2015-11-22 03:58:54.273529672 Z\n'),(92,'User::Brother',84,'update','42','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"Party at the KAPPA!\\\"\"\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-04-29 04:24:55.000000000 Z\n','2015-11-22 03:58:54','---\nuser_id:\n- 84\n- \nupdated_at:\n- 2015-04-29 04:24:55.000000000 Z\n- 2015-11-22 03:58:54.337255720 Z\n'),(93,'User::Brother',84,'update','42','---\nid: 84\nuser_id: \nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"Party at the KAPPA!\\\"\"\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-11-22 03:58:54.000000000 Z\n','2015-11-22 03:58:54','---\nuser_id:\n- \n- 84\nupdated_at:\n- 2015-11-22 03:58:54.000000000 Z\n- 2015-11-22 03:58:54.408615377 Z\n'),(94,'Epsilon::ESheet',303,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-23\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.217759165 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 303\n'),(95,'Epsilon::ESheet',304,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-23\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.401039358 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 304\n'),(96,'Epsilon::ESheet',305,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-23\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.408769252 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 305\n'),(97,'Epsilon::ESheet',306,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-23\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.415946470 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 306\n'),(98,'Epsilon::ESheet',307,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-24\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.422929911 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 307\n'),(99,'Epsilon::ESheet',308,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-24\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.437989150 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 308\n'),(100,'Epsilon::ESheet',309,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-24\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.445164157 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 309\n'),(101,'Epsilon::ESheet',310,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-24\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.452231185 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 310\n'),(102,'Epsilon::ESheet',311,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-25\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.459373665 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 311\n'),(103,'Epsilon::ESheet',312,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-25\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.466439989 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 312\n'),(104,'Epsilon::ESheet',313,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-25\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.473060592 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 313\n'),(105,'Epsilon::ESheet',314,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-25\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.479799169 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 314\n'),(106,'Epsilon::ESheet',315,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-26\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.486523590 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 315\n'),(107,'Epsilon::ESheet',316,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-26\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.493301054 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 316\n'),(108,'Epsilon::ESheet',317,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-26\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.512108020 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 317\n'),(109,'Epsilon::ESheet',318,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-26\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.518889357 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 318\n'),(110,'Epsilon::ESheet',319,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-27\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.525556817 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 319\n'),(111,'Epsilon::ESheet',320,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-27\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.532237601 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 320\n'),(112,'Epsilon::ESheet',321,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-27\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.538651706 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 321\n'),(113,'Epsilon::ESheet',322,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-27\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.545066802 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 322\n'),(114,'Epsilon::ESheet',323,'create','66',NULL,'2015-11-23 22:57:44','---\ndate:\n- \n- 2015-11-28\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-23 22:57:44.551511180 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 323\n'),(115,'Epsilon::ESheet',303,'update','66','---\nid: 303\ndke_info_id: \ndate: 2015-11-23\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-23 22:57:55','---\ndke_info_id:\n- \n- 80\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-23 22:57:55.960545940 Z\n'),(116,'Epsilon::ESheet',304,'update','66','---\nid: 304\ndke_info_id: \ndate: 2015-11-23\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-23 22:58:03','---\ndke_info_id:\n- \n- 55\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-23 22:58:03.726607641 Z\n'),(117,'Epsilon::ESheet',305,'update','66','---\nid: 305\ndke_info_id: \ndate: 2015-11-23\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-23 22:58:13','---\ndke_info_id:\n- \n- 63\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-23 22:58:13.718004362 Z\n'),(118,'Epsilon::ESheet',306,'update','66','---\nid: 306\ndke_info_id: \ndate: 2015-11-23\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-24 01:54:03','---\ndke_info_id:\n- \n- 80\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-24 01:54:03.419181994 Z\n'),(119,'Epsilon::ESheet',307,'update','41','---\nid: 307\ndke_info_id: \ndate: 2015-11-24\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-24 16:13:50','---\ndke_info_id:\n- \n- 39\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-24 16:13:50.614326881 Z\n'),(120,'Epsilon::ESheet',308,'update','64','---\nid: 308\ndke_info_id: \ndate: 2015-11-24\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-24 17:18:22','---\ndke_info_id:\n- \n- 62\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-24 17:18:22.169697921 Z\n'),(121,'Epsilon::ESheet',309,'update','54','---\nid: 309\ndke_info_id: \ndate: 2015-11-24\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-24 18:08:21','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-24 18:08:21.434586059 Z\n'),(122,'Epsilon::ESheet',310,'update','49','---\nid: 310\ndke_info_id: \ndate: 2015-11-24\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-24 18:39:54','---\ndke_info_id:\n- \n- 47\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-24 18:39:54.811246425 Z\n'),(123,'Epsilon::ESheet',311,'update','57','---\nid: 311\ndke_info_id: \ndate: 2015-11-25\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-25 13:47:29','---\ndke_info_id:\n- \n- 55\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-25 13:47:29.793447276 Z\n'),(124,'Epsilon::ESheet',312,'update','57','---\nid: 312\ndke_info_id: \ndate: 2015-11-25\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-25 13:47:32','---\ndke_info_id:\n- \n- 55\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-25 13:47:32.506779147 Z\n'),(125,'Epsilon::ESheet',313,'update','57','---\nid: 313\ndke_info_id: \ndate: 2015-11-25\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-25 13:47:34','---\ndke_info_id:\n- \n- 55\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-25 13:47:34.267107768 Z\n'),(126,'Epsilon::ESheet',314,'update','57','---\nid: 314\ndke_info_id: \ndate: 2015-11-25\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-23 22:57:44.000000000 Z\nupdated_at: 2015-11-23 22:57:44.000000000 Z\n','2015-11-25 14:10:12','---\ndke_info_id:\n- \n- 55\nupdated_at:\n- 2015-11-23 22:57:44.000000000 Z\n- 2015-11-25 14:10:12.715592762 Z\n'),(127,'Epsilon::ESheet',324,'create','66',NULL,'2015-11-30 15:32:26','---\ndate:\n- \n- 2015-11-30\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:26.391264402 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 324\n'),(128,'Epsilon::ESheet',325,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-11-30\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.031486394 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 325\n'),(129,'Epsilon::ESheet',326,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-11-30\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.077898623 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 326\n'),(130,'Epsilon::ESheet',327,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-11-30\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.097310676 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 327\n'),(131,'Epsilon::ESheet',328,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.151095226 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 328\n'),(132,'Epsilon::ESheet',329,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.217903148 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 329\n'),(133,'Epsilon::ESheet',330,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.226298800 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 330\n'),(134,'Epsilon::ESheet',331,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.282305746 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 331\n'),(135,'Epsilon::ESheet',332,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-02\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.290221665 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 332\n'),(136,'Epsilon::ESheet',333,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-02\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.363963286 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 333\n'),(137,'Epsilon::ESheet',334,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-02\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.375142528 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 334\n'),(138,'Epsilon::ESheet',335,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-02\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.383108657 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 335\n'),(139,'Epsilon::ESheet',336,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-03\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.529749087 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 336\n'),(140,'Epsilon::ESheet',337,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-03\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.573423695 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 337\n'),(141,'Epsilon::ESheet',338,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-03\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.621930838 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 338\n'),(142,'Epsilon::ESheet',339,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-03\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.662554798 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 339\n'),(143,'Epsilon::ESheet',340,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-04\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.670712629 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 340\n'),(144,'Epsilon::ESheet',341,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-04\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.718563204 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 341\n'),(145,'Epsilon::ESheet',342,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-04\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.726469045 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 342\n'),(146,'Epsilon::ESheet',343,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-04\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.734467879 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 343\n'),(147,'Epsilon::ESheet',344,'create','66',NULL,'2015-11-30 15:32:27','---\ndate:\n- \n- 2015-12-05\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-11-30 15:32:27.832988621 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 344\n'),(148,'Epsilon::ESheet',326,'update','65','---\nid: 326\ndke_info_id: \ndate: 2015-11-30\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-11-30 16:00:56','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-11-30 16:00:56.589859010 Z\n'),(149,'Epsilon::ESheet',334,'update','65','---\nid: 334\ndke_info_id: \ndate: 2015-12-02\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-11-30 16:00:59','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-11-30 16:00:59.906531839 Z\n'),(150,'Epsilon::ESheet',324,'update','54','---\nid: 324\ndke_info_id: \ndate: 2015-11-30\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:26.000000000 Z\nupdated_at: 2015-11-30 15:32:26.000000000 Z\n','2015-11-30 16:29:41','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-30 15:32:26.000000000 Z\n- 2015-11-30 16:29:41.412822887 Z\n'),(151,'Epsilon::ESheet',327,'update','82','---\nid: 327\ndke_info_id: \ndate: 2015-11-30\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-11-30 22:38:37','---\ndke_info_id:\n- \n- 82\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-11-30 22:38:37.398148509 Z\n'),(152,'Epsilon::ESheet',325,'update','66','---\nid: 325\ndke_info_id: \ndate: 2015-11-30\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-01 16:42:26','---\ndke_info_id:\n- \n- 62\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-01 16:42:26.422210327 Z\n'),(153,'Epsilon::ESheet',329,'update','54','---\nid: 329\ndke_info_id: \ndate: 2015-12-01\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-01 17:04:39','---\ndke_info_id:\n- \n- 52\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-01 17:04:39.570989751 Z\n'),(154,'Epsilon::ESheet',330,'update','41','---\nid: 330\ndke_info_id: \ndate: 2015-12-01\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-01 18:11:08','---\ndke_info_id:\n- \n- 39\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-01 18:11:08.411479503 Z\n'),(155,'Epsilon::ESheet',331,'update','66','---\nid: 331\ndke_info_id: \ndate: 2015-12-01\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-02 00:47:35','---\ndke_info_id:\n- \n- 82\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-02 00:47:35.357992620 Z\n'),(156,'User::Brother::MitInfo',80,'update','80','---\nid: 80\nbrother_id: 80\nmit_id: \'919939308\'\nmajors: 2A\nminors: \'15\'\nconcentration: Economics\nextracurriculars: Lacrosse\ninterests: Hiking, Sailing, Beachin\' it\nurops: Bio-Inspired Photonics\ninternships: \'\'\nfav_classes: \'18.03\'\nyear: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-09-02 01:33:30.000000000 Z\n','2015-12-02 01:51:05','---\nmajors:\n- 2A\n- Mechanical Engineering\nminors:\n- \'15\'\n- Business Management\nurops:\n- Bio-Inspired Photonics\n- Bio-Inspired Photonic Devices\nfav_classes:\n- \'18.03\'\n- Differential Equations, Macroeconomics\nupdated_at:\n- 2015-09-02 01:33:30.000000000 Z\n- 2015-12-02 01:51:05.193637000 Z\n'),(157,'User::Brother::DkeInfo',97,'update','80','---\nid: 97\nbrother_id: 97\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\nmeal_plan: false\n','2015-12-02 01:51:05','---\nbig_id:\n- \n- 80\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-02 01:51:05.468367882 Z\n'),(158,'User::Brother::DkeInfo',80,'update','80','---\nid: 80\nbrother_id: 80\np_name: Lance Armstrong\nproject: \'\'\npast_pos: Alpha (Alumni Relations)\nbig_id: 53\nresidence_id: 401\np_class: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-08-23 18:26:44.000000000 Z\nmeal_plan: true\n','2015-12-02 01:51:05','---\nproject:\n- \'\'\n- Caulking of Showers\nupdated_at:\n- 2015-08-23 18:26:44.000000000 Z\n- 2015-12-02 01:51:05.593303161 Z\n'),(159,'Epsilon::ESheet',335,'update','78','---\nid: 335\ndke_info_id: \ndate: 2015-12-02\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-02 22:11:09','---\ndke_info_id:\n- \n- 78\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-02 22:11:09.084951296 Z\n'),(160,'Epsilon::ESheet',336,'update','41','---\nid: 336\ndke_info_id: \ndate: 2015-12-03\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-03 16:18:59','---\ndke_info_id:\n- \n- 39\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-03 16:18:59.981018771 Z\n'),(161,'Epsilon::ESheet',338,'update','74','---\nid: 338\ndke_info_id: \ndate: 2015-12-03\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-03 17:40:31','---\ndke_info_id:\n- \n- 74\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-03 17:40:31.219842095 Z\n'),(162,'Epsilon::ESheet',337,'update','66','---\nid: 337\ndke_info_id: \ndate: 2015-12-03\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-03 18:57:20','---\ndke_info_id:\n- \n- 55\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-03 18:57:20.625046598 Z\n'),(163,'Epsilon::ESheet',328,'update','66','---\nid: 328\ndke_info_id: \ndate: 2015-12-01\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-04 00:52:38','---\ndke_info_id:\n- \n- 71\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-04 00:52:38.744610172 Z\n'),(164,'Epsilon::ESheet',339,'update','66','---\nid: 339\ndke_info_id: \ndate: 2015-12-03\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-04 00:52:50','---\ndke_info_id:\n- \n- 71\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-04 00:52:50.790799384 Z\n'),(165,'Epsilon::ESheet',340,'update','66','---\nid: 340\ndke_info_id: \ndate: 2015-12-04\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-04 17:34:01','---\ndke_info_id:\n- \n- 71\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-04 17:34:01.985321419 Z\n'),(166,'Epsilon::ESheet',229,'update','66','---\nid: 229\ndke_info_id: \ndate: 2015-10-28\ntime: 7:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-10-26 16:45:13.000000000 Z\nupdated_at: 2015-10-28 15:19:29.000000000 Z\n','2015-12-04 18:08:54','---\ndke_info_id:\n- \n- 78\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-10-28 15:19:29.000000000 Z\n- 2015-12-04 18:08:54.297222933 Z\n'),(167,'Epsilon::ESheet',275,'update','66','---\nid: 275\ndke_info_id: \ndate: 2015-11-12\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-09 15:50:19.000000000 Z\nupdated_at: 2015-11-09 15:50:19.000000000 Z\n','2015-12-04 18:09:25','---\ndke_info_id:\n- \n- 78\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-09 15:50:19.000000000 Z\n- 2015-12-04 18:09:25.046066705 Z\n'),(168,'Chapter::Officer',1,'update','42','---\nid: 1\nname: beta\ntitle: President\nposition: 0\ndke_info_id: 69\nassign_points: true\nstart_date: 2014-12-07 00:00:00.000000000 Z\ndisp: false\ncontact: Major issues; Issues Relevant to entire house\nemail: \ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:47:27.000000000 Z\n','2015-12-05 23:24:27','---\ndisp:\n- false\n- true\nupdated_at:\n- 2015-05-19 16:47:27.000000000 Z\n- 2015-12-05 23:24:27.803612466 Z\n'),(169,'Chapter::Officer',17,'update','42','---\nid: 17\nname: nu\ntitle: Risk Manager\nposition: 2\ndke_info_id: 72\nassign_points: true\nstart_date: \ndisp: false\ncontact: Any serious issues; anything pertaining to risk\nemail: \'\'\ncreated_at: 2015-05-19 16:47:53.000000000 Z\nupdated_at: 2015-05-19 16:49:20.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- false\n- true\nupdated_at:\n- 2015-05-19 16:49:20.000000000 Z\n- 2015-12-05 23:24:28.256553499 Z\n'),(170,'Chapter::Officer',3,'update','42','---\nid: 3\nname: kappa\ntitle: Treasurer\nposition: 3\ndke_info_id: 71\nassign_points: false\nstart_date: 2014-02-04 00:00:00.000000000 Z\ndisp: false\ncontact: \'Financial issues \'\nemail: \ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- false\n- true\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:24:28.306067078 Z\n'),(171,'Chapter::Officer',4,'update','42','---\nid: 4\nname: zeta\ntitle: House Manager\nposition: 4\ndke_info_id: 77\nassign_points: true\nstart_date: 2013-09-15 00:00:00.000000000 Z\ndisp: false\ncontact: \'Issues pertaining to upkeep of the house \'\nemail: \ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- false\n- true\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:24:28.356143212 Z\n'),(172,'Chapter::Officer',6,'update','42','---\nid: 6\nname: s_beta\ntitle: Summer President / Treasurer\nposition: 6\ndke_info_id: 35\nassign_points: false\nstart_date: 2014-12-07 00:00:00.000000000 Z\ndisp: true\ncontact: \'Financial issues; Major issues; Issues Relevant to entire house \'\nemail: \'\'\ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- true\n- false\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:24:28.455160626 Z\n'),(173,'Chapter::Officer',7,'update','42','---\nid: 7\nname: s_zeta\ntitle: Summer House & Risk Manager\nposition: 7\ndke_info_id: 77\nassign_points: false\nstart_date: 2014-12-07 00:00:00.000000000 Z\ndisp: true\ncontact: \'Issues pertaining to upkeep of the house; Any serious issues or anything\n pertaining to risk \'\nemail: \'\'\ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- true\n- false\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:24:28.507410131 Z\n'),(174,'Chapter::Officer',13,'update','42','---\nid: 13\nname: s_psi\ntitle: Summer House Recruitment Chair\nposition: 13\ndke_info_id: 35\nassign_points: false\nstart_date: 2014-12-07 00:00:00.000000000 Z\ndisp: true\ncontact: Summer housing\nemail: \ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:24:28','---\ndisp:\n- true\n- false\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:24:28.640016839 Z\n'),(175,'Chapter::Officer',14,'update','42','---\nid: 14\nname: broweb\ntitle: Webmaster\nposition: 14\ndke_info_id: 40\nassign_points: false\nstart_date: 2014-01-04 00:00:00.000000000 Z\ndisp: true\ncontact: Issues pertaining to the website\nemail: \ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-05-19 16:48:18.000000000 Z\n','2015-12-05 23:25:16','---\ndke_info_id:\n- 40\n- 0\ndisp:\n- true\n- false\nemail:\n- \n- \'\'\nupdated_at:\n- 2015-05-19 16:48:18.000000000 Z\n- 2015-12-05 23:25:16.726895031 Z\n'),(176,'Epsilon::ESheet',345,'create','66',NULL,'2015-12-06 05:15:40','---\ndate:\n- \n- 2015-12-07\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:40.973955583 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 345\n'),(177,'Epsilon::ESheet',346,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-07\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.276231866 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 346\n'),(178,'Epsilon::ESheet',347,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-07\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.284137609 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 347\n'),(179,'Epsilon::ESheet',348,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-07\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.355160681 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 348\n'),(180,'Epsilon::ESheet',349,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-08\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.377180284 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 349\n'),(181,'Epsilon::ESheet',350,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-08\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.384439860 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 350\n'),(182,'Epsilon::ESheet',351,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-08\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.414502886 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 351\n'),(183,'Epsilon::ESheet',352,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-08\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.536498693 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 352\n'),(184,'Epsilon::ESheet',353,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-09\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.607242493 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 353\n'),(185,'Epsilon::ESheet',354,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-09\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.614684497 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 354\n'),(186,'Epsilon::ESheet',355,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-09\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.623304633 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 355\n'),(187,'Epsilon::ESheet',356,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-09\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.686933812 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 356\n'),(188,'Epsilon::ESheet',357,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-10\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.706667525 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 357\n'),(189,'Epsilon::ESheet',358,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-10\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.727087051 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 358\n'),(190,'Epsilon::ESheet',359,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-10\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.735082207 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 359\n'),(191,'Epsilon::ESheet',360,'create','66',NULL,'2015-12-06 05:15:41','---\ndate:\n- \n- 2015-12-10\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:41.837690291 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 360\n'),(192,'Epsilon::ESheet',361,'create','66',NULL,'2015-12-06 05:15:42','---\ndate:\n- \n- 2015-12-11\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:42.073566588 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 361\n'),(193,'Epsilon::ESheet',362,'create','66',NULL,'2015-12-06 05:15:42','---\ndate:\n- \n- 2015-12-11\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:42.085962862 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 362\n'),(194,'Epsilon::ESheet',363,'create','66',NULL,'2015-12-06 05:15:42','---\ndate:\n- \n- 2015-12-11\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:42.186775087 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 363\n'),(195,'Epsilon::ESheet',364,'create','66',NULL,'2015-12-06 05:15:42','---\ndate:\n- \n- 2015-12-11\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:42.260955370 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 364\n'),(196,'Epsilon::ESheet',365,'create','66',NULL,'2015-12-06 05:15:42','---\ndate:\n- \n- 2015-12-12\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-06 05:15:42.331970129 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 365\n'),(197,'Epsilon::ESheet',347,'update','65','---\nid: 347\ndke_info_id: \ndate: 2015-12-07\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-07 13:52:47','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-07 13:52:47.089616600 Z\n'),(198,'Epsilon::ESheet',355,'update','65','---\nid: 355\ndke_info_id: \ndate: 2015-12-09\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-07 13:52:50','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-07 13:52:50.575080455 Z\n'),(199,'Epsilon::ESheet',363,'update','65','---\nid: 363\ndke_info_id: \ndate: 2015-12-11\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:42.000000000 Z\nupdated_at: 2015-12-06 05:15:42.000000000 Z\n','2015-12-07 13:52:52','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-12-06 05:15:42.000000000 Z\n- 2015-12-07 13:52:52.765789765 Z\n'),(200,'Epsilon::ESheet',362,'update','65','---\nid: 362\ndke_info_id: \ndate: 2015-12-11\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:42.000000000 Z\nupdated_at: 2015-12-06 05:15:42.000000000 Z\n','2015-12-07 13:53:17','---\ndke_info_id:\n- \n- 63\nupdated_at:\n- 2015-12-06 05:15:42.000000000 Z\n- 2015-12-07 13:53:17.303486538 Z\n'),(201,'Epsilon::ESheet',350,'update','64','---\nid: 350\ndke_info_id: \ndate: 2015-12-08\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-07 16:21:24','---\ndke_info_id:\n- \n- 62\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-07 16:21:24.252483507 Z\n'),(202,'Epsilon::ESheet',350,'update','64','---\nid: 350\ndke_info_id: 62\ndate: 2015-12-08\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-07 16:21:24.000000000 Z\n','2015-12-07 16:21:50','---\ndke_info_id:\n- 62\n- \nupdated_at:\n- 2015-12-07 16:21:24.000000000 Z\n- 2015-12-07 16:21:50.152410611 Z\n'),(203,'Epsilon::ESheet',345,'update','66','---\nid: 345\ndke_info_id: \ndate: 2015-12-07\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:40.000000000 Z\nupdated_at: 2015-12-06 05:15:40.000000000 Z\n','2015-12-07 16:37:05','---\ndke_info_id:\n- \n- 55\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-12-06 05:15:40.000000000 Z\n- 2015-12-07 16:37:05.075663670 Z\n'),(204,'Epsilon::ESheet',366,'create','66',NULL,'2015-12-07 16:37:53','---\ne_type:\n- \n- lunch\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 11:00AM\ndke_info_id:\n- \n- 55\nvalue:\n- \n- 3.0\ncomment:\n- \n- \'\'\ncreated_at:\n- \n- &1 2015-12-07 16:37:53.608105558 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 366\n'),(205,'User::Brother::DkeInfo',49,'update','66','---\nid: 49\nbrother_id: 51\np_name: Simple Jef\nproject: Lights on the roof\npast_pos: Pi Fall 2014, New Member Educator (Aug 25, 2014 - Dec 7, 2014)\nbig_id: 35\nresidence_id: 404\np_class: 2016\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-05-18 03:15:12.000000000 Z\nmeal_plan: true\n','2015-12-07 22:21:44','---\nmeal_plan:\n- true\n- false\nupdated_at:\n- 2015-05-18 03:15:12.000000000 Z\n- 2015-12-07 22:21:44.947975418 Z\n'),(206,'User::Brother::DkeInfo',49,'update','66','---\nid: 49\nbrother_id: 51\np_name: Simple Jef\nproject: Lights on the roof\npast_pos: Pi Fall 2014, New Member Educator (Aug 25, 2014 - Dec 7, 2014)\nbig_id: 35\nresidence_id: 404\np_class: 2016\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-12-07 22:21:44.000000000 Z\nmeal_plan: false\n','2015-12-07 22:21:48','---\nmeal_plan:\n- false\n- true\nupdated_at:\n- 2015-12-07 22:21:44.000000000 Z\n- 2015-12-07 22:21:48.291919783 Z\n'),(207,'User::Brother::DkeInfo',49,'update','66','---\nid: 49\nbrother_id: 51\np_name: Simple Jef\nproject: Lights on the roof\npast_pos: Pi Fall 2014, New Member Educator (Aug 25, 2014 - Dec 7, 2014)\nbig_id: 35\nresidence_id: 404\np_class: 2016\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-12-07 22:21:48.000000000 Z\nmeal_plan: true\n','2015-12-07 22:21:49','---\nmeal_plan:\n- true\n- false\nupdated_at:\n- 2015-12-07 22:21:48.000000000 Z\n- 2015-12-07 22:21:49.815031962 Z\n'),(208,'Epsilon::ESheet',367,'create','66',NULL,'2015-12-07 22:52:53','---\ne_type:\n- \n- dinner\ndate:\n- \n- 2015-12-02\ntime:\n- \n- 5:00PM\ndke_info_id:\n- \n- 62\nvalue:\n- \n- 4.0\ncomment:\n- \n- \'Formal dishes \'\ncreated_at:\n- \n- &1 2015-12-07 22:52:53.202403036 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 367\n'),(209,'Epsilon::ESheet',362,'update','65','---\nid: 362\ndke_info_id: 63\ndate: 2015-12-11\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:42.000000000 Z\nupdated_at: 2015-12-07 13:53:17.000000000 Z\n','2015-12-08 17:45:53','---\ndke_info_id:\n- 63\n- \nupdated_at:\n- 2015-12-07 13:53:17.000000000 Z\n- 2015-12-08 17:45:53.347740819 Z\n'),(210,'Epsilon::ESheet',351,'update','74','---\nid: 351\ndke_info_id: \ndate: 2015-12-08\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-08 18:00:41','---\ndke_info_id:\n- \n- 74\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-08 18:00:41.895162709 Z\n'),(211,'Epsilon::ESheet',349,'update','66','---\nid: 349\ndke_info_id: \ndate: 2015-12-08\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-08 22:00:00','---\ndke_info_id:\n- \n- 71\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-08 22:00:00.168790742 Z\n'),(212,'Epsilon::ESheet',350,'update','66','---\nid: 350\ndke_info_id: \ndate: 2015-12-08\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-07 16:21:50.000000000 Z\n','2015-12-08 22:00:30','---\ndke_info_id:\n- \n- 63\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-12-07 16:21:50.000000000 Z\n- 2015-12-08 22:00:30.651742146 Z\n'),(213,'Epsilon::ESheet',352,'update','66','---\nid: 352\ndke_info_id: \ndate: 2015-12-08\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-09 04:05:19','---\ndke_info_id:\n- \n- 80\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-09 04:05:19.789343871 Z\n'),(214,'Epsilon::ESheet',343,'update','66','---\nid: 343\ndke_info_id: \ndate: 2015-12-04\ntime: 6:30PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-09 23:08:25','---\ndke_info_id:\n- \n- 74\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-09 23:08:25.572735172 Z\n'),(215,'Epsilon::ESheet',341,'update','66','---\nid: 341\ndke_info_id: \ndate: 2015-12-04\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-11-30 15:32:27.000000000 Z\nupdated_at: 2015-11-30 15:32:27.000000000 Z\n','2015-12-09 23:08:55','---\ndke_info_id:\n- \n- 74\ncomment:\n- \n- \'\'\nupdated_at:\n- 2015-11-30 15:32:27.000000000 Z\n- 2015-12-09 23:08:55.001808418 Z\n'),(216,'Epsilon::ESheet',357,'update','52','---\nid: 357\ndke_info_id: \ndate: 2015-12-10\ntime: 11:30AM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-10 00:28:45','---\ndke_info_id:\n- \n- 50\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-10 00:28:45.058983119 Z\n'),(217,'Epsilon::ESheet',358,'update','52','---\nid: 358\ndke_info_id: \ndate: 2015-12-10\ntime: 12:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-10 00:28:48','---\ndke_info_id:\n- \n- 50\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-10 00:28:48.821022635 Z\n'),(218,'Epsilon::ESheet',359,'update','52','---\nid: 359\ndke_info_id: \ndate: 2015-12-10\ntime: 1:15PM\ne_type: lunch\nvalue: 1.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-10 00:28:49','---\ndke_info_id:\n- \n- 50\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-10 00:28:49.976547468 Z\n'),(219,'Epsilon::ESheet',360,'update','52','---\nid: 360\ndke_info_id: \ndate: 2015-12-10\ntime: 6:00PM\ne_type: dinner\nvalue: 3.0\ncomment: \ncreated_at: 2015-12-06 05:15:41.000000000 Z\nupdated_at: 2015-12-06 05:15:41.000000000 Z\n','2015-12-10 00:28:51','---\ndke_info_id:\n- \n- 50\nupdated_at:\n- 2015-12-06 05:15:41.000000000 Z\n- 2015-12-10 00:28:51.106905691 Z\n'),(220,'User::Brother',89,'update','90','---\nid: 89\nuser_id: 90\nfirst_name: Riley\nlast_name: Quinn\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-10 15:02:58','---\nhometown:\n- \n- \'San Carlos \'\nemail:\n- \n- rquinn@mit.edu\nphone:\n- \n- \'6508681118\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-10 15:02:58.388372166 Z\n'),(221,'User::Brother::MitInfo',89,'update','90','---\nid: 89\nbrother_id: 89\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-10 15:02:58','---\nmit_id:\n- \n- \'\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-10 15:02:58.897227078 Z\n'),(222,'User::Brother::DkeInfo',89,'update','90','---\nid: 89\nbrother_id: 89\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\nmeal_plan: false\n','2015-12-10 15:02:58','---\np_name:\n- \n- \'\'\nproject:\n- \n- \'\'\npast_pos:\n- \n- \'\'\nbig_id:\n- \n- 0\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-10 15:02:58.971141062 Z\n'),(223,'User',90,'update','90','---\nid: 90\nuname: rquinn\nstatus: 0\ngroup: dkepledge\nchicken: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-10 15:03:00','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-10 15:03:00.893823970 Z\n'),(224,'Epsilon::ESheet',368,'create','66',NULL,'2015-12-11 19:13:53','---\ne_type:\n- \n- lunch\ndate:\n- \n- 2015-12-01\ntime:\n- \n- 11:45AM\ndke_info_id:\n- \n- 47\nvalue:\n- \n- 2.0\ncomment:\n- \n- Dishes\ncreated_at:\n- \n- &1 2015-12-11 19:13:53.648911372 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 368\n'),(225,'User::Brother::DkeInfo',88,'update','89','---\nid: 88\nbrother_id: 88\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:22:48.000000000 Z\nupdated_at: 2015-10-30 19:23:19.000000000 Z\nmeal_plan: false\n','2015-12-12 19:07:48','---\nbig_id:\n- 0\n- 73\nupdated_at:\n- 2015-10-30 19:23:19.000000000 Z\n- 2015-12-12 19:07:48.793837530 Z\n'),(226,'Epsilon::ESheet',369,'create','66',NULL,'2015-12-14 17:14:34','---\ndate:\n- \n- 2015-12-14\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:34.421227715 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 369\n'),(227,'Epsilon::ESheet',370,'create','66',NULL,'2015-12-14 17:14:35','---\ndate:\n- \n- 2015-12-14\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:35.812162114 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 370\n'),(228,'Epsilon::ESheet',371,'create','66',NULL,'2015-12-14 17:14:35','---\ndate:\n- \n- 2015-12-14\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:35.855982276 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 371\n'),(229,'Epsilon::ESheet',372,'create','66',NULL,'2015-12-14 17:14:35','---\ndate:\n- \n- 2015-12-14\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:35.904295017 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 372\n'),(230,'Epsilon::ESheet',373,'create','66',NULL,'2015-12-14 17:14:35','---\ndate:\n- \n- 2015-12-15\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:35.964050553 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 373\n'),(231,'Epsilon::ESheet',374,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-15\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.004658002 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 374\n'),(232,'Epsilon::ESheet',375,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-15\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.058596358 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 375\n'),(233,'Epsilon::ESheet',376,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-15\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.082991028 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 376\n'),(234,'Epsilon::ESheet',377,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-16\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.091507637 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 377\n'),(235,'Epsilon::ESheet',378,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-16\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.099722306 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 378\n'),(236,'Epsilon::ESheet',379,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-16\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.125056513 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 379\n'),(237,'Epsilon::ESheet',380,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-16\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.133208971 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 380\n'),(238,'Epsilon::ESheet',381,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-17\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.147340044 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 381\n'),(239,'Epsilon::ESheet',382,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-17\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.162683221 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 382\n'),(240,'Epsilon::ESheet',383,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-17\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.171176284 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 383\n'),(241,'Epsilon::ESheet',384,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-17\ntime:\n- \n- 6:00PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.209838477 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 384\n'),(242,'Epsilon::ESheet',385,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-18\ntime:\n- \n- 11:30AM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.257086103 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 385\n'),(243,'Epsilon::ESheet',386,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-18\ntime:\n- \n- 12:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.286150271 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 386\n'),(244,'Epsilon::ESheet',387,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-18\ntime:\n- \n- 1:15PM\ne_type:\n- \n- lunch\nvalue:\n- \n- 1.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.347943033 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 387\n'),(245,'Epsilon::ESheet',388,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-18\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.377532532 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 388\n'),(246,'Epsilon::ESheet',389,'create','66',NULL,'2015-12-14 17:14:36','---\ndate:\n- \n- 2015-12-19\ntime:\n- \n- 6:30PM\ne_type:\n- \n- dinner\nvalue:\n- \n- 3.0\ncreated_at:\n- \n- &1 2015-12-14 17:14:36.417183946 Z\nupdated_at:\n- \n- *1\nid:\n- \n- 389\n'),(247,'User::Brother::MitInfo',84,'update','84','---\nid: 84\nbrother_id: 84\nmit_id: \'919543877\'\nmajors: 6-2 and 15\nminors: \'14\'\nconcentration: Economics\nextracurriculars: \'\'\ninterests: Snowboarding, Biking\nurops: CSAIL Summer 2015\ninternships: Tango Enterprises\nfav_classes: 14.01, 6.01\nyear: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-04-29 04:30:27.000000000 Z\n','2015-12-19 22:54:30','---\nmajors:\n- 6-2 and 15\n- 6-2\nminors:\n- \'14\'\n- \'\'\nurops:\n- CSAIL Summer 2015\n- CSAIL Summer and Fall 2015\nfav_classes:\n- 14.01, 6.01\n- 6.004, 6.S04, 14.01\nupdated_at:\n- 2015-04-29 04:30:27.000000000 Z\n- 2015-12-19 22:54:30.643838532 Z\n'),(248,'User::Brother::DkeInfo',94,'update','84','---\nid: 94\nbrother_id: 94\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 21:01:36.000000000 Z\nmeal_plan: false\n','2015-12-19 22:54:31','---\nbig_id:\n- 0\n- 84\nupdated_at:\n- 2015-10-10 21:01:36.000000000 Z\n- 2015-12-19 22:54:31.215395602 Z\n'),(249,'User::Brother::DkeInfo',84,'update','84','---\nid: 84\nbrother_id: 84\np_name: Trapped in the closet\nproject: Boiler Room Shelf\npast_pos: \'\'\nbig_id: 55\nresidence_id: 509\np_class: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-08-23 18:26:37.000000000 Z\nmeal_plan: true\n','2015-12-19 22:54:31','---\npast_pos:\n- \'\'\n- Chi\nupdated_at:\n- 2015-08-23 18:26:37.000000000 Z\n- 2015-12-19 22:54:31.307764287 Z\n'),(250,'User::Brother',28,'update','28','---\nid: 28\nuser_id: 28\nfirst_name: Maxwell\nlast_name: Ruston\nphone: \'\'\nemail: \'\'\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"We didn\'t have to make a decision... It was a conclusion\\\" - Cameron Carpenter\"\nhometown: Athens Georgia\ncreated_at: 2015-01-26 06:13:25.000000000 Z\nupdated_at: 2015-10-10 20:03:04.000000000 Z\n','2015-12-23 19:40:21','---\nemail:\n- \'\'\n- mruston@mit.edu\nphone:\n- \'\'\n- \'7066147340\'\nquote:\n- \"\\\"We didn\'t have to make a decision... It was a conclusion\\\" - Cameron Carpenter\"\n- \'\'\nupdated_at:\n- 2015-10-10 20:03:04.000000000 Z\n- 2015-12-23 19:40:21.011710203 Z\n'),(251,'User::Brother',84,'update','84','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"Party at the KAPPA!\\\"\"\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-11-22 03:58:54.000000000 Z\n','2015-12-26 21:53:11','---\nquote:\n- \"\\\"Party at the KAPPA!\\\"\"\n- \'\'\nbio:\n- \'\'\n- \'Sophmore from Northern Virginia who loves Snowboarding and EDM. \'\nupdated_at:\n- 2015-11-22 03:58:54.000000000 Z\n- 2015-12-26 21:53:11.419417680 Z\n'),(252,'User::Brother::MitInfo',86,'update','87','---\nid: 86\nbrother_id: 86\nmit_id: \'\'\nmajors: 2a20\nminors: \'\'\nconcentration: \'\'\nextracurriculars: Basketball\ninterests: \'\'\nurops: \'\'\ninternships: \'\'\nfav_classes: \'\'\nyear: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2015-10-25 16:45:27.000000000 Z\n','2015-12-27 01:10:17','---\nmajors:\n- 2a20\n- \'6\'\nupdated_at:\n- 2015-10-25 16:45:27.000000000 Z\n- 2015-12-27 01:10:17.431678542 Z\n'),(253,'User::Brother::DkeInfo',86,'update','87','---\nid: 86\nbrother_id: 86\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2015-10-25 16:45:27.000000000 Z\nmeal_plan: false\n','2015-12-27 01:10:17','---\nproject:\n- \'\'\n- Second Floor Rejuvenation\nbig_id:\n- 0\n- 64\nupdated_at:\n- 2015-10-25 16:45:27.000000000 Z\n- 2015-12-27 01:10:17.670985916 Z\n'),(254,'User::Brother::MitInfo',89,'update','90','---\nid: 89\nbrother_id: 89\nmit_id: \'\'\nmajors: \'\'\nminors: \'\'\nconcentration: \'\'\nextracurriculars: \'\'\ninterests: \'\'\nurops: \'\'\ninternships: \'\'\nfav_classes: \'\'\nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-10 15:02:58.000000000 Z\n','2015-12-27 02:45:38','---\nmit_id:\n- \'\'\n- \'918118795\'\nmajors:\n- \'\'\n- Course 15 & Course 18\nminors:\n- \'\'\n- Course 14\nconcentration:\n- \'\'\n- Economics\nextracurriculars:\n- \'\'\n- \'Sloan Business Club; Student Athletic Advisory Committee \'\ninterests:\n- \'\'\n- Business, Sports, Stock Market\nurops:\n- \'\'\n- Billion Prices Project\ninternships:\n- \'\'\n- Stanford Health Care; SchoolMint Inc.\nfav_classes:\n- \'\'\n- \'14.01\'\nupdated_at:\n- 2015-12-10 15:02:58.000000000 Z\n- 2015-12-27 02:45:38.669023259 Z\n'),(255,'User::Brother::DkeInfo',89,'update','90','---\nid: 89\nbrother_id: 89\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-10 15:02:58.000000000 Z\nmeal_plan: false\n','2015-12-27 02:45:38','---\np_name:\n- \'\'\n- Pistorius\nproject:\n- \'\'\n- Fixing Pool Table\npast_pos:\n- \'\'\n- Pledge Captain\nbig_id:\n- 0\n- 60\nupdated_at:\n- 2015-12-10 15:02:58.000000000 Z\n- 2015-12-27 02:45:38.736692466 Z\n'),(256,'User::Brother',84,'update','84','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \'Sophmore from Northern Virginia who loves Snowboarding and EDM. \'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-26 21:53:11.000000000 Z\n','2015-12-27 03:33:26','---\nbio:\n- \'Sophmore from Northern Virginia who loves Snowboarding and EDM. \'\n- \'\'\nupdated_at:\n- 2015-12-26 21:53:11.000000000 Z\n- 2015-12-27 03:33:26.777961125 Z\n'),(257,'User::Brother',84,'update','84','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-27 03:33:26.000000000 Z\n','2015-12-27 03:41:03','---\nquote:\n- \'\'\n- \"\\\"I don\'t know all the secrets. If I did I\'d be rich!\\\" ~ Dan West\"\nbio:\n- \'\'\n- \"Current Sophmore Computer Science Major.\\r\\n\\r\\nLove snowboarding and EDM.\\r\\n\\r\\nProud\n lead designer and builder of the DKE stages constructed during the Summer of 2015.\n \\r\\n\\r\\n\"\nupdated_at:\n- 2015-12-27 03:33:26.000000000 Z\n- 2015-12-27 03:41:03.575285870 Z\n'),(258,'User::Brother',84,'update','84','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \"Current Sophmore Computer Science Major.\\r\\n\\r\\nLove snowboarding and EDM.\\r\\n\\r\\nProud\n lead designer and builder of the DKE stages constructed during the Summer of 2015.\n \\r\\n\\r\\n\"\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"I don\'t know all the secrets. If I did I\'d be rich!\\\" ~ Dan West\"\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-27 03:41:03.000000000 Z\n','2015-12-27 03:45:46','---\nbio:\n- \"Current Sophmore Computer Science Major.\\r\\n\\r\\nLove snowboarding and EDM.\\r\\n\\r\\nProud\n lead designer and builder of the DKE stages constructed during the Summer of 2015.\n \\r\\n\\r\\n\"\n- \"Current Sophmore Computer Science Major from Northern Virginia.\\r\\n\\r\\nLove snowboarding\n and EDM.\\r\\n\\r\\nProud lead designer and builder of the DKE stages constructed during\n the Summer of 2015. \\r\\n\\r\\n\"\nupdated_at:\n- 2015-12-27 03:41:03.000000000 Z\n- 2015-12-27 03:45:46.931627363 Z\n'),(259,'User::Brother',84,'update','84','---\nid: 84\nuser_id: 84\nfirst_name: Ryan\nlast_name: Kelly\nphone: \'7039390850\'\nemail: rhkelly@mit.edu\nbio: \"Current Sophmore Computer Science Major from Northern Virginia.\\r\\n\\r\\nLove\n snowboarding and EDM.\\r\\n\\r\\nProud lead designer and builder of the DKE stages constructed\n during the Summer of 2015. \\r\\n\\r\\n\"\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"I don\'t know all the secrets. If I did I\'d be rich!\\\" ~ Dan West\"\nhometown: Fairfax Station, VA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-27 03:45:46.000000000 Z\n','2015-12-27 04:03:17','---\nquote:\n- \"\\\"I don\'t know all the secrets. If I did I\'d be rich!\\\" ~ Dan West\"\n- \"\\\"I don\'t know ALL the secrets. If I did I\'d be rich!\\\" ~ Dan West\"\nupdated_at:\n- 2015-12-27 03:45:46.000000000 Z\n- 2015-12-27 04:03:17.718191880 Z\n'),(260,'User::Brother',98,'update','99','---\nid: 98\nuser_id: 99\nfirst_name: Miguel\nlast_name: Wagner-Bagues\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:51:30.000000000 Z\nupdated_at: 2015-10-10 20:51:31.000000000 Z\n','2015-12-27 19:21:53','---\nlast_name:\n- Wagner-Bagues\n- Wagner\nhometown:\n- \n- El Segundo, CA\nemail:\n- \n- \'\'\nphone:\n- \n- \'\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:51:31.000000000 Z\n- 2015-12-27 19:21:53.957327538 Z\n'),(261,'User::Brother::MitInfo',98,'update','99','---\nid: 98\nbrother_id: 98\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:51:30.000000000 Z\nupdated_at: 2015-10-10 20:51:30.000000000 Z\n','2015-12-27 19:21:54','---\nmit_id:\n- \n- \'\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:51:30.000000000 Z\n- 2015-12-27 19:21:54.441834212 Z\n'),(262,'User::Brother::DkeInfo',98,'update','99','---\nid: 98\nbrother_id: 98\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:51:30.000000000 Z\nupdated_at: 2015-10-10 20:51:30.000000000 Z\nmeal_plan: false\n','2015-12-27 19:21:54','---\np_name:\n- \n- \'\'\nproject:\n- \n- \'\'\npast_pos:\n- \n- \'\'\nbig_id:\n- \n- 0\nupdated_at:\n- 2015-10-10 20:51:30.000000000 Z\n- 2015-12-27 19:21:54.585278658 Z\n'),(263,'User',99,'update','99','---\nid: 99\nuname: mawb\nstatus: 0\ngroup: dkepledge\nchicken: \ncreated_at: 2015-10-10 20:51:31.000000000 Z\nupdated_at: 2015-10-10 20:51:31.000000000 Z\n','2015-12-27 19:21:56','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:51:31.000000000 Z\n- 2015-12-27 19:21:56.285526582 Z\n'),(264,'User::Brother::DkeInfo',98,'update','99','---\nid: 98\nbrother_id: 98\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:51:30.000000000 Z\nupdated_at: 2015-12-27 19:21:54.000000000 Z\nmeal_plan: false\n','2015-12-27 19:22:34','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-27 19:21:54.000000000 Z\n- 2015-12-27 19:22:34.117146766 Z\n'),(265,'User::Brother',92,'update','93','---\nid: 92\nuser_id: 93\nfirst_name: John\nlast_name: Heyer\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-27 22:19:32','---\nhometown:\n- \n- \'\'\nemail:\n- \n- \'\'\nphone:\n- \n- \'\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-27 22:19:32.028022759 Z\n'),(266,'User::Brother::MitInfo',92,'update','93','---\nid: 92\nbrother_id: 92\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-27 22:19:32','---\nmit_id:\n- \n- \'\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-27 22:19:32.118095854 Z\n'),(267,'User::Brother::DkeInfo',92,'update','93','---\nid: 92\nbrother_id: 92\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\nmeal_plan: false\n','2015-12-27 22:19:32','---\np_name:\n- \n- \'\'\nproject:\n- \n- \'\'\npast_pos:\n- \n- \'\'\nbig_id:\n- \n- 0\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-27 22:19:32.164385504 Z\n'),(268,'User',93,'update','93','---\nid: 93\nuname: heyer\nstatus: 0\ngroup: dkepledge\nchicken: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-27 22:19:33','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-27 22:19:33.760190636 Z\n'),(269,'User::Brother',87,'update','88','---\nid: 87\nuser_id: 88\nfirst_name: Logan\nlast_name: Kluis\nphone: \'\'\nemail: kluisl@mit.edu\nbio: \'\'\nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \'\'\nhometown: Chandler\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2015-10-21 02:18:41.000000000 Z\n','2015-12-28 04:08:36','---\nhometown:\n- Chandler\n- Chandler, MN\nupdated_at:\n- 2015-10-21 02:18:41.000000000 Z\n- 2015-12-28 04:08:36.281214296 Z\n'),(270,'User::Brother::DkeInfo',87,'update','88','---\nid: 87\nbrother_id: 87\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2015-10-21 02:18:41.000000000 Z\nmeal_plan: false\n','2015-12-28 04:08:36','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-10-21 02:18:41.000000000 Z\n- 2015-12-28 04:08:36.344647005 Z\n'),(271,'User::Brother::DkeInfo',96,'update','97','---\nid: 96\nbrother_id: 96\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-23 15:26:31.000000000 Z\nmeal_plan: false\n','2015-12-28 04:47:57','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-10-23 15:26:31.000000000 Z\n- 2015-12-28 04:47:57.424394189 Z\n'),(272,'User::Brother',96,'update','97','---\nid: 96\nuser_id: 97\nfirst_name: Benjamin\nlast_name: Boldt\nphone: \'3195215918\'\nemail: boldt@mit.edu\nbio: \'\'\nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \'\'\nhometown: \'\'\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-23 15:26:31.000000000 Z\n','2015-12-28 04:52:05','---\nhometown:\n- \'\'\n- Cedar Rapids, Iowa\nupdated_at:\n- 2015-10-23 15:26:31.000000000 Z\n- 2015-12-28 04:52:05.438066435 Z\n'),(273,'User::Brother::DkeInfo',96,'update','97','---\nid: 96\nbrother_id: 96\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-28 04:47:57.000000000 Z\nmeal_plan: false\n','2015-12-28 04:52:05','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-28 04:47:57.000000000 Z\n- 2015-12-28 04:52:05.452678679 Z\n'),(274,'User::Brother::DkeInfo',93,'update','94','---\nid: 93\nbrother_id: 93\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-30 19:24:36.000000000 Z\nmeal_plan: false\n','2015-12-28 16:10:34','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-10-30 19:24:36.000000000 Z\n- 2015-12-28 16:10:34.680197121 Z\n'),(275,'User::Brother::DkeInfo',93,'update','94','---\nid: 93\nbrother_id: 93\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-28 16:10:34.000000000 Z\nmeal_plan: false\n','2015-12-28 16:11:31','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-28 16:10:34.000000000 Z\n- 2015-12-28 16:11:31.455841562 Z\n'),(276,'User::Brother::DkeInfo',93,'update','94','---\nid: 93\nbrother_id: 93\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-28 16:11:31.000000000 Z\nmeal_plan: false\n','2015-12-28 16:17:19','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-28 16:11:31.000000000 Z\n- 2015-12-28 16:17:19.159864049 Z\n'),(277,'User::Brother::DkeInfo',93,'update','94','---\nid: 93\nbrother_id: 93\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-28 16:17:19.000000000 Z\nmeal_plan: false\n','2015-12-28 16:26:18','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-28 16:17:19.000000000 Z\n- 2015-12-28 16:26:18.827961401 Z\n'),(278,'User::Brother',91,'update','92','---\nid: 91\nuser_id: 92\nfirst_name: Mitchell\nlast_name: Maisel\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 20:34:14','---\nhometown:\n- \n- Newtown, PA\nemail:\n- \n- maiselm@mit.edu\nphone:\n- \n- \'2154784463\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 20:34:14.769797614 Z\n'),(279,'User::Brother::MitInfo',91,'update','92','---\nid: 91\nbrother_id: 91\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 20:34:15','---\nmit_id:\n- \n- \'921841301\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 20:34:15.026464957 Z\n'),(280,'User::Brother::DkeInfo',91,'update','92','---\nid: 91\nbrother_id: 91\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\nmeal_plan: false\n','2015-12-28 20:34:15','---\np_name:\n- \n- Rope\nproject:\n- \n- Black Lights\npast_pos:\n- \n- \'\'\nbig_id:\n- \n- 85\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 20:34:15.051651396 Z\n'),(281,'User',92,'update','92','---\nid: 92\nuname: maiselm\nstatus: 0\ngroup: dkepledge\nchicken: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 20:34:16','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 20:34:16.694123851 Z\n'),(282,'User::Brother::MitInfo',91,'update','92','---\nid: 91\nbrother_id: 91\nmit_id: \'921841301\'\nmajors: \'\'\nminors: \'\'\nconcentration: \'\'\nextracurriculars: \'\'\ninterests: \'\'\nurops: \'\'\ninternships: \'\'\nfav_classes: \'\'\nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-28 20:34:15.000000000 Z\n','2015-12-28 20:35:16','---\nmajors:\n- \'\'\n- Undecided\nextracurriculars:\n- \'\'\n- MIT Football\nupdated_at:\n- 2015-12-28 20:34:15.000000000 Z\n- 2015-12-28 20:35:16.983089495 Z\n'),(283,'User::Brother',97,'update','98','---\nid: 97\nuser_id: 98\nfirst_name: Andrew\nlast_name: DeNucci\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 21:03:18','---\nhometown:\n- \n- Newton, MA\nemail:\n- \n- \'\'\nphone:\n- \n- \'\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 21:03:18.649261510 Z\n'),(284,'User::Brother::MitInfo',97,'update','98','---\nid: 97\nbrother_id: 97\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 21:03:18','---\nmit_id:\n- \n- \'\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 21:03:18.734095238 Z\n'),(285,'User::Brother::DkeInfo',97,'update','98','---\nid: 97\nbrother_id: 97\np_name: \nproject: \npast_pos: \nbig_id: 80\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-12-02 01:51:05.000000000 Z\nmeal_plan: false\n','2015-12-28 21:03:18','---\np_name:\n- \n- \'\'\nproject:\n- \n- \'\'\npast_pos:\n- \n- \'\'\nupdated_at:\n- 2015-12-02 01:51:05.000000000 Z\n- 2015-12-28 21:03:18.745650757 Z\n'),(286,'User',98,'update','98','---\nid: 98\nuname: adenucci\nstatus: 0\ngroup: dkepledge\nchicken: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2015-12-28 21:03:18','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2015-12-28 21:03:18.803978421 Z\n'),(287,'User::Brother::MitInfo',85,'update','85','---\nid: 85\nbrother_id: 85\nmit_id: \'\'\nmajors: \'\'\nminors: \'\'\nconcentration: \'\'\nextracurriculars: \'\'\ninterests: \'\'\nurops: \'\'\ninternships: \'\'\nfav_classes: \'\'\nyear: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-02-15 23:28:26.000000000 Z\n','2015-12-31 18:17:44','---\nmajors:\n- \'\'\n- 2A\nconcentration:\n- \'\'\n- \'15\'\nfav_classes:\n- \'\'\n- 2.00B\nupdated_at:\n- 2015-02-15 23:28:26.000000000 Z\n- 2015-12-31 18:17:44.091472407 Z\n'),(288,'User::Brother',85,'update','85','---\nid: 85\nuser_id: 85\nfirst_name: Matthew\nlast_name: Nicolai\nphone: \'\'\nemail: \'\'\nbio: \'follow me: @matt_nicolai\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"How do you get so many favorites on your tweets?\\\"-Everyone\"\nhometown: Northport, NY\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-02-15 23:28:26.000000000 Z\n','2015-12-31 18:26:22','---\nquote:\n- \"\\\"How do you get so many favorites on your tweets?\\\"-Everyone\"\n- \'\'\nupdated_at:\n- 2015-02-15 23:28:26.000000000 Z\n- 2015-12-31 18:26:22.190930955 Z\n'),(289,'User::Brother::DkeInfo',85,'update','85','---\nid: 85\nbrother_id: 85\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 60\nresidence_id: 509\np_class: 2018\ncreated_at: 2015-01-26 06:13:29.000000000 Z\nupdated_at: 2015-08-23 18:26:41.000000000 Z\nmeal_plan: true\n','2015-12-31 18:26:22','---\npast_pos:\n- \'\'\n- IM Chair, Rush Chair\nupdated_at:\n- 2015-08-23 18:26:41.000000000 Z\n- 2015-12-31 18:26:22.442931048 Z\n'),(290,'User::Brother',85,'update','85','---\nid: 85\nuser_id: 85\nfirst_name: Matthew\nlast_name: Nicolai\nphone: \'\'\nemail: \'\'\nbio: \'follow me: @matt_nicolai\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Northport, NY\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-31 18:26:22.000000000 Z\n','2015-12-31 18:27:02','---\nbio:\n- \'follow me: @matt_nicolai\'\n- \'\'\nupdated_at:\n- 2015-12-31 18:26:22.000000000 Z\n- 2015-12-31 18:27:02.230866024 Z\n'),(291,'User::Brother',85,'update','85','---\nid: 85\nuser_id: 85\nfirst_name: Matthew\nlast_name: Nicolai\nphone: \'\'\nemail: \'\'\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Northport, NY\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-31 18:27:02.000000000 Z\n','2015-12-31 18:27:23','---\nfirst_name:\n- Matthew\n- Matt\nupdated_at:\n- 2015-12-31 18:27:02.000000000 Z\n- 2015-12-31 18:27:23.983383923 Z\n'),(292,'User::Brother',85,'update','85','---\nid: 85\nuser_id: 85\nfirst_name: Matt\nlast_name: Nicolai\nphone: \'\'\nemail: \'\'\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Northport, NY\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-31 18:27:23.000000000 Z\n','2015-12-31 18:27:36','---\nfirst_name:\n- Matt\n- Matthew\nupdated_at:\n- 2015-12-31 18:27:23.000000000 Z\n- 2015-12-31 18:27:36.332390418 Z\n'),(293,'User::Brother',85,'update','85','---\nid: 85\nuser_id: 85\nfirst_name: Matthew\nlast_name: Nicolai\nphone: \'\'\nemail: \'\'\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Northport, NY\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-12-31 18:27:36.000000000 Z\n','2015-12-31 18:30:20','---\nquote:\n- \'\'\n- \"\\\"I\'m a sophomore but don\'t get it twisted, there\'s nothing soft about me\\\" -Michael\n DeLaus\"\nupdated_at:\n- 2015-12-31 18:27:36.000000000 Z\n- 2015-12-31 18:30:20.145061345 Z\n'),(294,'User::Brother::MitInfo',85,'update','85','---\nid: 85\nbrother_id: 85\nmit_id: \'\'\nmajors: 2A\nminors: \'\'\nconcentration: \'15\'\nextracurriculars: \'\'\ninterests: \'\'\nurops: \'\'\ninternships: \'\'\nfav_classes: 2.00B\nyear: 2018\ncreated_at: 2015-01-26 06:13:28.000000000 Z\nupdated_at: 2015-12-31 18:17:44.000000000 Z\n','2015-12-31 18:33:03','---\nextracurriculars:\n- \'\'\n- \'Madden \'\'12 Enthusiast \'\nupdated_at:\n- 2015-12-31 18:17:44.000000000 Z\n- 2015-12-31 18:33:03.046314428 Z\n'),(295,'User::Shadow',0,'update','42','---\nuname: nanaya\nuser_id: 68\npasswd: \"$apr1$9mTMTkV2$WNmcK1C9b3YsPXwrumo.U1\"\ncreated_at: 2015-05-25 03:45:27.000000000 Z\nupdated_at: 2015-05-25 03:45:27.000000000 Z\n','2016-01-03 15:06:52','---\npasswd:\n- \"$apr1$9mTMTkV2$WNmcK1C9b3YsPXwrumo.U1\"\n- \"$apr1$2iDMXUCq$N6YPFrqUOtXq325ZEVZQD/\"\nupdated_at:\n- 2015-05-25 03:45:27.000000000 Z\n- 2016-01-03 15:06:52.009731243 Z\n'),(296,'User::Brother',68,'update','42','---\nid: 68\nuser_id: 68\nfirst_name: Nicholas\nlast_name: Anaya\nphone: \'2037334777\'\nemail: \'\'\nbio: Senior in courses 14/15 with a minor in 18.\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'Fortune favors the audacious \'\nhometown: Brookfield, Connecticut\ncreated_at: 2015-01-26 06:13:26.000000000 Z\nupdated_at: 2015-01-26 07:20:57.000000000 Z\n','2016-01-03 15:06:52','---\nuser_id:\n- 68\n- \nupdated_at:\n- 2015-01-26 07:20:57.000000000 Z\n- 2016-01-03 15:06:52.546154432 Z\n'),(297,'User::Brother',68,'update','42','---\nid: 68\nuser_id: \nfirst_name: Nicholas\nlast_name: Anaya\nphone: \'2037334777\'\nemail: \'\'\nbio: Senior in courses 14/15 with a minor in 18.\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'Fortune favors the audacious \'\nhometown: Brookfield, Connecticut\ncreated_at: 2015-01-26 06:13:26.000000000 Z\nupdated_at: 2016-01-03 15:06:52.000000000 Z\n','2016-01-03 15:06:52','---\nuser_id:\n- \n- 68\nupdated_at:\n- 2016-01-03 15:06:52.000000000 Z\n- 2016-01-03 15:06:52.595278325 Z\n'),(298,'User',78,'update','77','---\nid: 78\nuname: mdelaus\nstatus: 1\ngroup: dkeactive\nchicken: \'\'\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-04-02 06:30:46.000000000 Z\n','2016-01-04 20:24:43','---\nchicken:\n- \'\'\n- broporn\nupdated_at:\n- 2015-04-02 06:30:46.000000000 Z\n- 2016-01-04 20:24:43.844696696 Z\n'),(299,'User::Brother',78,'update','77','---\nid: 78\nuser_id: 78\nfirst_name: Michael\nlast_name: Delaus\nphone: \'9784301231\'\nemail: mdelaus@mit.edu\nbio: From Andover, Mass. Sophomore in DKE. Big fan of football and skiing\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"You guys gotta scram!!\\\" - Ryan Kelly\"\nhometown: Andover, MA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-10-05 05:22:09.000000000 Z\n','2016-01-04 20:24:44','---\nuser_id:\n- 78\n- \nupdated_at:\n- 2015-10-05 05:22:09.000000000 Z\n- 2016-01-04 20:24:44.644986445 Z\n'),(300,'User::Brother',78,'update','77','---\nid: 78\nuser_id: \nfirst_name: Michael\nlast_name: Delaus\nphone: \'9784301231\'\nemail: mdelaus@mit.edu\nbio: From Andover, Mass. Sophomore in DKE. Big fan of football and skiing\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \"\\\"You guys gotta scram!!\\\" - Ryan Kelly\"\nhometown: Andover, MA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2016-01-04 20:24:44.000000000 Z\n','2016-01-04 20:24:44','---\nuser_id:\n- \n- 78\nupdated_at:\n- 2016-01-04 20:24:44.000000000 Z\n- 2016-01-04 20:24:44.797613633 Z\n'),(301,'User::Brother',90,'update','91','---\nid: 90\nuser_id: 91\nfirst_name: Udgam\nlast_name: Goyal\nphone: \nemail: \nbio: \nactivities: \nhobbies: \npro_team: \ncollege_team: \nmovie: \nquote: \nhometown: \ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2016-01-08 03:18:20','---\nhometown:\n- \n- \'\'\nemail:\n- \n- \'\'\nphone:\n- \n- \'\'\nquote:\n- \n- \'\'\nbio:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2016-01-08 03:18:20.980550671 Z\n'),(302,'User::Brother::MitInfo',90,'update','91','---\nid: 90\nbrother_id: 90\nmit_id: \nmajors: \nminors: \nconcentration: \nextracurriculars: \ninterests: \nurops: \ninternships: \nfav_classes: \nyear: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2016-01-08 03:18:22','---\nmit_id:\n- \n- \'\'\nmajors:\n- \n- \'\'\nminors:\n- \n- \'\'\nconcentration:\n- \n- \'\'\nextracurriculars:\n- \n- \'\'\ninterests:\n- \n- \'\'\nurops:\n- \n- \'\'\ninternships:\n- \n- \'\'\nfav_classes:\n- \n- \'\'\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2016-01-08 03:18:22.444020751 Z\n'),(303,'User::Brother::DkeInfo',90,'update','91','---\nid: 90\nbrother_id: 90\np_name: \nproject: \npast_pos: \nbig_id: \nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\nmeal_plan: false\n','2016-01-08 03:18:22','---\np_name:\n- \n- \'\'\nproject:\n- \n- \'\'\npast_pos:\n- \n- \'\'\nbig_id:\n- \n- 0\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2016-01-08 03:18:22.520805576 Z\n'),(304,'User',91,'update','91','---\nid: 91\nuname: udgam\nstatus: 0\ngroup: dkepledge\nchicken: broporn\ncreated_at: 2015-10-10 20:08:00.000000000 Z\nupdated_at: 2015-10-10 20:08:00.000000000 Z\n','2016-01-08 03:18:24','---\nstatus:\n- 0\n- 1\nupdated_at:\n- 2015-10-10 20:08:00.000000000 Z\n- 2016-01-08 03:18:24.602039064 Z\n'),(305,'User::Brother',73,'update','73','---\nid: 73\nuser_id: 73\nfirst_name: Robert\nlast_name: DiSanto\nphone: \'\'\nemail: \'\'\nbio: \'\'\nactivities: \'\'\nhobbies: \'\'\npro_team: \'\'\ncollege_team: \'\'\nmovie: \'\'\nquote: \'\'\nhometown: Havertown, PA\ncreated_at: 2015-01-26 06:13:27.000000000 Z\nupdated_at: 2015-08-31 04:25:49.000000000 Z\n','2016-01-11 06:19:34','---\nquote:\n- \'\'\n- \"\\\"Nobody makes me bleed my own blood.\\\" - White Goodman\"\nupdated_at:\n- 2015-08-31 04:25:49.000000000 Z\n- 2016-01-11 06:19:34.347795552 Z\n'),(306,'User::Brother::DkeInfo',87,'update','88','---\nid: 87\nbrother_id: 87\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2015-12-28 04:08:36.000000000 Z\nmeal_plan: false\n','2016-01-14 04:33:28','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2015-12-28 04:08:36.000000000 Z\n- 2016-01-14 04:33:28.149304253 Z\n'),(307,'User::Brother::DkeInfo',87,'update','88','---\nid: 87\nbrother_id: 87\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2016-01-14 04:33:28.000000000 Z\nmeal_plan: false\n','2016-01-14 04:34:05','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2016-01-14 04:33:28.000000000 Z\n- 2016-01-14 04:34:05.623305340 Z\n'),(308,'User::Brother::DkeInfo',87,'update','88','---\nid: 87\nbrother_id: 87\np_name: \'\'\nproject: \'\'\npast_pos: \'\'\nbig_id: 0\nresidence_id: \np_class: 2019\ncreated_at: 2015-10-10 19:21:50.000000000 Z\nupdated_at: 2016-01-14 04:34:05.000000000 Z\nmeal_plan: false\n','2016-01-14 04:36:33','---\nbig_id:\n- 0\n- 0\nupdated_at:\n- 2016-01-14 04:34:05.000000000 Z\n- 2016-01-14 04:36:33.128728148 Z\n'),(309,'User::Shadow',0,'create','58',NULL,'2016-01-18 23:22:09','---\nuname:\n- \n- eklinkha\npasswd:\n- \n- \"$apr1$WzcSFswE$8okQae5Nvnvx4bUmjnNKj0\"\nuser_id:\n- \n- 58\ncreated_at:\n- \n- &1 2016-01-18 23:22:09.507894840 Z\nupdated_at:\n- \n- *1\n'),(310,'User::Shadow',0,'create','23',NULL,'2016-01-22 03:59:05','---\nuname:\n- \n- jlara\npasswd:\n- \n- \"$apr1$c7KUHEUy$6QlEKVA8UV8XQZ2n9UemR.\"\nuser_id:\n- \n- 23\ncreated_at:\n- \n- &1 2016-01-22 03:59:05.519022185 Z\nupdated_at:\n- \n- *1\n'),(311,'Chapter::PublicPage',3,'update','42','---\nid: 3\npname: summer_housing\nofficer_id: 13\ntitle: \'false\'\ncontent: \"<p><span style=\\\"font-size:36px\\\">We are <u><strong>Full</strong></u> for\n Summer 2015.</span></p>\\r\\n\\r\\n<p>Delta Kappa Epsilon is located at 403 Memorial\n Drive in Cambridge, MA on the MIT campus. We are conveniently located a short walking\n distance from both local bus and subway public transportation systems. During the\n summer of 2015 our rent period will be from Sunday, May 24 until Wednesday,\n August 12.</p>\\r\\n\\r\\n<p>We are currently renting out 4 types of rooms: singles,\n doubles, triples and one quad. Rates for each of the following room types are as\n follows: singles are $2600, doubles are $2000, triples are $1800 and the quad is\n $1500. These prices are per person for the entire 11 week renting period. Both singles\n and doubles are one room, where singles are about 2/3 the size of doubles . Triples\n are essentially two-room suites, containing a front room that typically serves as\n a public area and a back room that is often used as a bedroom. These rooms contain\n one door that is located in the front room and one door connecting the front room\n to the back room. The quad is approximately the size of two large doubles and is\n one room</p>\\r\\n\\r\\n<p>Our house contains five-stories, with residential rooms available\n on the third, fourth, and fifth floors. Each residential floor has one restroom\n outfitted with three sinks, one full size mirror, one urinal, one stall, and one\n shower. The first floor contains our full size and fully-equipped kitchen, including\n industrial sized refrigerator and freezer, which are available for lessee use. We\n also have a laundry room available with both a new high efficiency washer and dryer\n at no additional charge. The second floor contains the main common areas of the\n house: a large dining room, a pantry equipped with dinnerware for general use and\n a dish washer, a living room with sofas, and a library full of books suitable for\n both leisure and education. Our house is secured by a front door system that requires\n a code to enter, and each residential room is individually lockable to help ensure\n the safety of you and your belongings. Our prices include all utilities and rent\n for the entire renting period specified above. Additional amenities provided at\n no further cost include high speed wireless and wired internet and DirecTV service\n with premium movie channels. Each lessee is provided a full or twin extra long mattress\n and bed frame. Most rooms are furnished with sofas, dressers, desks, coffee tables,\n office chairs, lamps and air conditioning units. Other furniture and appliances\n can be found around the house and used to furnish one’s room on a first-come-first-serve\n basis. </p>\\r\\n\"\ncreated_at: 2015-01-26 06:13:30.000000000 Z\nupdated_at: 2015-06-01 16:58:21.000000000 Z\n','2016-01-26 02:28:27','---\ntitle:\n- \'false\'\n- \'true\'\nupdated_at:\n- 2015-06-01 16:58:21.000000000 Z\n- 2016-01-26 02:28:27.984973696 Z\n'),(312,'Chapter::PublicPage',3,'update','42','---\nid: 3\npname: summer_housing\nofficer_id: 13\ntitle: \'true\'\ncontent: \"<p><span style=\\\"font-size:36px\\\">We are <u><strong>Full</strong></u> for\n Summer 2015.</span></p>\\r\\n\\r\\n<p>Delta Kappa Epsilon is located at 403 Memorial\n Drive in Cambridge, MA on the MIT campus. We are conveniently located a short walking\n distance from both local bus and subway public transportation systems. During the\n summer of 2015 our rent period will be from Sunday, May 24 until Wednesday,\n August 12.</p>\\r\\n\\r\\n<p>We are currently renting out 4 types of rooms: singles,\n doubles, triples and one quad. Rates for each of the following room types are as\n follows: singles are $2600, doubles are $2000, triples are $1800 and the quad is\n $1500. These prices are per person for the entire 11 week renting period. Both singles\n and doubles are one room, where singles are about 2/3 the size of doubles . Triples\n are essentially two-room suites, containing a front room that typically serves as\n a public area and a back room that is often used as a bedroom. These rooms contain\n one door that is located in the front room and one door connecting the front room\n to the back room. The quad is approximately the size of two large doubles and is\n one room</p>\\r\\n\\r\\n<p>Our house contains five-stories, with residential rooms available\n on the third, fourth, and fifth floors. Each residential floor has one restroom\n outfitted with three sinks, one full size mirror, one urinal, one stall, and one\n shower. The first floor contains our full size and fully-equipped kitchen, including\n industrial sized refrigerator and freezer, which are available for lessee use. We\n also have a laundry room available with both a new high efficiency washer and dryer\n at no additional charge. The second floor contains the main common areas of the\n house: a large dining room, a pantry equipped with dinnerware for general use and\n a dish washer, a living room with sofas, and a library full of books suitable for\n both leisure and education. Our house is secured by a front door system that requires\n a code to enter, and each residential room is individually lockable to help ensure\n the safety of you and your belongings. Our prices include all utilities and rent\n for the entire renting period specified above. Additional amenities provided at\n no further cost include high speed wireless and wired internet and DirecTV service\n with premium movie channels. Each lessee is provided a full or twin extra long mattress\n and bed frame. Most rooms are furnished with sofas, dressers, desks, coffee tables,\n office chairs, lamps and air conditioning units. Other furniture and appliances\n can be found around the house and used to furnish one’s room on a first-come-first-serve\n basis. </p>\\r\\n\"\ncreated_at: 2015-01-26 06:13:30.000000000 Z\nupdated_at: 2016-01-26 02:28:27.000000000 Z\n','2016-01-26 02:28:51','---\ntitle:\n- \'true\'\n- \'false\'\nupdated_at:\n- 2016-01-26 02:28:27.000000000 Z\n- 2016-01-26 02:28:51.907842617 Z\n'),(313,'Chapter::PublicPage',3,'update','77','---\nid: 3\npname: summer_housing\nofficer_id: 13\ntitle: \'false\'\ncontent: \"<p><span style=\\\"font-size:36px\\\">We are <u><strong>Full</strong></u> for\n Summer 2015.</span></p>\\r\\n\\r\\n<p>Delta Kappa Epsilon is located at 403 Memorial\n Drive in Cambridge, MA on the MIT campus. We are conveniently located a short walking\n distance from both local bus and subway public transportation systems. During the\n summer of 2015 our rent period will be from Sunday, May 24 until Wednesday,\n August 12.</p>\\r\\n\\r\\n<p>We are currently renting out 4 types of rooms: singles,\n doubles, triples and one quad. Rates for each of the following room types are as\n follows: singles are $2600, doubles are $2000, triples are $1800 and the quad is\n $1500. These prices are per person for the entire 11 week renting period. Both singles\n and doubles are one room, where singles are about 2/3 the size of doubles . Triples\n are essentially two-room suites, containing a front room that typically serves as\n a public area and a back room that is often used as a bedroom. These rooms contain\n one door that is located in the front room and one door connecting the front room\n to the back room. The quad is approximately the size of two large doubles and is\n one room</p>\\r\\n\\r\\n<p>Our house contains five-stories, with residential rooms available\n on the third, fourth, and fifth floors. Each residential floor has one restroom\n outfitted with three sinks, one full size mirror, one urinal, one stall, and one\n shower. The first floor contains our full size and fully-equipped kitchen, including\n industrial sized refrigerator and freezer, which are available for lessee use. We\n also have a laundry room available with both a new high efficiency washer and dryer\n at no additional charge. The second floor contains the main common areas of the\n house: a large dining room, a pantry equipped with dinnerware for general use and\n a dish washer, a living room with sofas, and a library full of books suitable for\n both leisure and education. Our house is secured by a front door system that requires\n a code to enter, and each residential room is individually lockable to help ensure\n the safety of you and your belongings. Our prices include all utilities and rent\n for the entire renting period specified above. Additional amenities provided at\n no further cost include high speed wireless and wired internet and DirecTV service\n with premium movie channels. Each lessee is provided a full or twin extra long mattress\n and bed frame. Most rooms are furnished with sofas, dressers, desks, coffee tables,\n office chairs, lamps and air conditioning units. Other furniture and appliances\n can be found around the house and used to furnish one’s room on a first-come-first-serve\n basis. </p>\\r\\n\"\ncreated_at: 2015-01-26 06:13:30.000000000 Z\nupdated_at: 2016-01-26 02:28:51.000000000 Z\n','2016-01-27 00:43:23','---\ntitle:\n- \'false\'\n- \'true\'\nupdated_at:\n- 2016-01-26 02:28:51.000000000 Z\n- 2016-01-27 00:43:23.523076078 Z\n'),(314,'Chapter::PublicPage',3,'update','77','---\nid: 3\npname: summer_housing\nofficer_id: 13\ntitle: \'true\'\ncontent: \"<p><span style=\\\"font-size:36px\\\">We are <u><strong>Full</strong></u> for\n Summer 2015.</span></p>\\r\\n\\r\\n<p>Delta Kappa Epsilon is located at 403 Memorial\n Drive in Cambridge, MA on the MIT campus. We are conveniently located a short walking\n distance from both local bus and subway public transportation systems. During the\n summer of 2015 our rent period will be from Sunday, May 24 until Wednesday,\n August 12.</p>\\r\\n\\r\\n<p>We are currently renting out 4 types of rooms: singles,\n doubles, triples and one quad. Rates for each of the following room types are as\n follows: singles are $2600, doubles are $2000, triples are $1800 and the quad is\n $1500. These prices are per person for the entire 11 week renting period. Both singles\n and doubles are one room, where singles are about 2/3 the size of doubles . Triples\n are essentially two-room suites, containing a front room that typically serves as\n a public area and a back room that is often used as a bedroom. These rooms contain\n one door that is located in the front room and one door connecting the front room\n to the back room. The quad is approximately the size of two large doubles and is\n one room</p>\\r\\n\\r\\n<p>Our house contains five-stories, with residential rooms available\n on the third, fourth, and fifth floors. Each residential floor has one restroom\n outfitted with three sinks, one full size mirror, one urinal, one stall, and one\n shower. The first floor contains our full size and fully-equipped kitchen, including\n industrial sized refrigerator and freezer, which are available for lessee use. We\n also have a laundry room available with both a new high efficiency washer and dryer\n at no additional charge. The second floor contains the main common areas of the\n house: a large dining room, a pantry equipped with dinnerware for general use and\n a dish washer, a living room with sofas, and a library full of books suitable for\n both leisure and education. Our house is secured by a front door system that requires\n a code to enter, and each residential room is individually lockable to help ensure\n the safety of you and your belongings. Our prices include all utilities and rent\n for the entire renting period specified above. Additional amenities provided at\n no further cost include high speed wireless and wired internet and DirecTV service\n with premium movie channels. Each lessee is provided a full or twin extra long mattress\n and bed frame. Most rooms are furnished with sofas, dressers, desks, coffee tables,\n office chairs, lamps and air conditioning units. Other furniture and appliances\n can be found around the house and used to furnish one’s room on a first-come-first-serve\n basis. </p>\\r\\n\"\ncreated_at: 2015-01-26 06:13:30.000000000 Z\nupdated_at: 2016-01-27 00:43:23.000000000 Z\n','2016-01-27 01:01:32','---\ntitle:\n- \'true\'\n- \'false\'\nupdated_at:\n- 2016-01-27 00:43:23.000000000 Z\n- 2016-01-27 01:01:32.602446702 Z\n');
/*!40000 ALTER TABLE `versions` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2016-01-29 12:20:09