forked from ARISGames/aris-android-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAris iOS Ecopod initial game load+start.html
1002 lines (997 loc) · 709 KB
/
Aris iOS Ecopod initial game load+start.html
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
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
UUUU Select game from list (click)
===================================
2015-11-19 10:11:52.934 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getPlayerPlayedGame/
2015-11-19 10:11:52.935 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":"7279"}
2015-11-19 10:11:53.632 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:11:53.781 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getPlayerPlayedGame/ (0.844161)
2015-11-19 10:11:53.782 ARIS[4136:2437780] Fin async data:
{"data":{"game_id":"7279","has_played":true},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:11:53.784 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_PLAYED_GAME_RECEIVED
2015-11-19 10:11:53.786 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_PLAYED_GAME_AVAILABLE
==== Resume Game (Click)
====================================
2015-11-19 10:12:47.076 ARIS[4136:2437780] DefaultsState : Saving
2015-11-19 10:12:47.079 ARIS[4136:2437780] NSNotification: MODEL_GAME_CHOSEN
2015-11-19 10:17:33.774 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.scenes.getScenesForGame/
2015-11-19 10:17:33.775 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.777 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.groups.getGroupsForGame/
2015-11-19 10:17:33.778 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.780 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.plaques.getPlaquesForGame/
2015-11-19 10:17:33.781 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.783 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.items.getItemsForGame/
2015-11-19 10:17:33.786 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.792 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogsForGame/
2015-11-19 10:17:33.793 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.796 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogCharactersForGame/
2015-11-19 10:17:33.797 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.800 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogScriptsForGame/
2015-11-19 10:17:33.801 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.805 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogOptionsForGame/
2015-11-19 10:17:33.806 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.810 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.web_pages.getWebPagesForGame/
2015-11-19 10:17:33.811 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.813 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.notes.getNotesForGame/
2015-11-19 10:17:33.814 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.819 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.note_comments.getNoteCommentsForGame/
2015-11-19 10:17:33.820 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.822 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.tags.getTagsForGame/
2015-11-19 10:17:33.823 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.825 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.tags.getObjectTagsForGame/
2015-11-19 10:17:33.826 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.829 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.events.getEventsForGame/
2015-11-19 10:17:33.835 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.839 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementRootPackagesForGame/
2015-11-19 10:17:33.840 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.843 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementAndPackagesForGame/
2015-11-19 10:17:33.844 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.846 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementAtomsForGame/
2015-11-19 10:17:33.847 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.850 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.triggers.getTriggersForGame/
2015-11-19 10:17:33.851 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.856 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.factories.getFactoriesForGame/
2015-11-19 10:17:33.857 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.859 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.overlays.getOverlaysForGame/
2015-11-19 10:17:33.860 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.862 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.instances.getInstancesForGame/
2015-11-19 10:17:33.863 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"owner_id":0}
2015-11-19 10:17:33.867 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.tabs.getTabsForGame/
2015-11-19 10:17:33.867 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.870 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.quests.getQuestsForGame/
2015-11-19 10:17:33.871 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.874 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.users.getUsersForGame/
2015-11-19 10:17:33.875 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.877 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.media.getMediaForGame/
2015-11-19 10:17:33.878 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:33.905 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:17:34.324 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:17:34.494 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.plaques.getPlaquesForGame/ (0.712407)
2015-11-19 10:17:34.497 ARIS[4136:2437780] Fin async data:
{"data":[{"plaque_id":"27833","game_id":"7279","name":"Exit and Reset","description":"<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\n ARIS.exitGame(); \/\/Exits to the game picker\n}\n<\/script>","icon_media_id":"159228","media_id":"0","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"27839","game_id":"7279","name":"Awarded 2 Items","description":"Thanks for coming with me. I\u2019m so glad you\u2019re ready. Before she left, the RA gave me some stuff. I can\u2019t possibly carry to all in addition to all my own stuff. Which do you want?","icon_media_id":"0","media_id":"0","event_package_id":"31198","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"27842","game_id":"7279","name":"S1.Pa.P1 Complete","description":"We only have thirty minutes to gather what we need, and I have to get my own things together, too. The RA did tell me that the items we need are all over campus. Look on this map. See? There are different items at each location. Think through what you want to bring with you. Remember, you can only take eight things with you. Choose wisely. Good luck and stay alive! I hope I will see you again. Oh! If you see a woman named Charlie, tell her to meet me at the Pioneer Woman.","icon_media_id":"0","media_id":"0","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"29063","game_id":"7279","name":"Knock Knock","description":"You hear a loud knock at the door.\n<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\nARIS.prepareMedia(160829);\nARIS.playMedia(160829);\n}\n<\/script>","icon_media_id":"159228","media_id":"0","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30537","game_id":"7279","name":"Completed Day 2","description":"Congratulations! You've unlocked Year 1. Find Year 1 on the map and continue your journey.\n<script type=\"text\/javascript\">\n\/\/Level Complete sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5d22b7653570e3db9338590f3b2f2655.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30538","game_id":"7279","name":"Completed Day 1","description":"Congratulations! You've unlocked Day 2 of your journey. Find Day 2 on the map to continue.\n<script type=\"text\/javascript\">\n\/\/Level Complete sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5d22b7653570e3db9338590f3b2f2655.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30709","game_id":"7279","name":"Completed Year 2","description":"You've completed Year 2. See where the journey has taken you! Find Year 5 on the map to start.\n\n<script type=\"text\/javascript\">\n\/\/Level Complete sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5d22b7653570e3db9338590f3b2f2655.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30712","game_id":"7279","name":"Completed Year 1","description":"Congratulations! You've completed Year 1. See where the journey takes you next! Find Year 2 on the map to begin.\n\n<script type=\"text\/javascript\">\n\/\/Level Complete sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5d22b7653570e3db9338590f3b2f2655.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30713","game_id":"7279","name":"Evacuate now","description":"You've gathered all your items and you're ready to evacuate the city.","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30725","game_id":"7279","name":"Congratulations!","description":"You survived the Georgia Flu and the aftermath.\n\n<script type=\"text\/javascript\">\n\/\/Applause sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris6a8f91b7c18895e75c676cbc9337fa24.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","icon_media_id":"159228","media_id":"195432","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30727","game_id":"7279","name":"Guitar","description":"","icon_media_id":"180123","media_id":"180129","event_package_id":"33839","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30729","game_id":"7279","name":"Rifle","description":"","icon_media_id":"180126","media_id":"180134","event_package_id":"33840","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30731","game_id":"7279","name":"Hazelnuts","description":"","icon_media_id":"176749","media_id":"176975","event_package_id":"33826","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30732","game_id":"7279","name":"Recorder","description":"You trade your 10 Hazelnuts for the Recorder.","icon_media_id":"0","media_id":"0","event_package_id":"33828","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30733","game_id":"7279","name":"Candles","description":"You found some Candles","icon_media_id":"0","media_id":"0","event_package_id":"33830","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30734","game_id":"7279","name":"Novel","description":"You found a novel!","icon_media_id":"176755","media_id":"190313","event_package_id":"33833","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30737","game_id":"7279","name":"Graphic Novel","description":"","icon_media_id":"176746","media_id":"190311","event_package_id":"33837","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"30739","game_id":"7279","name":"Solar Cell Phone Charger","description":"","icon_media_id":"176758","media_id":"190309","event_package_id":"33835","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31255","game_id":"7279","name":"Give Away First Aid Kit","description":"","icon_media_id":"160685","media_id":"190303","event_package_id":"34404","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31257","game_id":"7279","name":"Give Away Water","description":"","icon_media_id":"161954","media_id":"190304","event_package_id":"34406","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31259","game_id":"7279","name":"Give Away Medical Gloves","description":"","icon_media_id":"160686","media_id":"190306","event_package_id":"34407","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31262","game_id":"7279","name":"Family Chooses an Item","description":"The two adults in the family look at you, and you can see gratitude in their eyes.\n\nYou sit beneath a tree to rest. As you drift off to sleep, you feel strangely optimistic and begin to think that things may turn out okay.\n<script type=\"text\/javascript\">\nvar areAllItemsCheckedOnce = false;\nvar ARIS = {};\n\nfunction itemObj(itemId){\n\tthis.itemId = itemId;\n\tthis.qty = 0;\n\tthis.wasChecked = false;\n}\n\nfunction removeOneItemAtRandom(){\n\tvar tempItemArray = [];\n\t\/\/First set them all to not checked\n\tfor (i = 0; i < itemArray.length; i++) {\n\t\tvar itemObject = itemArray[i];\n\t\titemObject.wasChecked = false;\n\t\t\/\/If the item's quantity is greater then 0 (meaning the user has picked up at least one of said item)\n\t\tif(itemObject.qty > 0){\n\t\t\t\/\/Add that item to the temp array.\n\t\t\ttempItemArray.push(itemObject);\n\t\t}\n\t}\n\t\/\/Get a random object from the temp array\n\tvar randNum = Math.floor(Math.random() * tempItemArray.length);\n\/\/\talert(\"random number = \" + randNum);\n\tvar randomObj = tempItemArray[randNum];\n\tareAllItemsCheckedOnce = true;\n\t\/\/Remove one item from the random object quantity.\n\tARIS.takeItemCount(randomObj.itemId, 1);\n\t\n}\n\nvar cellPhone = new itemObj(39786);\nvar laptop = new itemObj(41997);\nvar water = new itemObj(41493);\nvar gloves = new itemObj(41026);\nvar solarCellphoneCharger = new itemObj(41484);\nvar graphicNovel = new itemObj(41482);\nvar photos = new itemObj(42759); \nvar clothes = new itemObj(42761); \nvar toothbrush = new itemObj(42764);\nvar firstAidKit = new itemObj(40936);\nvar flashlight = new itemObj(42948);\nvar novelWithPicture = new itemObj(41540);\nvar food = new itemObj(39784);\nvar fireStarter = new itemObj(42093);\nvar matches = new itemObj(42095);\nvar knife = new itemObj(42096);\nvar batteries = new itemObj(44845);\nvar hazelnuts = new itemObj(41543);\nvar harmonica = new itemObj(41545);\nvar berries = new itemObj(44713);\nvar oysterMushrooms = new itemObj(44714);\nvar tamborine = new itemObj(44715);\nvar firewood = new itemObj(44717);\nvar guitar = new itemObj(41788);\nvar rifle = new itemObj(41790);\n\nvar itemArray = [cellPhone, laptop, water, gloves, solarCellphoneCharger, graphicNovel, photos, clothes, toothbrush, firstAidKit, flashlight, novelWithPicture, food, fireStarter, matches, knife, batteries, hazelnuts, harmonica, berries, oysterMushrooms, tamborine, firewood, guitar, rifle];\n\nARIS.ready = function() {\n\t\n\tfor (i = 0; i < itemArray.length; i++) { \n\t\tvar itemObject = itemArray[i];\n\t\tARIS.getItemCount(itemObject.itemId);\n\t}\n\n\tARIS.didUpdateItemQty = function(item_id, qty) {\n\t\tif(areAllItemsCheckedOnce != true){\n\t\t\tfor (i = 0; i < itemArray.length; i++) {\n\t\t\t\tvar item = itemArray[i];\n\t\t\t\tif(item_id == item.itemId){\n\t\t\t\t\titem.qty = qty;\n\t\t\t\t\titem.wasChecked = true;\n\t\t\t\t\tbreak; \/\/ break out of the loop since we've set the item that was currently being updated\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t\/\/Loop through the array and check if they are all TRUE for wasChecked\n\t\t\t\/\/If there is even one that is FALSE, then exit the loop\n\t\t\tvar allItemsChecked = true;\n\t\t\tfor (i = 0; i < itemArray.length; i++) {\n\t\t\t\tvar itemObject = itemArray[i];\n\t\t\t\tif(itemObject.wasChecked == false){\n\t\t\t\t\tallItemsChecked = false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(i == itemArray.length-1){\n\t\t\t\t\tallItemsChecked = true;\n\t\t\t\t}\n\t\t\t}\n\/\/\t\t\talert(\"all items checked = \" + allItemsChecked);\n\t\t\tif(allItemsChecked == true){\n\/\/\t\t\t\talert(\"all items checked = \" + allItemsChecked);\n\t\t\t\tareAllItemsCheckedOnce = true;\n\/\/\t\t\t\talert(\"ALL HAVE BEEN CHECKED!\" + firstAidKit.qty + \" \" + water.qty + \" \" + gloves.qty + \" \" + food.qty + \" \" + solarCellphoneCharger.qty + \" \" + graphicNovel.qty + \" \");\n\t\t\t\t\/\/code before the pause\n\t\t\t\tsetTimeout(function(){\n\t\t\t\t \/\/do what you need here\n\t\t\t\t\tremoveOneItemAtRandom();\n\t\t\t\t}, 2000);\n\t\t\t}\n\t\t}\n\t}\n\n}\n<\/script>","icon_media_id":"190175","media_id":"190175","event_package_id":"38462","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31264","game_id":"7279","name":"Take All Items","description":"One tackles you and holds you down, while the other one takes your things. They run off, leaving just as quickly as they came. \n<br\/>\n<b>Now what?<\/b>","icon_media_id":"190175","media_id":"190175","event_package_id":"38118","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31270","game_id":"7279","name":"Ate Food","description":"You've eaten some of your food.","icon_media_id":"160682","media_id":"190314","event_package_id":"34411","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31274","game_id":"7279","name":"Hazelnuts for Harmonica","description":"You gave up some hazelnuts in exchange for the harmonica.\n\n<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\n\nARIS.hook = function()\n{\n ARIS. exitToDialog('28350');\n}\n\n}\n<\/script>","icon_media_id":"180104","media_id":"180109","event_package_id":"34414","back_button_enabled":"1","continue_function":"JAVASCRIPT"},{"plaque_id":"31810","game_id":"7279","name":"RIP","description":"You wake up, feverish and uncomfortable, a few times as the night wears on, but you don\u2019t wake up at all come morning.","icon_media_id":"170611","media_id":"170611","event_package_id":"41029","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31966","game_id":"7279","name":"Prepare","description":"Prepare to evacuate the city. Collect items available on the map.","icon_media_id":"190175","media_id":"190175","event_package_id":"35912","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31968","game_id":"7279","name":"Give Laptop Jeremy","description":"","icon_media_id":"0","media_id":"190299","event_package_id":"35536","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31969","game_id":"7279","name":"Give Cell Phone Jeremy","description":"","icon_media_id":"0","media_id":"190300","event_package_id":"35535","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"31972","game_id":"7279","name":"Give Water Bottle Jeremy","description":"","icon_media_id":"0","media_id":"190302","event_package_id":"35532","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"32107","game_id":"7279","name":"Give Laptop","description":"","icon_media_id":"0","media_id":"190299","event_package_id":"35914","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"32110","game_id":"7279","name":"Give Cell Phone","description":"","icon_media_id":"0","media_id":"190300","event_package_id":"35915","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"32113","game_id":"7279","name":"Give Water Bottle","description":"","icon_media_id":"0","media_id":"190302","event_package_id":"35916","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"32124","game_id":"7279","name":"RIP2","description":"Your fever begins to build. Your body aches. You lie down to rest, but you never get back up.","icon_media_id":"170611","media_id":"170611","event_package_id":"38464","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"32169","game_id":"7279","name":"News Story","description":"","icon_media_id":"0","media_id":"171075","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33041","game_id":"7279","name":"Prepare2","description":"Prepare to gather resources for your party. Collect items available on the Map.","icon_media_id":"189000","media_id":"189000","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33043","game_id":"7279","name":"Ready to go?","description":"You've gathered all your items and you're ready to return to your party.","icon_media_id":"189000","media_id":"189000","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33045","game_id":"7279","name":"Collected 10 items","description":"You have collected 10 items in your bag. Looks like that should be enough for now.","icon_media_id":"190175","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33047","game_id":"7279","name":"Collected 20 items","description":"It looks like your bag is pretty full. You should probably head back now.","icon_media_id":"189000","media_id":"189000","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33435","game_id":"7279","name":"Duffle Bag","description":"You found water, batteries, and a first aid kit.","icon_media_id":"190175","media_id":"192474","event_package_id":"37502","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33639","game_id":"7279","name":"Ate Food2","description":"You ate some of your food.","icon_media_id":"160682","media_id":"190314","event_package_id":"38120","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33642","game_id":"7279","name":"No Food2","description":"You forgot to get food. Don't forget to pick up some food on your way so you don't starve.","icon_media_id":"190175","media_id":"190175","event_package_id":"38123","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33644","game_id":"7279","name":"No Food","description":"You forgot to get food. Don't forget to pick up some food on your way so you don't starve.","icon_media_id":"190175","media_id":"190175","event_package_id":"38129","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33647","game_id":"7279","name":"Food eaten","description":"<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\nARIS.exit();\n}\n<\/script>","icon_media_id":"160682","media_id":"0","event_package_id":"38132","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"33653","game_id":"7279","name":"Food Eaten2","description":"<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\nARIS.exit();\n}\n<\/script>","icon_media_id":"160682","media_id":"0","event_package_id":"38135","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"34105","game_id":"7279","name":"Bandits take all items!","description":"One tackles you and holds you down, while the other one takes your things. They run off, leaving just as quickly as they came. \n<br\/>\n<b>Now what?<\/b>\n<script type=\"text\/javascript\">\nvar areAllItemsCheckedOnce = false;\nvar ARIS = {};\n\nfunction itemObj(itemId){\n\tthis.itemId = itemId;\n\tthis.qty = 0;\n\tthis.wasChecked = false;\n}\n\nfunction deleteAllItems(){\n\tvar tempItemArray = [];\n\t\/\/First set them all to not checked\n\tfor (i = 0; i < itemArray.length; i++) {\n\t\tvar itemObject = itemArray[i];\n\t\titemObject.wasChecked = false;\n\t\t\/\/If the item's quantity is greater then 0 (meaning the user has picked up at least one of said item)\n\t\tif(itemObject.qty > 0){\n\t\t\t\/\/Add that item to the temp array.\n\t\t\ttempItemArray.push(itemObject);\n\t\t}\n\t}\n\n\t\/\/then reset all the item Counts to 0\n\tfor (i = 0; i < itemArray.length; i++) {\n\t\tvar itemObject = itemArray[i];\n\t\tARIS.setItemCount(itemObject.itemId, 0);\n\t}\n\t\/\/Reset the randomObj to have 1 item of that object\n\tARIS.setItemCount(randomObj.itemId, 1);\n\t\n}\n\nvar cellPhone = new itemObj(39786);\nvar laptop = new itemObj(41997);\nvar water = new itemObj(41493);\nvar gloves = new itemObj(41026);\nvar solarCellphoneCharger = new itemObj(41484);\nvar graphicNovel = new itemObj(41482);\nvar photos = new itemObj(42759); \nvar clothes = new itemObj(42761); \nvar toothbrush = new itemObj(42764);\nvar firstAidKit = new itemObj(40936);\nvar flashlight = new itemObj(42948);\nvar novelWithPicture = new itemObj(41540);\nvar food = new itemObj(39784);\nvar fireStarter = new itemObj(42093);\nvar matches = new itemObj(42095);\nvar knife = new itemObj(42096);\nvar batteries = new itemObj(44845);\nvar hazelnuts = new itemObj(41543);\nvar harmonica = new itemObj(41545);\nvar berries = new itemObj(44713);\nvar oysterMushrooms = new itemObj(44714);\nvar tamborine = new itemObj(44715);\nvar firewood = new itemObj(44717);\nvar guitar = new itemObj(41788);\nvar rifle = new itemObj(41790);\n\nvar itemArray = [cellPhone, laptop, water, gloves, solarCellphoneCharger, graphicNovel, photos, clothes, toothbrush, firstAidKit, flashlight, novelWithPicture, food, fireStarter, matches, knife, batteries, hazelnuts, harmonica, berries, oysterMushrooms, tamborine, firewood, guitar, rifle];\n\nARIS.ready = function() {\n\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris983e06eeeb4df5ccae91ef2180fa8627.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n\tfor (i = 0; i < itemArray.length; i++) { \n\t\tvar itemObject = itemArray[i];\n\t\tARIS.getItemCount(itemObject.itemId);\n\t}\n\n\tARIS.didUpdateItemQty = function(item_id, qty) {\n\t\tif(areAllItemsCheckedOnce != true){\n\t\t\tfor (i = 0; i < itemArray.length; i++) {\n\t\t\t\tvar item = itemArray[i];\n\t\t\t\tif(item_id == item.itemId){\n\t\t\t\t\titem.qty = qty;\n\t\t\t\t\titem.wasChecked = true;\n\t\t\t\t\tbreak; \/\/ break out of the loop since we've set the item that was currently being updated\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t\/\/Loop through the array and check if they are all TRUE for wasChecked\n\t\t\t\/\/If there is even one that is FALSE, then exit the loop\n\t\t\tvar allItemsChecked = true;\n\t\t\tfor (i = 0; i < itemArray.length; i++) {\n\t\t\t\tvar itemObject = itemArray[i];\n\t\t\t\tif(itemObject.wasChecked == false){\n\t\t\t\t\tallItemsChecked = false;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tif(i == itemArray.length-1){\n\t\t\t\t\tallItemsChecked = true;\n\t\t\t\t}\n\t\t\t}\n\/\/\t\t\talert(\"all items checked = \" + allItemsChecked);\n\t\t\tif(allItemsChecked == true){\n\/\/\t\t\t\talert(\"all items checked = \" + allItemsChecked);\n\t\t\t\tareAllItemsCheckedOnce = true;\n\/\/\t\t\t\talert(\"ALL HAVE BEEN CHECKED!\" + firstAidKit.qty + \" \" + water.qty + \" \" + gloves.qty + \" \" + food.qty + \" \" + solarCellphoneCharger.qty + \" \" + graphicNovel.qty + \" \");\n\t\t\t\t\/\/code before the pause\n\t\t\t\tsetTimeout(function(){\n\t\t\t\t \/\/do what you need here\n\t\t\t\t\tdeleteAllItems();\n\t\t\t\t}, 2000);\n\t\t\t}\n\t\t}\n\t}\n\n}\n<\/script>","icon_media_id":"190175","media_id":"190136","event_package_id":"38463","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35055","game_id":"7279","name":"Gained Water","description":"","icon_media_id":"161954","media_id":"190302","event_package_id":"40894","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35056","game_id":"7279","name":"Gained First Aid Kit","description":"","icon_media_id":"160685","media_id":"190316","event_package_id":"40896","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35057","game_id":"7279","name":"Gained Flashlight","description":"","icon_media_id":"176745","media_id":"190319","event_package_id":"40899","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35059","game_id":"7279","name":"Gained Novel with Picture","description":"","icon_media_id":"176755","media_id":"190320","event_package_id":"40901","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35061","game_id":"7279","name":"Gained Food","description":"","icon_media_id":"160682","media_id":"190322","event_package_id":"40904","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35062","game_id":"7279","name":"Gained Fire Starter","description":"","icon_media_id":"176742","media_id":"190325","event_package_id":"40905","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35063","game_id":"7279","name":"Gained Matches","description":"","icon_media_id":"176753","media_id":"190327","event_package_id":"40906","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35065","game_id":"7279","name":"Gained Knife","description":"","icon_media_id":"176752","media_id":"190330","event_package_id":"40909","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35067","game_id":"7279","name":"Gained Medical Gloves","description":"","icon_media_id":"160686","media_id":"190333","event_package_id":"40911","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35087","game_id":"7279","name":"Gained Berries","description":"","icon_media_id":"0","media_id":"0","event_package_id":"40912","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35089","game_id":"7279","name":"Gained Oyster Mushrooms","description":"","icon_media_id":"0","media_id":"0","event_package_id":"40914","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35090","game_id":"7279","name":"Gained Tamborine","description":"","icon_media_id":"0","media_id":"0","event_package_id":"40916","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35093","game_id":"7279","name":"Gained Firewood","description":"","icon_media_id":"0","media_id":"0","event_package_id":"40918","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35099","game_id":"7279","name":"Secret Trigger","description":"This is a secret trigger just for testing and skipping ahead to a different scene. Set the scene in the Aris JS Editor","icon_media_id":"0","media_id":"0","event_package_id":"40925","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35327","game_id":"7279","name":"RIP3","description":"As you look off into the distance, you swear you can see Luli bounding toward you. You close your eyes and never wake up.","icon_media_id":"170611","media_id":"170611","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35330","game_id":"7279","name":"RIP4","description":"Your friends are unable to stop the bleeding. A calmness washes over you.","icon_media_id":"170611","media_id":"170611","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"35332","game_id":"7279","name":"RIP5","description":"","icon_media_id":"170611","media_id":"170611","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36462","game_id":"7279","name":"Gained Photos","description":"","icon_media_id":"176757","media_id":"190825","event_package_id":"41738","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36464","game_id":"7279","name":"Lost Photos","description":"","icon_media_id":"176757","media_id":"0","event_package_id":"41739","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36467","game_id":"7279","name":"Gained Clothes","description":"","icon_media_id":"176739","media_id":"190830","event_package_id":"41729","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36468","game_id":"7279","name":"Lost Clothes","description":"","icon_media_id":"176739","media_id":"190833","event_package_id":"41732","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36471","game_id":"7279","name":"Gained Toothbrush","description":"","icon_media_id":"176761","media_id":"190836","event_package_id":"41734","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36474","game_id":"7279","name":"Lost Toothbrush","description":"","icon_media_id":"176761","media_id":"190837","event_package_id":"41735","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36903","game_id":"7279","name":"Used Laptop","description":"Before you leave the city, you take some time to write a final email to your family with the little battery power left on your laptop. Luckily, the Internet has not gone down yet. You hope your message reaches them.","icon_media_id":"0","media_id":"192451","event_package_id":"41957","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36906","game_id":"7279","name":"Used Cell Phone & Charger","description":"The battery runs out on your cell phone, but you are able to keep it alive by using the solar cell phone charger you got from Jeremy. You use your phone to find the quickest way out of the city.","icon_media_id":"0","media_id":"192456","event_package_id":"41960","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36907","game_id":"7279","name":"Used Cell Phone No Charger","description":"Your phone battery dies since you have been using it all day to navigate the city. You try to charge it by plugging it into a power outlet, but nothing happens. If only you had another way to give it power...","icon_media_id":"0","media_id":"192456","event_package_id":"41959","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36909","game_id":"7279","name":"Used Charger No Cell Phone","description":"You just realized that you left your cell phone in your apartment. As you turn around to go get it, you see hazmat teams beginning to quarantine the building. You look at the solar cell phone charger you just got from Jeremy and throw it away. If only you grabbed your cell phone...","icon_media_id":"0","media_id":"192456","event_package_id":"41961","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36911","game_id":"7279","name":"Used Matches\/Firestarter","description":"You notice it starting to rain, and within a few minutes, it is pouring. Luckily, you find a covered area and make a fire to stay warm. Good thing you were prepared!","icon_media_id":"0","media_id":"192477","event_package_id":"41962","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36912","game_id":"7279","name":"No Matches\/Firestarter","description":"You continue your journey out of the city, but before too long, it starts to rain. You find shelter, but you do not have a way to make fire so your clothes are still soaked. If only you had picked up a fire starter or even just a box of matches...","icon_media_id":"0","media_id":"192477","event_package_id":"41978","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36914","game_id":"7279","name":"Used Water1","description":"After a long day of hiking, you drink some of the water you saved. Staying hydrated is key to survival. It's a good thing you were prepared!","icon_media_id":"0","media_id":"192473","event_package_id":"41965","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36916","game_id":"7279","name":"No Water1","description":"You start to feel lightheaded as you continue to hike. Eventually, you become so thirsty that you have to stop your journey and search for fresh water. You should have gathered some water when you had the chance...","icon_media_id":"0","media_id":"192473","event_package_id":"41968","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36917","game_id":"7279","name":"Used Flashlight w\/ Batteries","description":"Your flashlight dies, but thanks to the batteries you saved, you are able to explore a cave you and your group found. You use your flashlight to search deep within the cave and find a stockpile of food someone left behind. Jeremy pats you on the back as Charlie tosses you a can of food.","icon_media_id":"0","media_id":"192453","event_package_id":"41971","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36920","game_id":"7279","name":"Used Flashlight No Batteries","description":"You are exploring a cave looking for supplies when your flashlight dies. You struggle to feel your way out of the cave, and by the time you make it out, the sun has already started to go down. If only you had some spare batteries...","icon_media_id":"0","media_id":"192463","event_package_id":"41973","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36921","game_id":"7279","name":"Used Knife","description":"As you lead the group to forage for supplies, you hear low growling and suddenly a cougar leaps at you. Instinctively, you reach for your knife, dodge the deadly attack, and plunge your blade into the beast's chest. It howls and collapses into a heap on the ground. Jeremy and Charlie look at you in shock, then cheer. Everyone rushes to make sure that you are okay before they start to field dress the cougar.","icon_media_id":"0","media_id":"192468","event_package_id":"41974","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36922","game_id":"7279","name":"No Knife","description":"You are out foraging with your group when suddenly a cougar jumps out at you. You dodge the deadly blow, but the cougar immediately attacks another member of your group. Charlie scares off the cougar with her machete while Jeremy checks on the injured member of the group. You have to cut the foraging party short to care for the injured. If only you had a weapon to protect yourself...","icon_media_id":"0","media_id":"192468","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36924","game_id":"7279","name":"Used Water2","description":"You pick some wild berries as you are foraging, but they look kind of dirty. You use some of your water to rinse them off. You collect as many as you can hold and bring them back to the group. They are grateful that you brought back so many to share. Good thing you were prepared!","icon_media_id":"0","media_id":"192473","event_package_id":"41977","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36925","game_id":"7279","name":"No Water2","description":"You pick some wild berries as you forage for supplies, but notice that they are a little dirty. You don't have any water to rinse them off, but you assume they will be clean enough. You share them with the rest of the group. The next day, they are all sick with food poisoning, blaming you for not cleaning those berries. If only you had some water to rinse them off...","icon_media_id":"0","media_id":"192473","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36928","game_id":"7279","name":"Used Photos","description":"You bring out some of the old photographs you saved from your residence hall two years ago. You tell the rest of the group stories about your old friends and family and how much you miss them. They all have similar stories and support you in this hard new life. You are starting to think of them as your new family.","icon_media_id":"0","media_id":"192471","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36931","game_id":"7279","name":"Used Clothes","description":"The children look freezing in their torn, old clothes. You pull out the clothes you gathered from your apartment two years ago and tell them to choose whatever they want to wear. The kids look at you in wonder. They immediately start to try on everything you have. They don't care how they look; they just want to be warm.","icon_media_id":"0","media_id":"192458","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"36933","game_id":"7279","name":"Used Graphic Novel","description":"You pull out the graphic novel Jeremy gave you two years ago. You toss it to him, and he can't contain his excitement. <span style='color:#FC7A57;'>\"I can't believe you held onto this for so long!\"<\/span> He starts to read it to the children, but they eventually lose interest. The younger girl says, <span style='color:#B84729;'>\"I like the pictures, but...\"<\/span> The older brother finishes, <span style='color:#B84729;'>\"But the post-apocalyptic story is a little too relatable.\"<\/span> They go back to reading their book as Jeremy flips through the graphic novel.","icon_media_id":"0","media_id":"192466","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37197","game_id":"7279","name":"IRB Plaque","description":"<b>Information about the ecopod research study<\/b>\n<br\/>\n<p>As a participant in the <b>ecopod<\/b>, we would like to ask your permission to use your game play data for a research study. We want to find out how learners can use place-based mobile games for learning foreign language and understand what their perceptions of the learning activities are. The research will improve this game and contribute to our understanding of language learning.<\/p>\n\n<p>When you play <b>ecopod<\/b>, information about your game play is collected and saved on our servers. This information is collected whether you participate in the research study or not. The data includes your login names, profile information, clicks you make during game play, choices you make while doing game activities, and your performance on game activities. This data must be collected in \u201cEXEMPT\" order for us to host this interactive game. We will not use your data for the research study without your permission.<\/p>\n\n<p>Participation in this study is voluntary. You may choose to participant in the research project by clicking \u201cI\u2019m happy to share my game play data for research purposes.\u201d If you agree, there is nothing else you need to do to participate. If you don\u2019t want to participate, then click \u201cI\u2019d prefer that my game play data not be used for research purposes.\u201d Your decision whether or not to participate will not affect your current or future relations with the University of Oregon or other organizations. If you decide to participate, you are free to withdraw from the research at any time without affecting those relationships. The study will continue as long as game activities are available. We expect the game to be available throughout the academic year.<\/p>\n\n<p>We will take all measures to protect your privacy and the security of all your personal information, but we cannot guarantee the confidentiality of all data. Research records and data will be stored securely on University of Oregon servers and only the research team will have access to them. Any report that might be published will not include your name or other information that would make it possible to identify you. Your responses will be archived for future analysis, but all identifying information will be removed or stored separately from the data itself. The University of Oregon Research Compliance Services that oversees human subject research will be permitted to access your records. There may be times when we are required by law to share your information.<\/p>\n\n<p>There are no direct benefits of the study. The indirect benefits of this study are an increased understanding of the use of synthetic immersive environments in foreign language learning and the potential to improve your abilities in the foreign language you are studying.<\/p>\n\n<p>This study has minimal risks in that your responses will be archived for evaluation. There are potential risks of loss of privacy and confidentiality associated with participating in a research study.<\/p>\n\n<p>This study is being conducted by Dr. Julie Sykes at the Center for Applied Second Language Studies, University of Oregon. If you have any questions, concerns or complaints at any time about the research study, Dr. Sykes will be glad to answer them: [email protected], 541-346-5699. The study is funded in part by a grant from the U.S. Department of Education.<\/p>\n\n<p>This study is approved by UO . If you have any questions or concerns your\n\ufffcResearch Compliance Services \ufffcrights as a research subject, please contact the [email protected] for more information.<\/p>\n\n<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\n\nARIS.hook = function()\n{\n ARIS. exitToDialog('33550');\n}\n\n}\n<\/script>","icon_media_id":"0","media_id":"0","event_package_id":"0","back_button_enabled":"1","continue_function":"JAVASCRIPT"},{"plaque_id":"37198","game_id":"7279","name":"Thank You","description":"Thank You!","icon_media_id":"0","media_id":"192124","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37200","game_id":"7279","name":"Scene Change To Day 1","description":"<script type=\"text\/javascript\">\nvar ARIS = {};\nARIS.ready = function() {\n\nARIS.setItemCount(1234,10);\nARIS.exit(); \n}\n<\/script>","icon_media_id":"0","media_id":"0","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37263","game_id":"7279","name":"Lost Cell Phone","description":"","icon_media_id":"0","media_id":"192631","event_package_id":"42340","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37264","game_id":"7279","name":"Lost Flashlight","description":"","icon_media_id":"0","media_id":"192634","event_package_id":"42343","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37266","game_id":"7279","name":"Lost Graphic Novel","description":"","icon_media_id":"0","media_id":"192635","event_package_id":"42344","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37268","game_id":"7279","name":"Lost Laptop","description":"","icon_media_id":"0","media_id":"192638","event_package_id":"42345","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37271","game_id":"7279","name":"Lost Matches","description":"","icon_media_id":"0","media_id":"192641","event_package_id":"42346","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37274","game_id":"7279","name":"Lost Photos","description":"","icon_media_id":"0","media_id":"192643","event_package_id":"42349","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37276","game_id":"7279","name":"Lost Solar Charger","description":"","icon_media_id":"0","media_id":"192644","event_package_id":"42351","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37279","game_id":"7279","name":"Lost Batteries","description":"","icon_media_id":"0","media_id":"180103","event_package_id":"42354","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37280","game_id":"7279","name":"Lost Clothes","description":"","icon_media_id":"0","media_id":"190833","event_package_id":"42356","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37507","game_id":"7279","name":"Start Foraging","description":"You begin to forage for wild edible plants.","icon_media_id":"0","media_id":"190175","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37510","game_id":"7279","name":"Lost Water1","description":"","icon_media_id":"0","media_id":"190304","event_package_id":"43298","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"37513","game_id":"7279","name":"Lost Water2","description":"","icon_media_id":"0","media_id":"190304","event_package_id":"43300","back_button_enabled":"1","continue_function":"EXIT"},{"plaque_id":"41396","game_id":"7279","name":"Audio Plaque","description":"","icon_media_id":"203269","media_id":"203269","event_package_id":"0","back_button_enabled":"1","continue_function":"EXIT"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:34.707 ARIS[4136:2437780] NSNotification: SERVICES_PLAQUES_RECEIVED
2015-11-19 10:17:34.709 ARIS[4136:2437780] NSNotification: MODEL_PLAQUES_AVAILABLE
2015-11-19 10:17:34.710 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:34.711 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:34.716 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.scenes.getScenesForGame/ (0.940022)
2015-11-19 10:17:34.717 ARIS[4136:2437780] Fin async data:
{"data":[{"scene_id":"15775","game_id":"7279","name":"Survival: Day 1","description":"","editor_x":"0","editor_y":"0"},{"scene_id":"17222","game_id":"7279","name":"Day 2","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"17225","game_id":"7279","name":"Year 1","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"17228","game_id":"7279","name":"Year 2","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"17231","game_id":"7279","name":"Year 5","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"17913","game_id":"7279","name":"Day 1 Collection Phase","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"20193","game_id":"7279","name":"IRB","description":null,"editor_x":"0","editor_y":"0"},{"scene_id":"22018","game_id":"7279","name":"Audio","description":null,"editor_x":"0","editor_y":"0"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:34.729 ARIS[4136:2437780] NSNotification: SERVICES_SCENES_RECEIVED
2015-11-19 10:17:34.730 ARIS[4136:2437780] NSNotification: MODEL_SCENES_AVAILABLE
2015-11-19 10:17:34.731 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:34.731 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:34.735 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogCharactersForGame/ (0.937035)
2015-11-19 10:17:34.737 ARIS[4136:2437780] Fin async data:
{"data":[{"dialog_character_id":"27683","game_id":"7279","title":"","name":" ","media_id":"162239"},{"dialog_character_id":"28443","game_id":"7279","title":"","name":"Emergency Worker","media_id":"162236"},{"dialog_character_id":"28444","game_id":"7279","title":"","name":"Text Message","media_id":"160940"},{"dialog_character_id":"28528","game_id":"7279","title":"","name":"Day 1","media_id":"161699"},{"dialog_character_id":"28529","game_id":"7279","title":"","name":"Video","media_id":"0"},{"dialog_character_id":"28534","game_id":"7279","title":"","name":"Suite Door","media_id":"161699"},{"dialog_character_id":"28539","game_id":"7279","title":"","name":"Desk","media_id":"161801"},{"dialog_character_id":"28540","game_id":"7279","title":"","name":"Bed","media_id":"161802"},{"dialog_character_id":"28542","game_id":"7279","title":"","name":"Feeling sick","media_id":"161949"},{"dialog_character_id":"28544","game_id":"7279","title":"","name":"Hallway","media_id":"162233"},{"dialog_character_id":"28571","game_id":"7279","title":"","name":"Pre's Trail","media_id":"194843"},{"dialog_character_id":"30146","game_id":"7279","title":"","name":"BREAKING NEWS","media_id":"171075"},{"dialog_character_id":"30637","game_id":"7279","title":"","name":"Emergency Worker w\/ Map","media_id":"170612"},{"dialog_character_id":"30640","game_id":"7279","title":"","name":"Desk w\/ Items","media_id":"170609"},{"dialog_character_id":"30642","game_id":"7279","title":"","name":"Family of 4","media_id":"170625"},{"dialog_character_id":"30643","game_id":"7279","title":"","name":"Sky at Sunset","media_id":"194840"},{"dialog_character_id":"30645","game_id":"7279","title":"","name":"Your Hands","media_id":"170626"},{"dialog_character_id":"30647","game_id":"7279","title":"","name":"RIP","media_id":"170611"},{"dialog_character_id":"30872","game_id":"7279","title":"","name":"Small Makeshift Camp","media_id":"171027"},{"dialog_character_id":"31628","game_id":"7279","title":"","name":"Charlie","media_id":"195262"},{"dialog_character_id":"32059","game_id":"7279","title":"","name":"Charlie","media_id":"195263"},{"dialog_character_id":"32062","game_id":"7279","title":"","name":"Charlie","media_id":"195265"},{"dialog_character_id":"32065","game_id":"7279","title":"","name":"Wooded Area","media_id":"177489"},{"dialog_character_id":"32067","game_id":"7279","title":"","name":"Jeremy Waving","media_id":"177484"},{"dialog_character_id":"32069","game_id":"7279","title":"","name":"Jeremy with Harmonica","media_id":"177487"},{"dialog_character_id":"32465","game_id":"7279","title":"","name":"Night Sky","media_id":"179998"},{"dialog_character_id":"32468","game_id":"7279","title":"","name":"Bigger Makeshift Camp","media_id":"180003"},{"dialog_character_id":"32470","game_id":"7279","title":"","name":"Campfire","media_id":"180004"},{"dialog_character_id":"32471","game_id":"7279","title":"","name":"Abandoned House Interior","media_id":"180000"},{"dialog_character_id":"32474","game_id":"7279","title":"","name":"Dirty Hands","media_id":"170627"},{"dialog_character_id":"34384","game_id":"7279","title":"","name":"RIP","media_id":"188879"},{"dialog_character_id":"34389","game_id":"7279","title":"","name":"Children - Crying\/Angry","media_id":"188225"},{"dialog_character_id":"34391","game_id":"7279","title":"","name":"Children","media_id":"188226"},{"dialog_character_id":"34393","game_id":"7279","title":"","name":"Children - Older Talking","media_id":"188229"},{"dialog_character_id":"34394","game_id":"7279","title":"","name":"Children - Younger Talking","media_id":"188231"},{"dialog_character_id":"34395","game_id":"7279","title":"","name":"Children - Crying Alone","media_id":"188233"},{"dialog_character_id":"34397","game_id":"7279","title":"","name":"Looking at Hands","media_id":"188912"},{"dialog_character_id":"34401","game_id":"7279","title":"","name":"Abandoned House Exterior","media_id":"188224"},{"dialog_character_id":"34407","game_id":"7279","title":"","name":"Choose One","media_id":"189000"},{"dialog_character_id":"34526","game_id":"7279","title":"","name":"Abandoned Camp","media_id":"189340"},{"dialog_character_id":"34527","game_id":"7279","title":"","name":"Blurry Night Sky","media_id":"189342"},{"dialog_character_id":"34528","game_id":"7279","title":"","name":"Knife Day","media_id":"189344"},{"dialog_character_id":"34530","game_id":"7279","title":"","name":"Knife Night","media_id":"189345"},{"dialog_character_id":"34533","game_id":"7279","title":"","name":"Night Sky","media_id":"189348"},{"dialog_character_id":"34601","game_id":"7279","title":"","name":"Attacker","media_id":"190136"},{"dialog_character_id":"34906","game_id":"7279","title":"","name":"Ecopod Logo","media_id":"192127"},{"dialog_character_id":"34908","game_id":"7279","title":"","name":"Empty","media_id":"0"},{"dialog_character_id":"35421","game_id":"7279","title":"","name":"Someone Approaches","media_id":"194846"},{"dialog_character_id":"35424","game_id":"7279","title":"","name":"Emergency Worker","media_id":"194847"},{"dialog_character_id":"35427","game_id":"7279","title":"","name":"Jeremy with Map","media_id":"194850"},{"dialog_character_id":"35429","game_id":"7279","title":"","name":"Jeremy","media_id":"194853"},{"dialog_character_id":"35432","game_id":"7279","title":"","name":"Jeremy with Items","media_id":"194854"},{"dialog_character_id":"35433","game_id":"7279","title":"","name":"Pre's Trail","media_id":"194843"},{"dialog_character_id":"35436","game_id":"7279","title":"","name":"Lying on Ground","media_id":"190140"},{"dialog_character_id":"35437","game_id":"7279","title":"","name":"Lying on Ground","media_id":"190139"},{"dialog_character_id":"35438","game_id":"7279","title":"","name":"Wooded Path","media_id":"194860"},{"dialog_character_id":"35440","game_id":"7279","title":"","name":"Group of Three","media_id":"194864"},{"dialog_character_id":"35441","game_id":"7279","title":"","name":"Bang!","media_id":"194862"},{"dialog_character_id":"35444","game_id":"7279","title":"","name":"Group of Three","media_id":"194866"},{"dialog_character_id":"35445","game_id":"7279","title":"","name":"Stealing","media_id":"194857"},{"dialog_character_id":"35447","game_id":"7279","title":"","name":"In the Dark","media_id":"0"},{"dialog_character_id":"35497","game_id":"7279","title":"","name":"Overgrown Forest Path","media_id":"195182"},{"dialog_character_id":"35502","game_id":"7279","title":"","name":"Starry Sky","media_id":"195200"},{"dialog_character_id":"35505","game_id":"7279","title":"","name":"Duffle Bag","media_id":"195250"},{"dialog_character_id":"35506","game_id":"7279","title":"","name":"Opened Duffle Bag","media_id":"195252"},{"dialog_character_id":"35508","game_id":"7279","title":"","name":"Hiding in Bushes","media_id":"195245"},{"dialog_character_id":"35577","game_id":"7279","title":"","name":"Novel","media_id":"195435"},{"dialog_character_id":"35581","game_id":"7279","title":"","name":"Family of 4","media_id":"195444"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:34.768 ARIS[4136:2437780] NSNotification: SERVICES_DIALOG_CHARACTERS_RECEIVED
2015-11-19 10:17:34.770 ARIS[4136:2437780] NSNotification: MODEL_DIALOG_CHARACTERS_AVAILABLE
2015-11-19 10:17:34.771 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:34.772 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:34.776 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.items.getItemsForGame/ (0.984417)
2015-11-19 10:17:34.778 ARIS[4136:2437780] Fin async data:
{"data":[{"item_id":"39784","game_id":"7279","name":"Food","description":"General Food","icon_media_id":"160682","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"1000","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"39786","game_id":"7279","name":"Cell Phone","description":"A Cell Phone","icon_media_id":"160684","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"10","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"39788","game_id":"7279","name":"Total Inventory Count","description":"Total count of all items in the inventory","icon_media_id":"0","media_id":"0","droppable":"0","destroyable":"0","max_qty_in_inventory":"100","weight":"0","url":"","type":"HIDDEN","delta_notification":"0"},{"item_id":"40936","game_id":"7279","name":"First Aid Kit","description":"","icon_media_id":"160685","media_id":"160685","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41026","game_id":"7279","name":"Medical Gloves","description":"","icon_media_id":"160686","media_id":"160686","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41028","game_id":"7279","name":"Mask","description":"","icon_media_id":"160687","media_id":"160687","droppable":"1","destroyable":"1","max_qty_in_inventory":"1","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41482","game_id":"7279","name":"Graphic Novel ","description":"","icon_media_id":"176746","media_id":"176746","droppable":"1","destroyable":"1","max_qty_in_inventory":"500","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41484","game_id":"7279","name":"Solar cell phone charger","description":"","icon_media_id":"176758","media_id":"176758","droppable":"1","destroyable":"1","max_qty_in_inventory":"500","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41493","game_id":"7279","name":"Water","description":"","icon_media_id":"161954","media_id":"161954","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41540","game_id":"7279","name":"Novel with Picture","description":"","icon_media_id":"176755","media_id":"176755","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41543","game_id":"7279","name":"Hazelnuts","description":"","icon_media_id":"176749","media_id":"176749","droppable":"1","destroyable":"1","max_qty_in_inventory":"10","weight":"0","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41545","game_id":"7279","name":"Harmonica","description":"","icon_media_id":"180104","media_id":"180104","droppable":"1","destroyable":"1","max_qty_in_inventory":"1","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41788","game_id":"7279","name":"Guitar","description":"","icon_media_id":"180123","media_id":"180123","droppable":"1","destroyable":"1","max_qty_in_inventory":"1","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41790","game_id":"7279","name":"Rifle","description":"","icon_media_id":"180126","media_id":"180126","droppable":"1","destroyable":"1","max_qty_in_inventory":"1","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"41997","game_id":"7279","name":"Laptop","description":"","icon_media_id":"176966","media_id":"176966","droppable":"1","destroyable":"1","max_qty_in_inventory":"10","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42093","game_id":"7279","name":"Fire Starter","description":"","icon_media_id":"176742","media_id":"176742","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42095","game_id":"7279","name":"Matches","description":"","icon_media_id":"176753","media_id":"176753","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42096","game_id":"7279","name":"Knife","description":"","icon_media_id":"176752","media_id":"176752","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42759","game_id":"7279","name":"Photos","description":"","icon_media_id":"176757","media_id":"176757","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42761","game_id":"7279","name":"Clothes","description":"","icon_media_id":"176739","media_id":"176739","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42764","game_id":"7279","name":"Toothbrush","description":"","icon_media_id":"176761","media_id":"176761","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"42948","game_id":"7279","name":"Flashlight","description":"","icon_media_id":"176745","media_id":"176745","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"44713","game_id":"7279","name":"Berries","description":"","icon_media_id":"0","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"44714","game_id":"7279","name":"Oyster Mushrooms","description":"","icon_media_id":"0","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"44715","game_id":"7279","name":"Tamborine","description":"","icon_media_id":"0","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"44717","game_id":"7279","name":"Firewood","description":"","icon_media_id":"0","media_id":"0","droppable":"1","destroyable":"1","max_qty_in_inventory":"100","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"44845","game_id":"7279","name":"Batteries","description":"","icon_media_id":"180101","media_id":"180101","droppable":"1","destroyable":"1","max_qty_in_inventory":"1","weight":"1","url":"","type":"NORMAL","delta_notification":"1"},{"item_id":"49787","game_id":"7279","name":"Approved for research","description":"","icon_media_id":"0","media_id":"0","droppable":"0","destroyable":"0","max_qty_in_inventory":"500","weight":"0","url":"","type":"HIDDEN","delta_notification":"1"},{"item_id":"49788","game_id":"7279","name":"Not approved for research","description":"","icon_media_id":"0","media_id":"0","droppable":"0","destroyable":"0","max_qty_in_inventory":"500","weight":"0","url":"","type":"HIDDEN","delta_notification":"1"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:34.813 ARIS[4136:2437780] NSNotification: SERVICES_ITEMS_RECEIVED
2015-11-19 10:17:34.814 ARIS[4136:2437780] NSNotification: MODEL_ITEMS_AVAILABLE
2015-11-19 10:17:34.815 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:34.816 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:34.823 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogOptionsForGame/ (1.015277)
2015-11-19 10:17:34.826 ARIS[4136:2437780] Fin async data:
{"data":[{"dialog_option_id":"224667","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159433","prompt":"Bye bye","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"224670","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159433","prompt":"Continue","link_type":"DIALOG_SCRIPT","link_id":"159434","link_info":"","requirement_root_package_id":"0","sort_index":"3"},{"dialog_option_id":"224673","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159434","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"224674","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159433","prompt":"Continue","link_type":"DIALOG_SCRIPT","link_id":"159436","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"224676","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159436","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"224679","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159433","prompt":"Continue","link_type":"DIALOG_SCRIPT","link_id":"159437","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"224682","game_id":"7279","dialog_id":"0","parent_dialog_script_id":"159437","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235713","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167127","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"167137","link_info":"","requirement_root_package_id":"165762","sort_index":"0"},{"dialog_option_id":"235726","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"169669","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235729","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167129","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"167131","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235738","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167137","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173664","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235812","game_id":"7279","dialog_id":"28039","parent_dialog_script_id":"169676","prompt":"<b>What happens next?<\/b>","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235814","game_id":"7279","dialog_id":"28041","parent_dialog_script_id":"169679","prompt":"<b>What happens next?<\/b>","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235816","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167202","prompt":"You leave reluctantly.","link_type":"DIALOG_SCRIPT","link_id":"167206","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235819","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167200","prompt":"No. You want the orchard and the hazelnuts to yourself.","link_type":"DIALOG_SCRIPT","link_id":"167202","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235821","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167200","prompt":"Yes, of course.","link_type":"DIALOG_SCRIPT","link_id":"167203","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"235824","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167203","prompt":"What luck!","link_type":"EXIT_TO_PLAQUE","link_id":"30733","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235827","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167212","prompt":"Exit and reset","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235830","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167206","prompt":"LIfe is lonely either way.","link_type":"DIALOG_SCRIPT","link_id":"167209","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235833","game_id":"7279","dialog_id":"28043","parent_dialog_script_id":"167209","prompt":"You don\u2019t care about anything at all.","link_type":"DIALOG_SCRIPT","link_id":"167212","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235835","game_id":"7279","dialog_id":"28044","parent_dialog_script_id":"167214","prompt":"You feel more like yourself than you have in a long time. (Go to year 2)","link_type":"EXIT_TO_PLAQUE","link_id":"30712","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235836","game_id":"7279","dialog_id":"28046","parent_dialog_script_id":"167216","prompt":"Things might turn out okay. (Takes you to Year 1)","link_type":"EXIT_TO_PLAQUE","link_id":"30537","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"235838","game_id":"7279","dialog_id":"28049","parent_dialog_script_id":"169535","prompt":"<b>Get started!<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31966","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239334","game_id":"7279","dialog_id":"28049","parent_dialog_script_id":"167218","prompt":"<span style='color:#FC7A57;'>\"Look at this map.\"<\/span>","link_type":"DIALOG_SCRIPT","link_id":"169535","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239387","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169568","prompt":"<b>A group of bandits dart out from behind some underbrush.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"34105","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239391","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169570","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169576","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239394","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192593","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239401","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169578","prompt":"<b>First aid kit<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31255","link_info":"","requirement_root_package_id":"165729","sort_index":"0"},{"dialog_option_id":"239402","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169578","prompt":"<b>Medical Gloves<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31259","link_info":"","requirement_root_package_id":"165723","sort_index":"2"},{"dialog_option_id":"239407","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169578","prompt":"<b>Water<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31257","link_info":"","requirement_root_package_id":"165726","sort_index":"1"},{"dialog_option_id":"239411","game_id":"7279","dialog_id":"28342","parent_dialog_script_id":"169588","prompt":"<b>Things might turn out okay.<\/b>","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239413","game_id":"7279","dialog_id":"28342","parent_dialog_script_id":"169586","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169588","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239417","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169569","prompt":"<b>The family chooses an item from your bag.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31262","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239422","game_id":"7279","dialog_id":"28343","parent_dialog_script_id":"169594","prompt":"<b>Hopefully things turn out okay.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30537","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239423","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169605","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239425","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192596","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169598","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239427","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Double back to avoid the group noticing you.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169600","link_info":"","requirement_root_package_id":"195625","sort_index":"0"},{"dialog_option_id":"239435","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169600","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169603","link_info":"","requirement_root_package_id":"195618","sort_index":"0"},{"dialog_option_id":"239445","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192615","prompt":"<b>Yes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169612","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239450","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169612","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169616","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239451","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169616","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169617","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239453","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192618","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169619","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239459","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169622","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169600","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239463","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169620","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"31274","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239472","game_id":"7279","dialog_id":"28348","parent_dialog_script_id":"169637","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239474","game_id":"7279","dialog_id":"28348","parent_dialog_script_id":"169633","prompt":"LIfe is lonely either way.","link_type":"DIALOG_SCRIPT","link_id":"169635","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239477","game_id":"7279","dialog_id":"28348","parent_dialog_script_id":"169635","prompt":"You don\u2019t care about anything at all.","link_type":"DIALOG_SCRIPT","link_id":"169637","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239481","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169648","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239483","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"178151","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169643","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239484","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169641","prompt":"<b>Yes, of course.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169644","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"239485","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169644","prompt":"<b>Go forage.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"37507","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239488","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169643","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169646","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239489","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"203045","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"35327","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239491","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192627","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169649","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239497","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192628","prompt":"\"No thanks. Maybe tomorrow.\"","link_type":"DIALOG_SCRIPT","link_id":"169653","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239499","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169654","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"178153","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239502","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192635","prompt":"<b>Yes. You think Charlie will want to hear.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169654","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239506","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169659","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169600","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239508","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169657","prompt":"<b>No. You want the orchard and the hazelnuts to yourself.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169659","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239510","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169657","prompt":"<b>Yes, of course.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169660","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"239513","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169660","prompt":"<b>Go forage.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"37507","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239519","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169655","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169600","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239521","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167127","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173677","link_info":"","requirement_root_package_id":"165765","sort_index":"1"},{"dialog_option_id":"239525","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"203047","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"35330","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239532","game_id":"7279","dialog_id":"28039","parent_dialog_script_id":"167193","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169676","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"239535","game_id":"7279","dialog_id":"28041","parent_dialog_script_id":"167196","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169679","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244352","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173553","prompt":"\"I'm going to wait things out here.\"","link_type":"DIALOG_SCRIPT","link_id":"173556","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"244377","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173557","prompt":"<b>Take five minutes to gather some water and photos.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"36462","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244379","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192566","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173572","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244383","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192573","prompt":"<b>Choose a solar cell phone charger.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30739","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244389","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173572","prompt":"<b>Keep it.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244391","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173572","prompt":"<b>Leave it behind.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31966","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"244394","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192536","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173583","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244395","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177611","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244398","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173551","prompt":"\"This can't be real. I'm going back to sleep.\"","link_type":"DIALOG_SCRIPT","link_id":"173589","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244399","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173551","prompt":"\"Oh man. It sounds crazy, but if they are for real?\"","link_type":"DIALOG_SCRIPT","link_id":"173591","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"244404","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192538","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173592","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244407","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177609","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244411","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192531","prompt":"<b>What do you take with you?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"177401","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244419","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173591","prompt":"<b>Stay inside.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173589","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244443","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192308","prompt":"<b>Check the news.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32169","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244448","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177608","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244474","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"173638","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169657","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244484","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195399","prompt":"<b>Yes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173642","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244492","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195376","prompt":"<b>Comfort children to calm them down.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173647","link_info":"","requirement_root_package_id":"169375","sort_index":"0"},{"dialog_option_id":"244494","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195385","prompt":"<b>No, and you convince the group to send the kids away.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167129","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244510","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195978","prompt":"<b>No, and you convince the group to send the kids away.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167129","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244530","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195393","prompt":"<b>Go in and explore.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173666","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244535","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173667","prompt":"<b>What happens next?<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30709","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244540","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195990","prompt":"<b>The guitar.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30727","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244547","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173677","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173679","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244549","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173679","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173664","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244552","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173645","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173642","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244572","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195987","prompt":"<b>Yes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167127","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244584","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195995","prompt":"<b>Continue on your mission.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173699","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244586","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173703","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173708","link_info":"","requirement_root_package_id":"197097","sort_index":"0"},{"dialog_option_id":"244589","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173700","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173703","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244592","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195999","prompt":"<b>Stay put.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173706","link_info":"","requirement_root_package_id":"169392","sort_index":"0"},{"dialog_option_id":"244596","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173713","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244601","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173722","prompt":"<b>Congratulations!<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30725","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244604","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173708","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173711","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244606","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173711","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173713","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244607","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"202376","prompt":"<b>Introduce yourself in hopes that they will join your group.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173714","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244609","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173743","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244614","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173714","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173718","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244615","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173718","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173719","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244618","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173733","prompt":"<b>Congratulations!<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30725","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244619","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200373","prompt":"<b>Return to the group with the trio.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173722","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244621","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200376","prompt":"<b>Hand over your backpack.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173725","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244629","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173725","prompt":"<b>You lie down and begin to cry.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173708","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"244632","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173727","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173733","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244633","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196012","prompt":"<b>Hand over your backpack.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173725","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244639","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173738","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173727","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244641","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173715","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173742","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244643","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173742","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173743","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244645","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173745","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173718","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244648","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196010","prompt":"<b>Shoot.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173747","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244654","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173747","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173749","link_info":"","requirement_root_package_id":"181112","sort_index":"0"},{"dialog_option_id":"244656","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173747","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173751","link_info":"","requirement_root_package_id":"181113","sort_index":"1"},{"dialog_option_id":"244658","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173755","prompt":"Exit and Reset","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244661","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173749","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173716","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"244664","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173751","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173755","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"247700","game_id":"7279","dialog_id":"29022","parent_dialog_script_id":"192567","prompt":"<b>Choose the graphic novel.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30737","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249750","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173553","prompt":"\"Hold on. I want to grab some things first.\"","link_type":"DIALOG_SCRIPT","link_id":"173557","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249764","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177401","prompt":"<b>Laptop<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32107","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249767","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177401","prompt":"<b>Full Water Bottle<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32113","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"249771","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177401","prompt":"<b>Cell Phone<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32110","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"249822","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192533","prompt":"<b>What do you take with you?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"177428","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249893","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177428","prompt":"<b>Cell Phone<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31969","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249899","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177428","prompt":"<b>Full Water Bottle<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31972","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"249902","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"177428","prompt":"<b>Laptop<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31968","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"249996","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"192561","prompt":"<b>Prepare to evacuate city.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31966","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"249999","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"192556","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"177558","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250002","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177558","prompt":"<b>You leave immediately.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"177561","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250003","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"192558","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"177562","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250005","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177562","prompt":"<b>Keep it.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250009","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177565","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250010","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177562","prompt":"<b>Leave it behind.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"31966","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"250064","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"203030","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"31810","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250065","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"203026","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"31810","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250066","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"203027","prompt":"","link_type":"EXIT_TO_PLAQUE","link_id":"31810","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250914","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169641","prompt":"<b>No. You want the orchard and the hazelnuts to yourself.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"178151","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250917","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"178153","prompt":"<b>Yes, of course.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169660","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"250920","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"178153","prompt":"<b>No. You want the orchard and the hazelnuts to yourself.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169659","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250923","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192623","prompt":"\"That sounds fun, but I'm not musical.\"","link_type":"DIALOG_SCRIPT","link_id":"173638","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"250936","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"178170","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"203099","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"262186","game_id":"7279","dialog_id":"30424","parent_dialog_script_id":"187621","prompt":"No.","link_type":"EXIT_TO_PLAQUE","link_id":"30538","link_info":"","requirement_root_package_id":"176447","sort_index":"2"},{"dialog_option_id":"262206","game_id":"7279","dialog_id":"30424","parent_dialog_script_id":"187621","prompt":"No.","link_type":"EXIT_TO_PLAQUE","link_id":"30712","link_info":"","requirement_root_package_id":"176449","sort_index":"1"},{"dialog_option_id":"262208","game_id":"7279","dialog_id":"30424","parent_dialog_script_id":"187621","prompt":"Yes","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"264665","game_id":"7279","dialog_id":"30829","parent_dialog_script_id":"192589","prompt":"<b>No.<\/b>","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"264667","game_id":"7279","dialog_id":"30829","parent_dialog_script_id":"189592","prompt":"<b>Pick them up.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"33435","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"264682","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192578","prompt":"<b>Keep your distance, but leave some resources for them.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169578","link_info":"","requirement_root_package_id":"177751","sort_index":"0"},{"dialog_option_id":"266298","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192528","prompt":"\"What should I do?\"","link_type":"DIALOG_SCRIPT","link_id":"173551","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"266305","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"176065","prompt":"\"Can I help you?\"","link_type":"DIALOG_SCRIPT","link_id":"191086","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"266311","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"192300","prompt":"<b>Exit and Reset.","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"266325","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"192544","prompt":"<b>What do you take with you?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"191101","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"266328","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191101","prompt":"<b>Cell Phone<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32110","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"266333","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"192552","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"191105","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267956","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173545","prompt":"<b>What do you do?<\/b> ","link_type":"DIALOG_SCRIPT","link_id":"192294","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267958","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192294","prompt":"<b>Go back to sleep.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173550","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"267965","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191105","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192300","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267969","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"192303","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267973","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"192305","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267975","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191101","prompt":"<b>Full Water Bottle<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32113","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"267977","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191101","prompt":"<b>Laptop<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"32107","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"267987","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173550","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192308","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"267990","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192308","prompt":"<b>Go back to sleep.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173622","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268323","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192294","prompt":"<b>Check your cell phone.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192528","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268326","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173591","prompt":"<b>Leave your room.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192531","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268328","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173553","prompt":"\"Yes, let's get out of here!\"","link_type":"DIALOG_SCRIPT","link_id":"192533","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268329","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173622","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192534","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268331","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173556","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268334","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173589","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268338","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191088","prompt":"<b>Leave your room.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192544","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268350","game_id":"7279","dialog_id":"31464","parent_dialog_script_id":"191088","prompt":"<b>Stay inside.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192552","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268356","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177555","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192556","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268358","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177558","prompt":"<b>You go back inside to get your things.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"36467","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268361","game_id":"7279","dialog_id":"29228","parent_dialog_script_id":"177561","prompt":"<span style='color:#4B33AF;'>\"Here. Take my map.<\/span>","link_type":"DIALOG_SCRIPT","link_id":"192561","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268362","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"191086","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192563","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268363","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173557","prompt":"<b>Take ten minutes to pack a suitcase and backpack.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"36467","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268365","game_id":"7279","dialog_id":"29022","parent_dialog_script_id":"176054","prompt":"<span style='color:#FC7A57;'>\"Which do you want?\"<\/span>","link_type":"DIALOG_SCRIPT","link_id":"192567","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268373","game_id":"7279","dialog_id":"29022","parent_dialog_script_id":"192567","prompt":"<b>Choose the Solar Cell Phone Charger<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30739","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268377","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173575","prompt":"<span style='color:#FC7A57;'>\"Which do you want?\"<\/span>","link_type":"DIALOG_SCRIPT","link_id":"192573","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268386","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192573","prompt":"<b>Choose the graphic novel.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30737","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268388","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169565","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192578","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268389","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192578","prompt":"<b>Introduce yourself to the family and help them.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169570","link_info":"","requirement_root_package_id":"195608","sort_index":"4"},{"dialog_option_id":"268393","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192578","prompt":"<b>Leave as quickly as possible. You don\u2019t want to risk becoming infected.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169568","link_info":"","requirement_root_package_id":"0","sort_index":"3"},{"dialog_option_id":"268395","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192578","prompt":"<b>Keep your distance, but leave some resources for them.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169569","link_info":"","requirement_root_package_id":"179851","sort_index":"2"},{"dialog_option_id":"268399","game_id":"7279","dialog_id":"30829","parent_dialog_script_id":"189589","prompt":"<b>Do you open it?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192589","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268400","game_id":"7279","dialog_id":"30829","parent_dialog_script_id":"192589","prompt":"<b>Yes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"189592","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268409","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169597","prompt":"<b>It has been a year since you evacuated the city.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192596","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268410","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169598","prompt":"\"Well, Luli,\" <b>you say,<\/b> \"what should we do?\"","link_type":"DIALOG_SCRIPT","link_id":"192598","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268413","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Watch the group all morning from a distance.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192612","link_info":"","requirement_root_package_id":"179854","sort_index":"5"},{"dialog_option_id":"268417","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Watch the group all morning from a distance.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169601","link_info":"","requirement_root_package_id":"179856","sort_index":"4"},{"dialog_option_id":"268421","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Approach the group cautiously.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169601","link_info":"","requirement_root_package_id":"179860","sort_index":"3"},{"dialog_option_id":"268430","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192612","prompt":"<b>You recognize a woman in the group.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169611","link_info":"","requirement_root_package_id":"179858","sort_index":"0"},{"dialog_option_id":"268433","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Approach the group cautiously.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192612","link_info":"","requirement_root_package_id":"179862","sort_index":"2"},{"dialog_option_id":"268434","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169611","prompt":"<b>Do you tell her?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192615","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268437","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192615","prompt":"<b>No.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169614","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268442","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169617","prompt":"<b>Someone familiar approaches you.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192618","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268444","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169614","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169617","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268446","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169619","prompt":"<span style='color:#FC7A57;'>\"Would you like to learn to play? I'm happy to teach you.\"<\/span>","link_type":"DIALOG_SCRIPT","link_id":"192623","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268448","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192623","prompt":"\"Yes. That sounds fun!\"","link_type":"DIALOG_SCRIPT","link_id":"169620","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"268453","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192623","prompt":"\"No thanks. I\u2019m getting tired.\"","link_type":"DIALOG_SCRIPT","link_id":"169622","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268457","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169601","prompt":"<b>Someone familiar approaches you.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192627","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268459","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169649","prompt":"<span style='color:#FC7A57;'>\"Would you like to learn to play? I'm happy to teach you.\"<\/span>","link_type":"DIALOG_SCRIPT","link_id":"192628","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268462","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192628","prompt":"\"That sounds fun, but I\u2019m not musical.\"","link_type":"DIALOG_SCRIPT","link_id":"173638","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"268466","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192628","prompt":"\"Yes. That sounds fun!\"","link_type":"DIALOG_SCRIPT","link_id":"169620","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"268469","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169653","prompt":"<b>Do you tell her?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192635","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"268470","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192635","prompt":"<b>No. You are worried that the memory might upset her.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169655","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"271645","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192294","prompt":"<b>Answer the door.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"191086","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"271648","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192563","prompt":"\"I'm going to wait things out here.\"","link_type":"DIALOG_SCRIPT","link_id":"173556","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"271649","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192563","prompt":"\"Hold on. I want to grab some things first.\"","link_type":"DIALOG_SCRIPT","link_id":"173557","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"271652","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192563","prompt":"\"Yes, let's get out of here!\"","link_type":"DIALOG_SCRIPT","link_id":"192533","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"272341","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167120","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"195375","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"272344","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195375","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195376","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"272346","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195376","prompt":"<b>Comfort children to calm them down.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173645","link_info":"","requirement_root_package_id":"181061","sort_index":"3"},{"dialog_option_id":"272350","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195376","prompt":"<b>Agree to join in the interrogation.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173640","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"272352","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195376","prompt":"<b>Do nothing.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167124","link_info":"","requirement_root_package_id":"181064","sort_index":"1"},{"dialog_option_id":"272357","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173647","prompt":"<b>Do you believe him?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195385","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"272359","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195385","prompt":"<b>Not quite. He gave information too quickly.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173640","link_info":"","requirement_root_package_id":"0","sort_index":"3"},{"dialog_option_id":"272361","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195385","prompt":"<b>Yes, and you convince the group to let the kids stay.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167137","link_info":"","requirement_root_package_id":"181070","sort_index":"2"},{"dialog_option_id":"272365","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195385","prompt":"<b>Yes, and you convince the group to let the kids stay.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173677","link_info":"","requirement_root_package_id":"181067","sort_index":"1"},{"dialog_option_id":"272369","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173664","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195393","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"272372","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195393","prompt":"<b>Stay out.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173667","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"272376","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173640","prompt":"<b>Do you continue?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195399","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273299","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195399","prompt":"<b>No.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167127","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273301","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173642","prompt":"<b>Do you believe her?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195978","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273303","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195978","prompt":"<b>Yes, and you convince the group to let the kids stay.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173677","link_info":"","requirement_root_package_id":"181089","sort_index":"3"},{"dialog_option_id":"273309","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195978","prompt":"<b>Not quite. He gave information too quickly.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173640","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"273314","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195978","prompt":"<b>Yes, and you convince the group to let the kids stay.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167137","link_info":"","requirement_root_package_id":"181091","sort_index":"1"},{"dialog_option_id":"273318","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167124","prompt":"<b>Do you intervene?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195987","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273319","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195987","prompt":"<b>No.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"167129","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273322","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"173666","prompt":"<b>Which do you take?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195990","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273326","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"195990","prompt":"<b>The rifle.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30729","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273327","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"202383","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195995","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273329","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195995","prompt":"<b>Return to your group.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173700","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273332","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173699","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"195999","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273335","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195999","prompt":"<b>Stay put.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173745","link_info":"","requirement_root_package_id":"181111","sort_index":"3"},{"dialog_option_id":"273338","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195999","prompt":"<b>Hide.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173709","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"273342","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"195999","prompt":"<b>Run.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173700","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273347","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173706","prompt":"<b>You make a split-second decision.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"196010","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273348","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196010","prompt":"<b>Remain steady.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173718","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"273354","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173716","prompt":"\"Give me your backpack,\" <b>he demands.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"196012","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"273356","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196012","prompt":"<b>Attempt to fight.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173738","link_info":"","requirement_root_package_id":"0","sort_index":"3"},{"dialog_option_id":"279477","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173725","prompt":"<b>Start your way back to your friends.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173727","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"279504","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173719","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"200373","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"279505","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200373","prompt":"<b>Join the trio and do not return to your friends.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173721","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"279509","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173721","prompt":"\"Give me your backpack,\" <b>he demands.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"200376","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"279511","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200376","prompt":"<b>Attempt to fight.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"178170","link_info":"","requirement_root_package_id":"0","sort_index":"3"},{"dialog_option_id":"282224","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173709","prompt":"<b>You debate what to do.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"202376","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"282227","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"202376","prompt":"<b>Stay hidden and wait for them to pass.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173716","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"282231","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"202376","prompt":"<b>Track the group and steal their resources at nightfall.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"173715","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"282234","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173698","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"202383","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283247","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173592","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"177608","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283248","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173583","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"177608","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283249","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"192534","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"177608","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283252","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"169576","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"192593","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283255","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"169603","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169605","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283269","game_id":"7279","dialog_id":"28350","parent_dialog_script_id":"169646","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169648","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"283271","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167131","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169669","link_info":"","requirement_root_package_id":"195631","sort_index":"0"},{"dialog_option_id":"283356","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"203099","prompt":"<b>Exit and Reset<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"27833","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285828","game_id":"7279","dialog_id":"33341","parent_dialog_script_id":"204813","prompt":"Bye bye","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285831","game_id":"7279","dialog_id":"33341","parent_dialog_script_id":"204809","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"204812","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285836","game_id":"7279","dialog_id":"33341","parent_dialog_script_id":"204815","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285837","game_id":"7279","dialog_id":"33341","parent_dialog_script_id":"204812","prompt":"<b>Keep it.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285840","game_id":"7279","dialog_id":"33341","parent_dialog_script_id":"204812","prompt":"<b>Leave it behind<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"36468","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"285841","game_id":"7279","dialog_id":"33342","parent_dialog_script_id":"204818","prompt":"<b>Keep it.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30538","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285844","game_id":"7279","dialog_id":"33342","parent_dialog_script_id":"204817","prompt":"<b>What do you do?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"204818","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285848","game_id":"7279","dialog_id":"33342","parent_dialog_script_id":"204820","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"285851","game_id":"7279","dialog_id":"33342","parent_dialog_script_id":"204818","prompt":"<b>Leave it behind.<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"36468","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"287040","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"192578","prompt":"<b>Introduce yourself to the family and help them.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205683","link_info":"","requirement_root_package_id":"195771","sort_index":"1"},{"dialog_option_id":"287047","game_id":"7279","dialog_id":"28339","parent_dialog_script_id":"205683","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"169578","link_info":"","requirement_root_package_id":"195605","sort_index":"0"},{"dialog_option_id":"287086","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"205722","prompt":"<b>Yes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"192612","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287087","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"205720","prompt":"<b>Do you go back?<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205722","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287092","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"205722","prompt":"<b>No.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"169600","link_info":"","requirement_root_package_id":"0","sort_index":"1"},{"dialog_option_id":"287098","game_id":"7279","dialog_id":"28345","parent_dialog_script_id":"192598","prompt":"<b>Double back to avoid the group noticing you.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205720","link_info":"","requirement_root_package_id":"195628","sort_index":"1"},{"dialog_option_id":"287102","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"167131","prompt":"Continue","link_type":"DIALOG_SCRIPT","link_id":"205731","link_info":"","requirement_root_package_id":"195633","sort_index":"1"},{"dialog_option_id":"287103","game_id":"7279","dialog_id":"28035","parent_dialog_script_id":"205731","prompt":"<b>What happens next?<\/b>","link_type":"EXIT_TO_PLAQUE","link_id":"30709","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287107","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196012","prompt":"<b>[Knife] Attempt to fight.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205733","link_info":"","requirement_root_package_id":"195645","sort_index":"2"},{"dialog_option_id":"287110","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205828","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173727","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287111","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"196012","prompt":"<b>[Rifle] Attempt to fight.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205736","link_info":"","requirement_root_package_id":"195642","sort_index":"1"},{"dialog_option_id":"287114","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205827","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173727","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287218","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205736","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"205827","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287219","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205733","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"205828","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287222","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200376","prompt":"<b>Attempt to fight with your knife.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205733","link_info":"","requirement_root_package_id":"195762","sort_index":"2"},{"dialog_option_id":"287223","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205831","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287224","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"200376","prompt":"<b>Attempt to fight with your rifle.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205736","link_info":"","requirement_root_package_id":"195760","sort_index":"1"},{"dialog_option_id":"287227","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205832","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287231","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"173703","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"205835","link_info":"","requirement_root_package_id":"195769","sort_index":"1"},{"dialog_option_id":"287232","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205838","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"173716","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287234","game_id":"7279","dialog_id":"28803","parent_dialog_script_id":"205835","prompt":"","link_type":"DIALOG_SCRIPT","link_id":"205838","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287237","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205844","prompt":"Exit","link_type":"EXIT_TO_PLAQUE","link_id":"37200","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287239","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205840","prompt":"Register","link_type":"DIALOG_SCRIPT","link_id":"205842","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287241","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205842","prompt":"<b>I\u2019m happy to share my game play data for research purposes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"205844","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"287245","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205845","prompt":"Exit","link_type":"EXIT","link_id":"0","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"288163","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205842","prompt":"<b>I\u2019d prefer that my game play data not be used for research purposes.<\/b>","link_type":"DIALOG_SCRIPT","link_id":"206489","link_info":"","requirement_root_package_id":"0","sort_index":"2"},{"dialog_option_id":"288166","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"206489","prompt":"Exit","link_type":"EXIT_TO_PLAQUE","link_id":"37200","link_info":"","requirement_root_package_id":"0","sort_index":"0"},{"dialog_option_id":"288168","game_id":"7279","dialog_id":"33550","parent_dialog_script_id":"205842","prompt":"<i>Learn more about these choices.<\/i>","link_type":"EXIT_TO_PLAQUE","link_id":"37197","link_info":"","requirement_root_package_id":"0","sort_index":"1"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.182 ARIS[4136:2437780] NSNotification: SERVICES_DIALOG_OPTIONS_RECEIVED
2015-11-19 10:17:35.187 ARIS[4136:2437780] NSNotification: MODEL_DIALOG_OPTIONS_AVAILABLE
2015-11-19 10:17:35.188 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.188 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.208 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.groups.getGroupsForGame/ (1.428782)
2015-11-19 10:17:35.209 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.211 ARIS[4136:2437780] NSNotification: SERVICES_GROUPS_RECEIVED
2015-11-19 10:17:35.212 ARIS[4136:2437780] NSNotification: MODEL_GROUPS_AVAILABLE
2015-11-19 10:17:35.213 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.214 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.219 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogsForGame/ (1.424907)
2015-11-19 10:17:35.220 ARIS[4136:2437780] Fin async data:
{"data":[{"dialog_id":"28035","game_id":"7279","name":"Year 2","description":"","icon_media_id":"190343","intro_dialog_script_id":"167120","back_button_enabled":"0"},{"dialog_id":"28039","game_id":"7279","name":"Year 2 Guitar Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"167193","back_button_enabled":"0"},{"dialog_id":"28041","game_id":"7279","name":"Year 2 Rifle Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"167196","back_button_enabled":"0"},{"dialog_id":"28043","game_id":"7279","name":"Year 1 Recorder","description":"","icon_media_id":"0","intro_dialog_script_id":"167200","back_button_enabled":"1"},{"dialog_id":"28044","game_id":"7279","name":"Year 1 Candles","description":"","icon_media_id":"0","intro_dialog_script_id":"167214","back_button_enabled":"1"},{"dialog_id":"28046","game_id":"7279","name":"Day 2 Novel Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"167216","back_button_enabled":"1"},{"dialog_id":"28049","game_id":"7279","name":"Day 1 Prepare to Evacuate Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"167218","back_button_enabled":"0"},{"dialog_id":"28339","game_id":"7279","name":"Day 2","description":"","icon_media_id":"0","intro_dialog_script_id":"169565","back_button_enabled":"0"},{"dialog_id":"28342","game_id":"7279","name":"Day 2 Gratitude Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"169586","back_button_enabled":"0"},{"dialog_id":"28343","game_id":"7279","name":"Day 2 Lost Items Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"169594","back_button_enabled":"0"},{"dialog_id":"28345","game_id":"7279","name":"Year 1","description":"","icon_media_id":"190343","intro_dialog_script_id":"169597","back_button_enabled":"0"},{"dialog_id":"28348","game_id":"7279","name":"Year 1 Leave Reluctantly Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"169633","back_button_enabled":"1"},{"dialog_id":"28350","game_id":"7279","name":"Year 1 Harmonica Ending","description":"","icon_media_id":"0","intro_dialog_script_id":"169641","back_button_enabled":"0"},{"dialog_id":"28801","game_id":"7279","name":"Day 1","description":"","icon_media_id":"190343","intro_dialog_script_id":"173545","back_button_enabled":"0"},{"dialog_id":"28803","game_id":"7279","name":"Year 5","description":"","icon_media_id":"190343","intro_dialog_script_id":"173698","back_button_enabled":"0"},{"dialog_id":"29022","game_id":"7279","name":"Day 1 Choose Between","description":"","icon_media_id":"0","intro_dialog_script_id":"176054","back_button_enabled":"0"},{"dialog_id":"29228","game_id":"7279","name":"Day 1 Hazmat Tree","description":"","icon_media_id":"0","intro_dialog_script_id":"177555","back_button_enabled":"0"},{"dialog_id":"30424","game_id":"7279","name":"Continue Collecting Items?","description":"","icon_media_id":"0","intro_dialog_script_id":"187621","back_button_enabled":"0"},{"dialog_id":"30829","game_id":"7279","name":"Day 2 Intro","description":"","icon_media_id":"190343","intro_dialog_script_id":"189589","back_button_enabled":"0"},{"dialog_id":"31464","game_id":"7279","name":"Day 1 News Tree","description":"","icon_media_id":"0","intro_dialog_script_id":"191088","back_button_enabled":"0"},{"dialog_id":"33341","game_id":"7279","name":"Day 1 Keep or Leave","description":"","icon_media_id":"0","intro_dialog_script_id":"204809","back_button_enabled":"0"},{"dialog_id":"33342","game_id":"7279","name":"Day 1 Keep or Leave Hazmat","description":"","icon_media_id":"0","intro_dialog_script_id":"204817","back_button_enabled":"1"},{"dialog_id":"33550","game_id":"7279","name":"User Consent","description":"","icon_media_id":"192124","intro_dialog_script_id":"205840","back_button_enabled":"0"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.241 ARIS[4136:2437780] NSNotification: SERVICES_DIALOGS_RECEIVED
2015-11-19 10:17:35.242 ARIS[4136:2437780] NSNotification: MODEL_DIALOGS_AVAILABLE
2015-11-19 10:17:35.243 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.244 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.248 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.web_pages.getWebPagesForGame/ (1.435618)
2015-11-19 10:17:35.249 ARIS[4136:2437780] Fin async data:
{"data":[{"web_page_id":"7579","game_id":"7279","name":"Test Video","url":"https:\/\/youtu.be\/J9rLvLWz4kI","icon_media_id":"0","back_button_enabled":"1"},{"web_page_id":"8708","game_id":"7279","name":"Research Consent","url":"https:\/\/casls-vm2.uoregon.edu\/ecopod\/consentForm.php","icon_media_id":"0","back_button_enabled":"1"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.253 ARIS[4136:2437780] NSNotification: SERVICES_WEB_PAGES_RECEIVED
2015-11-19 10:17:35.254 ARIS[4136:2437780] NSNotification: MODEL_WEB_PAGES_AVAILABLE
2015-11-19 10:17:35.255 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.255 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.258 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.notes.getNotesForGame/ (1.441168)
2015-11-19 10:17:35.259 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.261 ARIS[4136:2437780] NSNotification: SERVICES_NOTES_RECEIVED
2015-11-19 10:17:35.262 ARIS[4136:2437780] NSNotification: MODEL_NOTES_AVAILABLE
2015-11-19 10:17:35.263 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.264 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.267 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.note_comments.getNoteCommentsForGame/ (1.445783)
2015-11-19 10:17:35.268 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.270 ARIS[4136:2437780] NSNotification: SERVICES_NOTE_COMMENTS_RECEIVED
2015-11-19 10:17:35.271 ARIS[4136:2437780] NSNotification: MODEL_NOTE_COMMENTS_AVAILABLE
2015-11-19 10:17:35.272 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.273 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.277 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.tags.getTagsForGame/ (1.452066)
2015-11-19 10:17:35.278 ARIS[4136:2437780] Fin async data:
{"data":[{"tag_id":"3372","game_id":"7279","tag":"Consumable","media_id":"0","visible":"1","curated":"0","sort_index":"0"},{"tag_id":"3509","game_id":"7279","tag":"Cultural","media_id":"0","visible":"1","curated":"0","sort_index":"0"},{"tag_id":"3779","game_id":"7279","tag":"IRB Consent","media_id":"0","visible":"0","curated":"0","sort_index":"0"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.283 ARIS[4136:2437780] NSNotification: SERVICES_TAGS_RECEIVED
2015-11-19 10:17:35.284 ARIS[4136:2437780] NSNotification: MODEL_TAGS_AVAILABLE
2015-11-19 10:17:35.285 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.286 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.291 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.tags.getObjectTagsForGame/ (1.463520)
2015-11-19 10:17:35.292 ARIS[4136:2437780] Fin async data:
{"data":[{"object_tag_id":"21486","object_type":"ITEM","object_id":"0","tag_id":"3779"},{"object_tag_id":"17344","object_type":"ITEM","object_id":"39784","tag_id":"3372"},{"object_tag_id":"17346","object_type":"ITEM","object_id":"39786","tag_id":"3372"},{"object_tag_id":"17354","object_type":"ITEM","object_id":"40936","tag_id":"3372"},{"object_tag_id":"17355","object_type":"ITEM","object_id":"41026","tag_id":"3372"},{"object_tag_id":"17357","object_type":"ITEM","object_id":"41028","tag_id":"3372"},{"object_tag_id":"18905","object_type":"ITEM","object_id":"41482","tag_id":"3509"},{"object_tag_id":"17362","object_type":"ITEM","object_id":"41484","tag_id":"3372"},{"object_tag_id":"17363","object_type":"ITEM","object_id":"41493","tag_id":"3372"},{"object_tag_id":"18910","object_type":"ITEM","object_id":"41540","tag_id":"3509"},{"object_tag_id":"17365","object_type":"ITEM","object_id":"41543","tag_id":"3372"},{"object_tag_id":"18907","object_type":"ITEM","object_id":"41545","tag_id":"3509"},{"object_tag_id":"18908","object_type":"ITEM","object_id":"41788","tag_id":"3509"},{"object_tag_id":"17374","object_type":"ITEM","object_id":"41790","tag_id":"3372"},{"object_tag_id":"17375","object_type":"ITEM","object_id":"41997","tag_id":"3372"},{"object_tag_id":"17378","object_type":"ITEM","object_id":"42093","tag_id":"3372"},{"object_tag_id":"17381","object_type":"ITEM","object_id":"42095","tag_id":"3372"},{"object_tag_id":"17383","object_type":"ITEM","object_id":"42096","tag_id":"3372"},{"object_tag_id":"17385","object_type":"ITEM","object_id":"42759","tag_id":"3372"},{"object_tag_id":"17388","object_type":"ITEM","object_id":"42761","tag_id":"3372"},{"object_tag_id":"17391","object_type":"ITEM","object_id":"42948","tag_id":"3372"},{"object_tag_id":"17392","object_type":"ITEM","object_id":"44713","tag_id":"3372"},{"object_tag_id":"17394","object_type":"ITEM","object_id":"44714","tag_id":"3372"},{"object_tag_id":"17397","object_type":"ITEM","object_id":"44715","tag_id":"3372"},{"object_tag_id":"17400","object_type":"ITEM","object_id":"44717","tag_id":"3372"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.308 ARIS[4136:2437780] NSNotification: SERVICES_OBJECT_TAGS_RECEIVED
2015-11-19 10:17:35.311 ARIS[4136:2437780] NSNotification: MODEL_OBJECT_TAGS_AVAILABLE
2015-11-19 10:17:35.312 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.313 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.318 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.events.getEventsForGame/ (1.481117)
2015-11-19 10:17:35.321 ARIS[4136:2437780] Fin async data:
{"data":[{"event_id":"48748","game_id":"7279","event_package_id":"31198","event":"GIVE_ITEM","qty":"1","content_id":"41028","script":null},{"event_id":"48749","game_id":"7279","event_package_id":"31198","event":"GIVE_ITEM","qty":"1","content_id":"41026","script":null},{"event_id":"52459","game_id":"7279","event_package_id":"33142","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"52668","game_id":"7279","event_package_id":"33318","event":"GIVE_ITEM","qty":"1","content_id":"41484","script":null},{"event_id":"52671","game_id":"7279","event_package_id":"33321","event":"GIVE_ITEM","qty":"1","content_id":"41482","script":null},{"event_id":"52799","game_id":"7279","event_package_id":"33404","event":"TAKE_ITEM","qty":"1","content_id":"40936","script":null},{"event_id":"52802","game_id":"7279","event_package_id":"33407","event":"TAKE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"52804","game_id":"7279","event_package_id":"33409","event":"TAKE_ITEM","qty":"1","content_id":"41026","script":null},{"event_id":"52899","game_id":"7279","event_package_id":"33471","event":"TAKE_ITEM","qty":"10","content_id":"41543","script":null},{"event_id":"52902","game_id":"7279","event_package_id":"33471","event":"GIVE_ITEM","qty":"1","content_id":"41545","script":null},{"event_id":"53273","game_id":"7279","event_package_id":"33743","event":"GIVE_ITEM","qty":"1","content_id":"41482","script":null},{"event_id":"53275","game_id":"7279","event_package_id":"33745","event":"GIVE_ITEM","qty":"1","content_id":"41484","script":null},{"event_id":"53435","game_id":"7279","event_package_id":"33809","event":"GIVE_ITEM","qty":"1","content_id":"41788","script":null},{"event_id":"53437","game_id":"7279","event_package_id":"33811","event":"GIVE_ITEM","qty":"1","content_id":"41790","script":null},{"event_id":"53479","game_id":"7279","event_package_id":"33826","event":"GIVE_ITEM","qty":"1","content_id":"41543","script":null},{"event_id":"53481","game_id":"7279","event_package_id":"33828","event":"TAKE_ITEM","qty":"10","content_id":"41543","script":null},{"event_id":"53484","game_id":"7279","event_package_id":"33828","event":"GIVE_ITEM","qty":"1","content_id":"41545","script":null},{"event_id":"53489","game_id":"7279","event_package_id":"33833","event":"GIVE_ITEM","qty":"1","content_id":"41540","script":null},{"event_id":"53491","game_id":"7279","event_package_id":"33835","event":"GIVE_ITEM","qty":"1","content_id":"41484","script":null},{"event_id":"53493","game_id":"7279","event_package_id":"33837","event":"GIVE_ITEM","qty":"1","content_id":"41482","script":null},{"event_id":"53495","game_id":"7279","event_package_id":"33839","event":"GIVE_ITEM","qty":"1","content_id":"41788","script":null},{"event_id":"53496","game_id":"7279","event_package_id":"33840","event":"GIVE_ITEM","qty":"1","content_id":"41790","script":null},{"event_id":"54157","game_id":"7279","event_package_id":"34396","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"54160","game_id":"7279","event_package_id":"34396","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"54166","game_id":"7279","event_package_id":"34399","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"54169","game_id":"7279","event_package_id":"34399","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"54174","game_id":"7279","event_package_id":"34401","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"54177","game_id":"7279","event_package_id":"34401","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"54183","game_id":"7279","event_package_id":"34404","event":"TAKE_ITEM","qty":"1","content_id":"40936","script":null},{"event_id":"54185","game_id":"7279","event_package_id":"34406","event":"TAKE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"54186","game_id":"7279","event_package_id":"34407","event":"TAKE_ITEM","qty":"1","content_id":"41026","script":null},{"event_id":"54193","game_id":"7279","event_package_id":"34414","event":"TAKE_ITEM","qty":"1","content_id":"41543","script":null},{"event_id":"54196","game_id":"7279","event_package_id":"34414","event":"GIVE_ITEM","qty":"1","content_id":"41545","script":null},{"event_id":"55364","game_id":"7279","event_package_id":"35198","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"55367","game_id":"7279","event_package_id":"35198","event":"GIVE_ITEM","qty":"1","content_id":"42759","script":null},{"event_id":"55370","game_id":"7279","event_package_id":"35201","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"55372","game_id":"7279","event_package_id":"35203","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"55375","game_id":"7279","event_package_id":"35206","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"55377","game_id":"7279","event_package_id":"35208","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"55379","game_id":"7279","event_package_id":"35210","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"55382","game_id":"7279","event_package_id":"35213","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"55385","game_id":"7279","event_package_id":"35216","event":"GIVE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"55388","game_id":"7279","event_package_id":"35216","event":"GIVE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"55390","game_id":"7279","event_package_id":"35218","event":"TAKE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"55393","game_id":"7279","event_package_id":"35218","event":"TAKE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"55402","game_id":"7279","event_package_id":"35224","event":"GIVE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"55405","game_id":"7279","event_package_id":"35224","event":"GIVE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"55782","game_id":"7279","event_package_id":"35532","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"55785","game_id":"7279","event_package_id":"35535","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"55786","game_id":"7279","event_package_id":"35536","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"56302","game_id":"7279","event_package_id":"35896","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"56305","game_id":"7279","event_package_id":"35899","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"56306","game_id":"7279","event_package_id":"35900","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"56308","game_id":"7279","event_package_id":"35902","event":"GIVE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"56311","game_id":"7279","event_package_id":"35902","event":"GIVE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"56313","game_id":"7279","event_package_id":"35904","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"56316","game_id":"7279","event_package_id":"35907","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"56319","game_id":"7279","event_package_id":"35910","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"56321","game_id":"7279","event_package_id":"35912","event":"TAKE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"56324","game_id":"7279","event_package_id":"35912","event":"TAKE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"56326","game_id":"7279","event_package_id":"35914","event":"GIVE_ITEM","qty":"1","content_id":"41997","script":null},{"event_id":"56327","game_id":"7279","event_package_id":"35915","event":"GIVE_ITEM","qty":"1","content_id":"39786","script":null},{"event_id":"56328","game_id":"7279","event_package_id":"35916","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":null},{"event_id":"56331","game_id":"7279","event_package_id":"35919","event":"GIVE_ITEM","qty":"1","content_id":"42761","script":null},{"event_id":"56334","game_id":"7279","event_package_id":"35919","event":"GIVE_ITEM","qty":"1","content_id":"42764","script":null},{"event_id":"58310","game_id":"7279","event_package_id":"37502","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":""},{"event_id":"58313","game_id":"7279","event_package_id":"37502","event":"GIVE_ITEM","qty":"1","content_id":"44845","script":""},{"event_id":"58316","game_id":"7279","event_package_id":"37502","event":"GIVE_ITEM","qty":"1","content_id":"40936","script":""},{"event_id":"58968","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"39784","script":""},{"event_id":"58971","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"39786","script":""},{"event_id":"58974","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"40936","script":""},{"event_id":"58977","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41026","script":""},{"event_id":"58980","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41028","script":""},{"event_id":"58983","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41482","script":""},{"event_id":"58986","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41484","script":""},{"event_id":"58989","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41493","script":""},{"event_id":"58992","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41540","script":""},{"event_id":"58995","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41997","script":""},{"event_id":"58998","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42093","script":""},{"event_id":"59001","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42095","script":""},{"event_id":"59004","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42096","script":""},{"event_id":"59007","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42759","script":""},{"event_id":"59010","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42761","script":""},{"event_id":"59013","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42764","script":""},{"event_id":"59016","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42948","script":""},{"event_id":"59019","game_id":"7279","event_package_id":"38118","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44845","script":""},{"event_id":"59024","game_id":"7279","event_package_id":"38132","event":"TAKE_ITEM","qty":"1","content_id":"39784","script":""},{"event_id":"59026","game_id":"7279","event_package_id":"38135","event":"TAKE_ITEM","qty":"1","content_id":"39784","script":""},{"event_id":"61669","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"39784","script":null},{"event_id":"61672","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"39786","script":null},{"event_id":"61675","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"40936","script":null},{"event_id":"61678","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41026","script":null},{"event_id":"61681","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41028","script":null},{"event_id":"61684","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41482","script":null},{"event_id":"61687","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41484","script":null},{"event_id":"61690","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41493","script":null},{"event_id":"61693","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41540","script":null},{"event_id":"61696","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41543","script":null},{"event_id":"61699","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41545","script":null},{"event_id":"61702","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41788","script":null},{"event_id":"61705","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41790","script":null},{"event_id":"61708","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"41997","script":null},{"event_id":"61711","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42093","script":null},{"event_id":"61714","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42095","script":null},{"event_id":"61717","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42096","script":null},{"event_id":"61720","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42759","script":null},{"event_id":"61723","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42761","script":null},{"event_id":"61726","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42764","script":null},{"event_id":"61729","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"42948","script":null},{"event_id":"61732","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44713","script":null},{"event_id":"61735","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44714","script":null},{"event_id":"61738","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44715","script":null},{"event_id":"61741","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44717","script":null},{"event_id":"61744","game_id":"7279","event_package_id":"40358","event":"SET_ITEM_PLAYER","qty":"0","content_id":"44845","script":null},{"event_id":"62359","game_id":"7279","event_package_id":"40894","event":"GIVE_ITEM","qty":"1","content_id":"41493","script":""},{"event_id":"62361","game_id":"7279","event_package_id":"40896","event":"GIVE_ITEM","qty":"1","content_id":"40936","script":""},{"event_id":"62362","game_id":"7279","event_package_id":"40899","event":"GIVE_ITEM","qty":"1","content_id":"42948","script":""},{"event_id":"62363","game_id":"7279","event_package_id":"40901","event":"GIVE_ITEM","qty":"1","content_id":"41540","script":""},{"event_id":"62364","game_id":"7279","event_package_id":"40904","event":"GIVE_ITEM","qty":"1","content_id":"39784","script":""},{"event_id":"62365","game_id":"7279","event_package_id":"40905","event":"GIVE_ITEM","qty":"1","content_id":"42093","script":""},{"event_id":"62366","game_id":"7279","event_package_id":"40906","event":"GIVE_ITEM","qty":"1","content_id":"42095","script":""},{"event_id":"62369","game_id":"7279","event_package_id":"40909","event":"GIVE_ITEM","qty":"1","content_id":"42096","script":""},{"event_id":"62370","game_id":"7279","event_package_id":"40911","event":"GIVE_ITEM","qty":"1","content_id":"41026","script":""},{"event_id":"62372","game_id":"7279","event_package_id":"40912","event":"GIVE_ITEM","qty":"1","content_id":"44713","script":""},{"event_id":"62373","game_id":"7279","event_package_id":"40914","event":"GIVE_ITEM","qty":"1","content_id":"44714","script":""},{"event_id":"62375","game_id":"7279","event_package_id":"40916","event":"GIVE_ITEM","qty":"1","content_id":"44715","script":""},{"event_id":"62377","game_id":"7279","event_package_id":"40918","event":"GIVE_ITEM","qty":"1","content_id":"44717","script":""},{"event_id":"62384","game_id":"7279","event_package_id":"40925","event":"GIVE_ITEM","qty":"2","content_id":"39784","script":""},{"event_id":"63327","game_id":"7279","event_package_id":"41729","event":"GIVE_ITEM","qty":"1","content_id":"42761","script":""},{"event_id":"63328","game_id":"7279","event_package_id":"41732","event":"TAKE_ITEM","qty":"1","content_id":"42761","script":""},{"event_id":"63330","game_id":"7279","event_package_id":"41734","event":"GIVE_ITEM","qty":"1","content_id":"42764","script":""},{"event_id":"63333","game_id":"7279","event_package_id":"41735","event":"TAKE_ITEM","qty":"1","content_id":"42764","script":""},{"event_id":"63335","game_id":"7279","event_package_id":"41738","event":"GIVE_ITEM","qty":"1","content_id":"42759","script":""},{"event_id":"63337","game_id":"7279","event_package_id":"41739","event":"TAKE_ITEM","qty":"1","content_id":"42759","script":""},{"event_id":"64020","game_id":"7279","event_package_id":"42309","event":"GIVE_ITEM","qty":"1","content_id":"49787","script":""},{"event_id":"64023","game_id":"7279","event_package_id":"42311","event":"GIVE_ITEM","qty":"1","content_id":"49788","script":""},{"event_id":"64057","game_id":"7279","event_package_id":"42340","event":"TAKE_ITEM","qty":"1","content_id":"39786","script":""},{"event_id":"64058","game_id":"7279","event_package_id":"42343","event":"TAKE_ITEM","qty":"1","content_id":"42948","script":""},{"event_id":"64059","game_id":"7279","event_package_id":"42344","event":"TAKE_ITEM","qty":"1","content_id":"41482","script":""},{"event_id":"64062","game_id":"7279","event_package_id":"42345","event":"TAKE_ITEM","qty":"1","content_id":"41997","script":""},{"event_id":"64063","game_id":"7279","event_package_id":"42346","event":"TAKE_ITEM","qty":"1","content_id":"42095","script":""},{"event_id":"64064","game_id":"7279","event_package_id":"42349","event":"TAKE_ITEM","qty":"1","content_id":"42759","script":""},{"event_id":"64067","game_id":"7279","event_package_id":"42351","event":"TAKE_ITEM","qty":"1","content_id":"41484","script":""},{"event_id":"64070","game_id":"7279","event_package_id":"42354","event":"TAKE_ITEM","qty":"1","content_id":"44845","script":""},{"event_id":"64072","game_id":"7279","event_package_id":"42356","event":"TAKE_ITEM","qty":"1","content_id":"42761","script":""},{"event_id":"65341","game_id":"7279","event_package_id":"43298","event":"TAKE_ITEM","qty":"1","content_id":"41493","script":""},{"event_id":"65346","game_id":"7279","event_package_id":"43300","event":"TAKE_ITEM","qty":"1","content_id":"41493","script":""}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.413 ARIS[4136:2437780] NSNotification: SERVICES_EVENTS_RECEIVED
2015-11-19 10:17:35.415 ARIS[4136:2437780] NSNotification: MODEL_EVENTS_AVAILABLE
2015-11-19 10:17:35.417 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.418 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.428 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.dialogs.getDialogScriptsForGame/ (1.624586)
2015-11-19 10:17:35.431 ARIS[4136:2437780] Fin async data:
{"data":[{"dialog_script_id":"159433","game_id":"7279","dialog_id":"0","dialog_character_id":"27683","text":"Is anyone here? Open the door!","event_package_id":"0"},{"dialog_script_id":"159434","game_id":"7279","dialog_id":"0","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"159436","game_id":"7279","dialog_id":"0","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"159437","game_id":"7279","dialog_id":"0","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"167120","game_id":"7279","dialog_id":"28035","dialog_character_id":"32468","text":"As the year passes, you feel more thankful for your friends. Their company helps you feel less lonely, and you think about life before the Georgia Flu outbreak less often.","event_package_id":"0"},{"dialog_script_id":"167124","game_id":"7279","dialog_id":"28035","dialog_character_id":"34397","text":"You move to the edge of the camp and stare at your hands.\n\nYou overhear one of the members of your group interrogating the two children. One of them screams.\n\n<script type=\"text\/javascript\">\n\/\/Child screams sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris67ee6d0821e6572114ab1583f7be9dfa.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"167127","game_id":"7279","dialog_id":"28035","dialog_character_id":"34394","text":"\"All right!\" You interject. \"That's enough.\"\n\nThe interrogation stops. Sniffling, one of the children speaks up.\n\n<span style='color:#B84729;'>\"We were with the people who robbed you, but we didn\u2019t like stealing. So we left.\"<\/span>\n\nYou convince the group to let the kids stay.","event_package_id":"0"},{"dialog_script_id":"167129","game_id":"7279","dialog_id":"28035","dialog_character_id":"32468","text":"Others in your group throw rocks at the children to get them to leave. The youngest cries and stumbles as they leave your camp. You wonder if sending them away was the right thing to do.","event_package_id":"0"},{"dialog_script_id":"167131","game_id":"7279","dialog_id":"28035","dialog_character_id":"32465","text":"That night, the children sneak into your camp. They move silently through the shadows. The older child uses a machete to kill two members of your group.\n\nHe turns to attack you, and you manage to fight him off. In the struggle, however, he cuts your femoral artery. \n\n<script type=\"text\/javascript\">\n\/\/Crickets sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris2803b6fff359c0011921a84f41c4af35.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"167137","game_id":"7279","dialog_id":"28035","dialog_character_id":"32465","text":"The kids are thankful you let them stay. They are cold and huddle up next to you, but the oldest regards you with skepticism. You imagine how hard their life must be. The children fall asleep next to you.","event_package_id":"0"},{"dialog_script_id":"167193","game_id":"7279","dialog_id":"28039","dialog_character_id":"32468","text":"You carry the young child back on your shoulders and carry the guitar in your hands.\n\nOnce back at camp, the group is excited that you found a guitar. Jeremy immediately picks it up to play. You accompany him on the harmonica.","event_package_id":"0"},{"dialog_script_id":"167196","game_id":"7279","dialog_id":"28041","dialog_character_id":"32059","text":"You carry the young child back on your shoulders and carry the gun in your hands.\n\nOnce back at camp, the group is excited that you found a rifle with bullets. Charlie wants to borrow it to see if she can hunt a rabbit for dinner, but you don\u2019t want to share. After all, you found it.","event_package_id":"0"},{"dialog_script_id":"167200","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"The group looks at the hazelnuts with awe and wonder. \u201cWhere did you find these?\u201d Jeremy asks. \u201cCan you teach us how to forage for them like you do?\u201d","event_package_id":"0"},{"dialog_script_id":"167202","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"The group lets you stay for the night, but they ask you to leave the next day.","event_package_id":"0"},{"dialog_script_id":"167203","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"The next day, you lead the group on an outing to forage for wild edible plants. As you rummage through the underbrush, you find some candles.","event_package_id":"0"},{"dialog_script_id":"167206","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"\u201cIt\u2019s a good thing I have you, Luli,\u201d you say to your imaginary companion. \u201cLife would be lonely without you.\u201d\n\nLuli remains quiet. You decide the last statement is untrue. ","event_package_id":"0"},{"dialog_script_id":"167209","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"You lie down underneath a tree and begin to cry. Days later, you still have not moved. You know you should find some water, but you aren\u2019t thirsty. Or hungry. You aren\u2019t even sad anymore.","event_package_id":"0"},{"dialog_script_id":"167212","game_id":"7279","dialog_id":"28043","dialog_character_id":"0","text":"As you look off into the distance, you swear you can see Luli bounding toward you, her ears flopping in the wind.\n\nYou close your eyes and never wake up. The authorities add you to the count of those who don\u2019t survive the pandemic aftermath.","event_package_id":"0"},{"dialog_script_id":"167214","game_id":"7279","dialog_id":"28044","dialog_character_id":"0","text":"You feel thankful for finding Jeremy and his friends, and you feel more like yourself than you have in a long, long time.","event_package_id":"0"},{"dialog_script_id":"167216","game_id":"7279","dialog_id":"28046","dialog_character_id":"30643","text":"You sit beneath a tree and begin to read the novel. As you drift off to sleep, you feel strangely optimistic and begin to think that things may turn out okay.","event_package_id":"0"},{"dialog_script_id":"167218","game_id":"7279","dialog_id":"28049","dialog_character_id":"35427","text":"<span style='color:#FC7A57;'>\"We only have a little bit of time to gather what we need, and I have to get my own things together, too. The RA did tell me that the items we need are all over campus.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"169535","game_id":"7279","dialog_id":"28049","dialog_character_id":"35429","text":"<span style='color:#FC7A57;'>\"There are different items at each location. Think through what you want to bring with you. Remember, you can only take ten things with you. Choose wisely. Good luck and stay alive! I hope I will see you again. Oh! If you see a woman named Charlie, tell her to meet me at the Pioneer Woman.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"169565","game_id":"7279","dialog_id":"28339","dialog_character_id":"30642","text":"You continue walking and find a family of four. You overhear them talking about being hungry. The youngest appears to have a broken arm. you want to help, but you're worried that they're contagious.\n<script type=\"text\/javascript\">\n\/\/Whispering sound for Day 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisf3b1a78f46761bb7b992b48756d22d80.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169568","game_id":"7279","dialog_id":"28339","dialog_character_id":"28571","text":"You continue walking, but wonder if you made the right decision. Lost in thought, you lose focus on your surroundings.\n","event_package_id":"0"},{"dialog_script_id":"169569","game_id":"7279","dialog_id":"28339","dialog_character_id":"35581","text":"\"Hey!\" You holler to the family. \"I have some things that might help you. I'm going to dump my backpack out. If you see something you need, say so. I'll leave it here for you to get when I go.\"\n\n<script type=\"text\/javascript\">\n\/\/Backpack dump for Day 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisea916efa9fe90c124c238c21d6d5b4c8.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169570","game_id":"7279","dialog_id":"28339","dialog_character_id":"28571","text":"Soon after meeting the family, you begin to cough. You feel a heat begin to radiate from your forehead. You have the tell-tale fever of the Georgia Flu.","event_package_id":"0"},{"dialog_script_id":"169576","game_id":"7279","dialog_id":"28339","dialog_character_id":"30645","text":"You wonder if you could have helped in another way. You may have been too generous and exercised too little caution.","event_package_id":"0"},{"dialog_script_id":"169578","game_id":"7279","dialog_id":"28339","dialog_character_id":"30642","text":"What would you like to give them?","event_package_id":"0"},{"dialog_script_id":"169586","game_id":"7279","dialog_id":"28342","dialog_character_id":"35581","text":"\"Hey!\" You holler to the family. \"I have some things that might help you. I\u2019m going to leave them here for you. When I leave, come get them. I'm sorry I can't help more.\" The two adults in the family look at you. You can see gratitude in their eyes.\n\n<script type=\"text\/javascript\">\n\/\/Dumping stuff out of backpack sound for Day 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisf35e08fc254c26864480577358ccc4c0.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169588","game_id":"7279","dialog_id":"28342","dialog_character_id":"30643","text":"You sit beneath a tree to rest. As you drift off to sleep, you feel strangely optimistic.","event_package_id":"0"},{"dialog_script_id":"169594","game_id":"7279","dialog_id":"28343","dialog_character_id":"30643","text":"You manage to drag yourself a few feet ahead, hide in some bushes, and fall asleep - cold, lonely, and regretful. You wish you had helped the family. After all, the bandits took everything you had anyway.","event_package_id":"0"},{"dialog_script_id":"169597","game_id":"7279","dialog_id":"28345","dialog_character_id":"32465","text":"","event_package_id":"0"},{"dialog_script_id":"169598","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"Along the way, you\u2019ve found a dog collar that reminds you of your childhood pet Luli. You fasten it to the outside of your backpack and talk to Luli as if she were walking beside you. As you wander, you come upon a makeshift camp with about a dozen people.","event_package_id":"0"},{"dialog_script_id":"169600","game_id":"7279","dialog_id":"28345","dialog_character_id":"32065","text":"\"It's a good thing I have you, Luli,\" you say to your imaginary companion. \"Life would be lonely without you.\"\n\nLuli remains quiet. You decide the last statement is untrue. Life is lonely either way.","event_package_id":"0"},{"dialog_script_id":"169601","game_id":"7279","dialog_id":"28345","dialog_character_id":"32067","text":"","event_package_id":"0"},{"dialog_script_id":"169603","game_id":"7279","dialog_id":"28345","dialog_character_id":"35436","text":"You lie down underneath a tree and begin to cry. Days later, you still have not moved. You know you should find some water, but you aren\u2019t thirsty. Or hungry. You aren't even sad anymore. You don't care about anything at all.","event_package_id":"0"},{"dialog_script_id":"169605","game_id":"7279","dialog_id":"28345","dialog_character_id":"30647","text":"As you look off into the distance, you swear you can see Luli bounding toward you.\n\nYou close your eyes and never wake up.\n\n<script type=\"text\/javascript\">\n\/\/Dog barking and collar jingling sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris6edd42ee4587a9a74655dbe315b220c7.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169611","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"It takes you a moment to realize from where. The novel you picked up before evacuating the city had a picture as a bookmark. The woman in the group is one of the two in the picture!","event_package_id":"0"},{"dialog_script_id":"169612","game_id":"7279","dialog_id":"28345","dialog_character_id":"32059","text":"You pull the picture from the book.\n\n\"Excuse me,\" you say as you approach her. \"I believe this belongs to you.\"\n\nYou hold out the photo and she gasps in surprise.","event_package_id":"0"},{"dialog_script_id":"169614","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"You don't want to bring up bad memories, so you keep the photo a secret. You approach the group.","event_package_id":"0"},{"dialog_script_id":"169616","game_id":"7279","dialog_id":"28345","dialog_character_id":"32062","text":"<span style='color:#4B33AF;'>\"That's a picture of me with my mother!\"<\/span> she exclaims. \n\nThe woman shares that her name is Charlie. She is so thankful that you\u2019ve shared a memento from before her life the Georgia Flu. She invites you to sit down.","event_package_id":"0"},{"dialog_script_id":"169617","game_id":"7279","dialog_id":"28345","dialog_character_id":"32067","text":"","event_package_id":"0"},{"dialog_script_id":"169619","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"The two of you exchange stories throughout the afternoon. As the sun sets, Jeremy pulls out a harmonica from his back pocket.","event_package_id":"0"},{"dialog_script_id":"169620","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"Jeremy begins to teach you how to play the harmonica. He even gives you an extra one that he had stored with some of his other meager belongings. In exchange for the lesson and the harmonica, you share some hazelnuts that you collected. The group looks at the hazelnuts with wonder.\n<script type=\"text\/javascript\">\n\/\/Harmonica 3 sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisd60dff2cc1b0eb5d9826feb59f748c7d.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169622","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"Jeremy plays the harmonica for you. Although Jeremy has taken to you, the others regard you with suspicion.\n\nThe group lets you stay for the night, but they ask you to leave the next day. You leave reluctantly.\n\n<script type=\"text\/javascript\">\n\/\/Harmonica 2 sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5a7baaafca2fa0cc702e1cf02a82ab32.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169633","game_id":"7279","dialog_id":"28348","dialog_character_id":"32065","text":"\u201cIt\u2019s a good thing I have you, Luli,\u201d you say to your imaginary companion. \u201cLife would be lonely without you.\u201d\n\nLuli remains quiet. You decide the last statement is untrue. ","event_package_id":"0"},{"dialog_script_id":"169635","game_id":"7279","dialog_id":"28348","dialog_character_id":"35436","text":"You lie down underneath a tree and begin to cry. Days later, you still have not moved. You know you should find some water, but you aren\u2019t thirsty. Or hungry. You aren\u2019t even sad anymore.","event_package_id":"0"},{"dialog_script_id":"169637","game_id":"7279","dialog_id":"28348","dialog_character_id":"34384","text":"As you look off into the distance, you swear you can see Luli bounding toward you, her ears flopping in the wind.\n\nYou close your eyes and never wake up. The authorities add you to the count of those who don\u2019t survive the pandemic aftermath.\n\n<script type=\"text\/javascript\">\n\/\/Dog barking and collar jingling sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris6edd42ee4587a9a74655dbe315b220c7.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169641","game_id":"7279","dialog_id":"28350","dialog_character_id":"32069","text":"<span style='color:#FC7A57;'>\"Where did you find these?\"<\/span> Jeremy asks. <span style='color:#FC7A57;'>\"Can you teach us how to forage for them like you do?\"<\/span>","event_package_id":"0"},{"dialog_script_id":"169643","game_id":"7279","dialog_id":"28350","dialog_character_id":"32065","text":"\"It's a good thing I have you, Luli,\" you say to your imaginary companion. \"Life would be lonely without you.\"\n\nLuli remains quiet. You decide the last statement is untrue. Life is lonely either way.","event_package_id":"0"},{"dialog_script_id":"169644","game_id":"7279","dialog_id":"28350","dialog_character_id":"35497","text":"The next day, you lead the group on an outing to forage for wild edible plants.","event_package_id":"0"},{"dialog_script_id":"169646","game_id":"7279","dialog_id":"28350","dialog_character_id":"32465","text":"You lie down underneath a tree and begin to cry. Days later, you still have not moved. You know you should find some water, but you aren\u2019t thirsty. Or hungry. You aren't even sad anymore. You don't care about anything at all.","event_package_id":"0"},{"dialog_script_id":"169648","game_id":"7279","dialog_id":"28350","dialog_character_id":"30647","text":"As you look off into the distance, you swear you can see Luli bounding toward you.\n\nYou close your eyes and never wake up.\n\n<script type=\"text\/javascript\">\n\/\/Dog barking and collar jingling sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris6edd42ee4587a9a74655dbe315b220c7.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169649","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"The two of you exchange stories throughout the afternoon. As the sun sets, Jeremy pulls out a harmonica from his back pocket.","event_package_id":"0"},{"dialog_script_id":"169653","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"A woman in the group named Charlie approaches you. You remember hearing about her on the day that you evacuated the city.","event_package_id":"0"},{"dialog_script_id":"169654","game_id":"7279","dialog_id":"28345","dialog_character_id":"32062","text":"Charlie is so thankful that you\u2019ve shared a memory that makes her think of her family and how life was before the Georgia Flu. She shows you a picture of her family that she has kept all this time. You share some hazelnuts that you collected with her. The group looks at the hazelnuts with wonder.","event_package_id":"0"},{"dialog_script_id":"169655","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"The group lets you stay for the night, but they ask you to leave the next day. You leave reluctantly.","event_package_id":"0"},{"dialog_script_id":"169657","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"<span style='color:#FC7A57;'>\"Where did you find these?\"<\/span> Jeremy asks. <span style='color:#FC7A57;'>\"Can you teach us how to forage for them like you do?\"<\/span>","event_package_id":"0"},{"dialog_script_id":"169659","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"The group lets you stay for the night, but they ask you to leave the next day. You leave reluctantly.","event_package_id":"0"},{"dialog_script_id":"169660","game_id":"7279","dialog_id":"28345","dialog_character_id":"35497","text":"The next day, you lead the group on an outing to forage for wild edible plants.","event_package_id":"0"},{"dialog_script_id":"169669","game_id":"7279","dialog_id":"28035","dialog_character_id":"30647","text":"Your friends are unable to stop the bleeding. A calmness washes over you.\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169676","game_id":"7279","dialog_id":"28039","dialog_character_id":"32470","text":"The vibrations of the harmonica and the guitar flow through you. You smell rabbit roasting over a fire and look forward to a wonderful meal. This is one of the happiest moments you can remember in quite some time.\n\n<script type=\"text\/javascript\">\n\/\/Guitar and Harmonica sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisc02e6e7d0c97db52a29ed70a68d09a7c.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"169679","game_id":"7279","dialog_id":"28041","dialog_character_id":"31628","text":"Your resistance to sharing leads the others in the group to wonder if you are still a contributing member of the group.","event_package_id":"0"},{"dialog_script_id":"173545","game_id":"7279","dialog_id":"28801","dialog_character_id":"28534","text":"Loud knocking interrupts your afternoon nap.\n<script type=\"text\/javascript\">\n\/\/Knock sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris4bfe9bb8a25c334919e41751ef9af40d.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"38139"},{"dialog_script_id":"173550","game_id":"7279","dialog_id":"28801","dialog_character_id":"28544","text":"You wake up from your nap hungry and think about getting some dinner. You sense something isn't right. Your stomach sinks. You fling the door open, step out, and see the residence hall is deserted.\n\n<script type=\"text\/javascript\">\n\/\/Creaky Door sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisaccf886b8edce6328cc990739f300f3b.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173551","game_id":"7279","dialog_id":"28801","dialog_character_id":"28444","text":"","event_package_id":"0"},{"dialog_script_id":"173553","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"","event_package_id":"0"},{"dialog_script_id":"173556","game_id":"7279","dialog_id":"28801","dialog_character_id":"28539","text":"Jeremy from down the hall must be crazy. You go back into your suite and grab your textbook to get some homework done.","event_package_id":"0"},{"dialog_script_id":"173557","game_id":"7279","dialog_id":"28801","dialog_character_id":"35429","text":"<span style='color:#FC7A57;'>\"Okay,\"<\/span> Jeremy agrees. <span style='color:#FC7A57;'>\"But hurry!\"<\/span>","event_package_id":"0"},{"dialog_script_id":"173572","game_id":"7279","dialog_id":"28801","dialog_character_id":"28534","text":"","event_package_id":"35224"},{"dialog_script_id":"173575","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"<span style='color:#FC7A57;'>\"Thanks for hurrying. Before she left, the RA gave me some stuff. I can't possibly carry it all in addition to my own stuff.\"<\/span>","event_package_id":"35198"},{"dialog_script_id":"173583","game_id":"7279","dialog_id":"28801","dialog_character_id":"28542","text":"The Georgia Flu inadvertently settles into your lungs. You get tired of doing homework and lay down. ","event_package_id":"0"},{"dialog_script_id":"173589","game_id":"7279","dialog_id":"28801","dialog_character_id":"28539","text":"You rub your eyes, yawn, and open up a textbook from one of your classes to get some homework done.","event_package_id":"0"},{"dialog_script_id":"173591","game_id":"7279","dialog_id":"28801","dialog_character_id":"34407","text":"What do you do?","event_package_id":"0"},{"dialog_script_id":"173592","game_id":"7279","dialog_id":"28801","dialog_character_id":"28542","text":"The Georgia Flu inadvertently settles into your lungs. You get tired of doing homework and lay down.","event_package_id":"0"},{"dialog_script_id":"173622","game_id":"7279","dialog_id":"28801","dialog_character_id":"28540","text":"You rub your eyes and go back to bed, snuggling deep into the covers so the blankets cover up your eyes.\n\n<script type=\"text\/javascript\">\n\/\/Wind sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce8da5eb270054935641408f01ccde50.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173638","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"Jeremy plays the harmonica while you listen and eat hazelnuts. The group looks at the hazelnuts with wonder.\n\n<script type=\"text\/javascript\">\n\/\/Harmonica Short Soft sound for Year 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris7b288957c0ed6d2307689014da5fc546.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173640","game_id":"7279","dialog_id":"28035","dialog_character_id":"34395","text":"You are suspicious of the children.\n\n\"Are you with the thieves?\" you scream at the youngest and shake her shoulders. Another member of your group holds down the oldest. \n\nThe youngest starts to cry, and the oldest screams out.\n\n<script type=\"text\/javascript\">\n\/\/Crying children sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris74710591285922bc161bd8586e84b842.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173642","game_id":"7279","dialog_id":"28035","dialog_character_id":"34394","text":"Finally, the youngest stops crying. She admits, <span style='color:#B84729;'>\"We were with the people who robbed you, but we didn\u2019t like stealing so we left.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"173645","game_id":"7279","dialog_id":"28035","dialog_character_id":"34389","text":"You try your best to calm the children by talking gently to them.\n\nThe youngest begins to cry. The oldest crosses his arms in front of his chest and glares at you.","event_package_id":"0"},{"dialog_script_id":"173647","game_id":"7279","dialog_id":"28035","dialog_character_id":"34393","text":"You move to the edge of camp with the children and play your harmonica. The music reminds one of them of his older brother who also could play, and he shares everything he knows. \n\n<span style='color:#B84729;'>\"We were with the people who robbed you,\"<\/span> he admits. <span style='color:#B84729;'>\"But we didn't like stealing, so we left.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"173664","game_id":"7279","dialog_id":"28035","dialog_character_id":"34401","text":"The next morning, you decide to leave the camp to forage for some food, and you let the children come with you. Along the way, you venture toward an abandoned house. ","event_package_id":"0"},{"dialog_script_id":"173666","game_id":"7279","dialog_id":"28035","dialog_character_id":"32471","text":"Inside the house, you find a rifle that miraculously still has bullets and an acoustic guitar. You want to take both back with you, but the youngest child is tired. You will have to carry her back, and you can only carry her and one other item.","event_package_id":"0"},{"dialog_script_id":"173667","game_id":"7279","dialog_id":"28035","dialog_character_id":"32468","text":"You return to the group empty handed. You wonder how long you will be able to continue surviving.","event_package_id":"0"},{"dialog_script_id":"173677","game_id":"7279","dialog_id":"28035","dialog_character_id":"32470","text":"The kids are thankful that you let them stay. You use your fire starter to start a fire for you and the children. The youngest pulls a book from her backpack.\n\n<script type=\"text\/javascript\">\n\/\/Crackling fire sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris5dc7a7912ad11facf2f62a098d407b08.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173679","game_id":"7279","dialog_id":"28035","dialog_character_id":"32470","text":"You offer to read it for her. It\u2019s a book that your mother used to read to you. You feel honored to create a memory for the child that is similar to your own growing up. The children fall asleep next to you.","event_package_id":"0"},{"dialog_script_id":"173698","game_id":"7279","dialog_id":"28803","dialog_character_id":"35438","text":"Five years have passed since the Georgia Flu outbreak.","event_package_id":"0"},{"dialog_script_id":"173699","game_id":"7279","dialog_id":"28803","dialog_character_id":"35438","text":"You are sitting underneath a tree enjoying the shade and taking a break from walking when you hear three distinct voices, fainter at first and then growing louder. You know another group is approaching.\n\n<script type=\"text\/javascript\">\n\/\/Muffled Voices sound for Day 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arise571bc539d9d9f30524e8690cd2929e0.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173700","game_id":"7279","dialog_id":"28803","dialog_character_id":"34526","text":"You make your way back to your friends. Upon returning to your camp, you are surprised to find no one there. You try unsuccessfully to follow footprints in the dirt.","event_package_id":"0"},{"dialog_script_id":"173703","game_id":"7279","dialog_id":"28803","dialog_character_id":"34526","text":"Three weeks pass, and you are so weak from hunger that you can hardly move. As the days wear on, you become more and more hungry, but are unable to find food. You stay near the area, though, hoping that your friends will return.\n\n<script type=\"text\/javascript\">\n\/\/Stomach Growling sound for Day 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris456ef65fd2cfd38fc441e1445ee0602d.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173706","game_id":"7279","dialog_id":"28803","dialog_character_id":"35440","text":"You step out with your rifle pointed at them, just in case. You watch them come into view.\n\n<script type=\"text\/javascript\">\n\/\/Sound of feet walking sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisf9ba1765fa0716031065b84d667c840e.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173708","game_id":"7279","dialog_id":"28803","dialog_character_id":"35436","text":"Days later, you still have not moved. You know you should find some water, but you aren't thirsty. Or hungry. You aren\u2019t even sad anymore. You don't care about anything at all.","event_package_id":"0"},{"dialog_script_id":"173709","game_id":"7279","dialog_id":"28803","dialog_character_id":"35508","text":"You notice a tangle of bushes - the perfect place to hide!\n\nYou overhear a portion of the conversation.\n\n\"Those look like birch trees over there,\" one says to the other. \"There's likely a water source nearby.\"\n\nTheir resourcefulness is impressive.\n\n<script type=\"text\/javascript\">\n\/\/Sound of feet walking sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisf9ba1765fa0716031065b84d667c840e.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173711","game_id":"7279","dialog_id":"28803","dialog_character_id":"34527","text":"Your eyes go out of focus, and you swear you hear Jeremy playing the harmonica as he did when you first met him after the Georgia Flu. You hear Charlie's voice reading a story out loud.\n\n<script type=\"text\/javascript\">\n\/\/Harmonica Short Soft sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris7b288957c0ed6d2307689014da5fc546.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173713","game_id":"7279","dialog_id":"28803","dialog_character_id":"30647","text":"You close your eyes and never wake up.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173714","game_id":"7279","dialog_id":"28803","dialog_character_id":"35444","text":"You breathe deeply before standing up and revealing your hiding spot.\n\n\"There is a river over there. I used it this morning to wash,\" you interject into their conversation. The trio stare at you in disbelief.","event_package_id":"0"},{"dialog_script_id":"173715","game_id":"7279","dialog_id":"28803","dialog_character_id":"35445","text":"You wait a few hours for the group to move along and then track them. As soon as the sun sets, you sneak into their camp and steal their backpacks. One of them wakes up and sees you.","event_package_id":"0"},{"dialog_script_id":"173716","game_id":"7279","dialog_id":"28803","dialog_character_id":"34601","text":"You awaken in the middle of the night with one of the group sitting on your chest and holding a knife to your throat.\n\n<script type=\"text\/javascript\">\n\/\/Heavy Breathing sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris341adfe27395b82cee4efecfa0611a3a.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173718","game_id":"7279","dialog_id":"28803","dialog_character_id":"35444","text":"\"My friends asked me to find an area with more resources than we have. I've been scouting out this area. Although there is water, there isn\u2019t much food, and the water attracts larger predators. I'm going to continue moving east for a few days to find a better spot. Would you like to come with me?\" The three agree to join you.","event_package_id":"0"},{"dialog_script_id":"173719","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"That night, you share the hazelnuts you have in your backpack with the trio. In exchange, they share some rabbit jerky they had prepared.\n\nYou use your backpack as a pillow and stare at the stars. You debate whether to return to your group with the trio. Although they have valuable skills, they will be more mouths to feed.","event_package_id":"0"},{"dialog_script_id":"173721","game_id":"7279","dialog_id":"28803","dialog_character_id":"34601","text":"You feel as if you\u2019ve made a good decision. \n\nYou awaken in the middle of the night with one of the group members sitting on your chest and holding a knife to your throat.","event_package_id":"0"},{"dialog_script_id":"173722","game_id":"7279","dialog_id":"28803","dialog_character_id":"35502","text":"You feel good about your decision. \n\nYou awaken in the middle of the night and reflect on your life since the Georgia Flu. Although life has been difficult, you have managed to do more than stay alive. You have built a community and shared memories, music, and stories. You are happy and can\u2019t wait to return to your friends.\n\n<script type=\"text\/javascript\">\n\/\/Crickets sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris2803b6fff359c0011921a84f41c4af35.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173725","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"You are now alone with no resources. You wonder what to do.\n\n<script type=\"text\/javascript\">\n\/\/Crickets sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris2803b6fff359c0011921a84f41c4af35.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"40358"},{"dialog_script_id":"173727","game_id":"7279","dialog_id":"28803","dialog_character_id":"35502","text":"As you walk, you reflect on your life since the Georgia Flu. Although life has been difficult, you managed to build a community and make friends. You share memories with them, making music, and telling stories. You feel happy about your time with them and can\u2019t wait to return.\n\n<script type=\"text\/javascript\">\n\/\/Crickets sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris2803b6fff359c0011921a84f41c4af35.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173733","game_id":"7279","dialog_id":"28803","dialog_character_id":"35502","text":"However, you also feel regret for some of the things you have had to do to survive. The people you have had to hurt, leave behind, or even kill had friends and family - lives which could have been forever altered by your decisions. You worry that, in surviving, you may have lost something you will never regain.","event_package_id":"0"},{"dialog_script_id":"173738","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"You manage to wrestle him off your chest. You grab your backpack and run toward the west, listening to hear if footsteps are following you. You start making your way back to your friends.\n\n<script type=\"text\/javascript\">\n\/\/Rustling leaves sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arise2f88b6e5d3c9808f0fb9fe286aabd45.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173742","game_id":"7279","dialog_id":"28803","dialog_character_id":"34530","text":"He manages to sneak up on you and tackle you. You fall to the ground with a thud. You see a glimmer of a knife blade in the moonlight. He stabs you multiple times in the stomach.\n\n<script type=\"text\/javascript\">\n\/\/Scuffle sound for Day 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris10026fb7128b9b9825f01075009d079c.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173743","game_id":"7279","dialog_id":"28803","dialog_character_id":"30647","text":"A calmness washes over you. You reflect on your life since the Georgia Flu. Although life has been difficult, you managed to build a community and make friends. Your decision to treat the trio as a way to gain resources rather than as human beings who deserve dignity was clearly a bad one. Your last feeling is one of regret.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173745","game_id":"7279","dialog_id":"28803","dialog_character_id":"35444","text":"You put your hands in the air. \"I'm unarmed,\" you say loudly.","event_package_id":"0"},{"dialog_script_id":"173747","game_id":"7279","dialog_id":"28803","dialog_character_id":"35441","text":"One of them crumples to the ground, and the other two scatter. In the commotion, you run to escape from the other two. You take a moment to catch your breath.\n\n<script type=\"text\/javascript\">\n\/\/Gunshot sound for Day 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisab3b9862fe1e4710f113cb1d08a361a0.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173749","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"That night, you wonder if the others have followed you. You stay up listening to each cricket, each rustling leaf, each minute sound listening for footsteps. You fall into a light sleep.\n\n<script type=\"text\/javascript\">\n\/\/Crickets sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris2803b6fff359c0011921a84f41c4af35.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173751","game_id":"7279","dialog_id":"28803","dialog_character_id":"34528","text":"One member of the trio sneaks up behind you. She tackles you, and you fall to the ground with a thud. As you struggle with her, you see a glimmer of a knife blade in the sunlight. She stabs you multiple times in the stomach.\n\n<script type=\"text\/javascript\">\n\/\/Scuffle sound for Day 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris10026fb7128b9b9825f01075009d079c.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"173755","game_id":"7279","dialog_id":"28803","dialog_character_id":"30647","text":"A calmness washes over you. You reflect on your life since the Georgia Flu. Although life has been difficult, you managed to build a community and make friends. Your decision to assume ill intentions from the trio was clearly a poor one. Your last feeling was one of regret.\n\n<script type=\"text\/javascript\">\n\/\/Hawk cry for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisec0a994d93865c45db6e3482c00e4fc9.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"176054","game_id":"7279","dialog_id":"29022","dialog_character_id":"35429","text":"<span style='color:#FC7A57;'>\"Thanks for hurrying. Before she left, the RA gave me some stuff. I can't possibly carry it all in addition to my own stuff.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"176065","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"You open the door and a stranger is standing there.\n<script type=\"text\/javascript\">\n\/\/Creaky Door sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce8da5eb270054935641408f01ccde50.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"177401","game_id":"7279","dialog_id":"28801","dialog_character_id":"30640","text":"","event_package_id":"0"},{"dialog_script_id":"177428","game_id":"7279","dialog_id":"28801","dialog_character_id":"30640","text":"","event_package_id":"0"},{"dialog_script_id":"177555","game_id":"7279","dialog_id":"29228","dialog_character_id":"35421","text":"As you open the door to leave your suite, a woman breathing heavily in a yellow hazmat suit walks quickly up to you.\n\n<script type=\"text\/javascript\">\n\/\/Respirator breathing sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris341adfe27395b82cee4efecfa0611a3a.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"177558","game_id":"7279","dialog_id":"29228","dialog_character_id":"28443","text":"","event_package_id":"0"},{"dialog_script_id":"177561","game_id":"7279","dialog_id":"29228","dialog_character_id":"30637","text":"","event_package_id":"0"},{"dialog_script_id":"177562","game_id":"7279","dialog_id":"29228","dialog_character_id":"28544","text":"","event_package_id":"35919"},{"dialog_script_id":"177565","game_id":"7279","dialog_id":"29228","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"177608","game_id":"7279","dialog_id":"28801","dialog_character_id":"34384","text":"You wake up, feverish and uncomfortable, a few times as the night wears on, but you don\u2019t wake up at all come morning.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"177609","game_id":"7279","dialog_id":"28801","dialog_character_id":"30647","text":"You wake up, feverish and uncomfortable, a few times as the night wears on, but you don\u2019t wake up at all come morning.","event_package_id":"0"},{"dialog_script_id":"177611","game_id":"7279","dialog_id":"28801","dialog_character_id":"30647","text":"You wake up, feverish and uncomfortable, a few times as the night wears on, but you don\u2019t wake up at all come morning.","event_package_id":"0"},{"dialog_script_id":"178151","game_id":"7279","dialog_id":"28350","dialog_character_id":"30872","text":"The group lets you stay for the night, but they ask you to leave the next day. You leave reluctantly.","event_package_id":"0"},{"dialog_script_id":"178153","game_id":"7279","dialog_id":"28345","dialog_character_id":"32059","text":"<span style='color:#4B33AF;'>\"Where did you find these?\"<\/span> Charlie asks. <span style='color:#4B33AF;'>\"Can you teach us how to forage for them like you do?\"<\/span>","event_package_id":"0"},{"dialog_script_id":"178170","game_id":"7279","dialog_id":"28803","dialog_character_id":"34530","text":"You manage to wrestle him off your chest, but the two others move in to help their friend. The fight is three against one, and the odds aren't in your favor.\n\nOne of them stabs you multiple times in the stomach, and the other grabs your bag. All three dart off into the night.","event_package_id":"0"},{"dialog_script_id":"187621","game_id":"7279","dialog_id":"30424","dialog_character_id":"34407","text":"Do you still want to collect items?","event_package_id":"0"},{"dialog_script_id":"189589","game_id":"7279","dialog_id":"30829","dialog_character_id":"35433","text":"You managed to survive the night. You are walking along Pre's Trail, trying to head out of the city while remaining as far from others as possible. You notice a duffle bag on the trail.\n\n<script type=\"text\/javascript\">\n\/\/Walking through leaves sound for Day 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisc029b9ee28d5df82542630757374f226.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"189592","game_id":"7279","dialog_id":"30829","dialog_character_id":"35506","text":"Inside the duffle bag, you find water, batteries, and a first aid kit.","event_package_id":"0"},{"dialog_script_id":"191086","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"<span style='color:#FC7A57;'>\"I'm Jeremy from down the hall. Listen, you don't have much time! They're evacuating the building and asked me to tell everyone on this floor. A deadly flu has swept over the city, and you don't have much time to collect everything you need.\"<\/span>\n\n<script type=\"text\/javascript\">\n\/\/Creaky Door sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisaccf886b8edce6328cc990739f300f3b.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"191088","game_id":"7279","dialog_id":"31464","dialog_character_id":"34407","text":"Now what?","event_package_id":"0"},{"dialog_script_id":"191101","game_id":"7279","dialog_id":"31464","dialog_character_id":"30640","text":"","event_package_id":"0"},{"dialog_script_id":"191105","game_id":"7279","dialog_id":"31464","dialog_character_id":"28542","text":"Unknowingly, you touched the outside door handle when you looked into the hallway, which was contaminated with the Georgia Flu. You spread the germs into your eyes when you rubbed them.","event_package_id":"0"},{"dialog_script_id":"192294","game_id":"7279","dialog_id":"28801","dialog_character_id":"28534","text":"","event_package_id":"0"},{"dialog_script_id":"192300","game_id":"7279","dialog_id":"31464","dialog_character_id":"30647","text":"You wake up, feverish and uncomfortable, a few times as the night wears on, but you don't wake up at all come morning.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"192303","game_id":"7279","dialog_id":"31464","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"192305","game_id":"7279","dialog_id":"31464","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"192308","game_id":"7279","dialog_id":"28801","dialog_character_id":"28544","text":"","event_package_id":"0"},{"dialog_script_id":"192528","game_id":"7279","dialog_id":"28801","dialog_character_id":"28444","text":"\"A deadly flu? Here? Seriously, I thought those things only happened in science fiction novels.\"\n<script type=\"text\/javascript\">\n\/\/Text Alert sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisa4cfa8a748a0a2629981294509854470.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"192531","game_id":"7279","dialog_id":"28801","dialog_character_id":"30640","text":"On your way out the door, you glance at your desk. Maybe you should take something with you.","event_package_id":"0"},{"dialog_script_id":"192533","game_id":"7279","dialog_id":"28801","dialog_character_id":"30640","text":"On your way out the door you glance at your desk. Maybe you should take something with you.","event_package_id":"0"},{"dialog_script_id":"192534","game_id":"7279","dialog_id":"28801","dialog_character_id":"28542","text":"Unknowingly, when you looked into the hallway, you touched the outside door handle that was contaminated with the Georgia Flu. You spread the germs into your eyes when you rubbed them.","event_package_id":"0"},{"dialog_script_id":"192536","game_id":"7279","dialog_id":"28801","dialog_character_id":"28539","text":"You open the window. A cool breeze filters through the room and, with it, the airborne contagion of the Georgia Flu. You breathe deeply as you relax and prepare to work.\n<script type=\"text\/javascript\">\n\/\/Wind sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce8da5eb270054935641408f01ccde50.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n\n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"192538","game_id":"7279","dialog_id":"28801","dialog_character_id":"28539","text":"You open the window. A cool breeze filters through the room and, with it, the airborne contagion of the Georgia Flu. You breathe deeply as you relax and prepare to work.\n\n<script type=\"text\/javascript\">\n\/\/Wind sound for Day 1\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris95ec8bf0c8d55f3d97c6f6ef2c111a62.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"192544","game_id":"7279","dialog_id":"31464","dialog_character_id":"30640","text":"On your way out the door, you glance at your desk. Maybe you should take something with you.","event_package_id":"0"},{"dialog_script_id":"192552","game_id":"7279","dialog_id":"31464","dialog_character_id":"28540","text":"You rub your eyes and go back to bed, snuggling deep into the covers so the blankets cover up your eyes.","event_package_id":"0"},{"dialog_script_id":"192556","game_id":"7279","dialog_id":"29228","dialog_character_id":"28443","text":"<span style='color:#4B33AF;'>\"You don't have much time! A pandemic has swept over the city, and you only have a little time to gather your stuff.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"192558","game_id":"7279","dialog_id":"29228","dialog_character_id":"28544","text":"After gathering your things, you return to the door to find that the woman is gone. You leave the residence halls anyway and realize your suitcase is becoming too heavy to carry. ","event_package_id":"0"},{"dialog_script_id":"192561","game_id":"7279","dialog_id":"29228","dialog_character_id":"35424","text":"<span style='color:#4B33AF;'>\"You can see there are items at each location. Think about what you really need, because you can only carry ten items. Oh! And if you see my daughter Charlie, tell her I love her.\"<\/span>","event_package_id":"0"},{"dialog_script_id":"192563","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"<span style='color:#FC7A57;'>\"I don't know much more than you do, but we HAVE to go. I\u2019ll try to explain later. Are you ready?\"<\/span>","event_package_id":"0"},{"dialog_script_id":"192566","game_id":"7279","dialog_id":"28801","dialog_character_id":"28534","text":"You return to the door to find that Jeremy has left without you. You leave the residence halls anyway and realize your suitcase is becoming too heavy to carry.","event_package_id":"0"},{"dialog_script_id":"192567","game_id":"7279","dialog_id":"29022","dialog_character_id":"35432","text":"","event_package_id":"0"},{"dialog_script_id":"192573","game_id":"7279","dialog_id":"28801","dialog_character_id":"27683","text":"","event_package_id":"0"},{"dialog_script_id":"192578","game_id":"7279","dialog_id":"28339","dialog_character_id":"30642","text":"","event_package_id":"0"},{"dialog_script_id":"192589","game_id":"7279","dialog_id":"30829","dialog_character_id":"35505","text":"","event_package_id":"0"},{"dialog_script_id":"192593","game_id":"7279","dialog_id":"28339","dialog_character_id":"34384","text":"Your fever begins to build. Your body aches. You lie down to rest, but you never get back up.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"192596","game_id":"7279","dialog_id":"28345","dialog_character_id":"32465","text":"There are days where you wonder how you\u2019ve managed to stay alive. You roam the outskirts of what used to be thriving cities, scavenging for food and things you can use.","event_package_id":"0"},{"dialog_script_id":"192598","game_id":"7279","dialog_id":"28345","dialog_character_id":"30872","text":"","event_package_id":"0"},{"dialog_script_id":"192612","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"","event_package_id":"0"},{"dialog_script_id":"192615","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"","event_package_id":"0"},{"dialog_script_id":"192618","game_id":"7279","dialog_id":"28345","dialog_character_id":"32067","text":"It is only then that you recognize Jeremy, a student who lived on the same floor as you did in the residence hall. He sees you and gives you a hug.","event_package_id":"0"},{"dialog_script_id":"192623","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"","event_package_id":"0"},{"dialog_script_id":"192627","game_id":"7279","dialog_id":"28345","dialog_character_id":"32067","text":"You recognize Jeremy, a student who lived on the same floor as you did in the residence hall. You run toward the group, shouting elatedly. Jeremy sees you and gives you a hug.","event_package_id":"0"},{"dialog_script_id":"192628","game_id":"7279","dialog_id":"28345","dialog_character_id":"32069","text":"","event_package_id":"0"},{"dialog_script_id":"192635","game_id":"7279","dialog_id":"28345","dialog_character_id":"31628","text":"","event_package_id":"0"},{"dialog_script_id":"195375","game_id":"7279","dialog_id":"28035","dialog_character_id":"34391","text":"One day, members of your group find two children hiding in the bushes and bring them back to your camp. The children were spying on your group, and some are worried that they are part of a group of thieves who have been stealing things at night.\n\n<script type=\"text\/javascript\">\n\/\/Bushes rustling sound for Year 2\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arise2f88b6e5d3c9808f0fb9fe286aabd45.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"195376","game_id":"7279","dialog_id":"28035","dialog_character_id":"34391","text":"","event_package_id":"0"},{"dialog_script_id":"195385","game_id":"7279","dialog_id":"28035","dialog_character_id":"34391","text":"","event_package_id":"0"},{"dialog_script_id":"195393","game_id":"7279","dialog_id":"28035","dialog_character_id":"34401","text":"","event_package_id":"0"},{"dialog_script_id":"195399","game_id":"7279","dialog_id":"28035","dialog_character_id":"34395","text":"","event_package_id":"0"},{"dialog_script_id":"195978","game_id":"7279","dialog_id":"28035","dialog_character_id":"34391","text":"","event_package_id":"0"},{"dialog_script_id":"195987","game_id":"7279","dialog_id":"28035","dialog_character_id":"34397","text":"","event_package_id":"0"},{"dialog_script_id":"195990","game_id":"7279","dialog_id":"28035","dialog_character_id":"32471","text":"","event_package_id":"0"},{"dialog_script_id":"195995","game_id":"7279","dialog_id":"28803","dialog_character_id":"35438","text":"","event_package_id":"0"},{"dialog_script_id":"195999","game_id":"7279","dialog_id":"28803","dialog_character_id":"34407","text":"","event_package_id":"0"},{"dialog_script_id":"196010","game_id":"7279","dialog_id":"28803","dialog_character_id":"35440","text":"","event_package_id":"0"},{"dialog_script_id":"196012","game_id":"7279","dialog_id":"28803","dialog_character_id":"34601","text":"","event_package_id":"0"},{"dialog_script_id":"200373","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"","event_package_id":"0"},{"dialog_script_id":"200376","game_id":"7279","dialog_id":"28803","dialog_character_id":"34601","text":"","event_package_id":"0"},{"dialog_script_id":"202376","game_id":"7279","dialog_id":"28803","dialog_character_id":"35508","text":"","event_package_id":"0"},{"dialog_script_id":"202383","game_id":"7279","dialog_id":"28803","dialog_character_id":"35438","text":"The resources in your area are beginning to wane. Because of your ability to forage for edible plants, the group asks you to find another location with resources that could sustain everyone. You are now a few days away from camp and beginning to get tired.\n\n<script type=\"text\/javascript\">\n\/\/Whispering sound for Year 5\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/arisf3b1a78f46761bb7b992b48756d22d80.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"203026","game_id":"7279","dialog_id":"28801","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"203027","game_id":"7279","dialog_id":"28801","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"203030","game_id":"7279","dialog_id":"28801","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"203045","game_id":"7279","dialog_id":"28350","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"203047","game_id":"7279","dialog_id":"28035","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"203099","game_id":"7279","dialog_id":"28803","dialog_character_id":"30647","text":"A calmness washes over you. You reflect on your life since the Georgia Flu. Although life has been difficult, you managed to build a community and make friends. Your decision earlier in the night to not return to them was a mistake. Your last feeling is one of regret.\n\n<script type=\"text\/javascript\">\n\/\/Game Over sound\nvar ARIS = {};\nARIS.ready = function() {\n\t\/\/Inject the audio\n\tvar audioElement = document.createElement('audio');\n\taudioElement.setAttribute('src', 'http:\/\/arisgames.org\/server\/gamedatav2\/8757\/aris0b4aa554d47a58d3ad16b26a1b9104d4.mp3');\n\taudioElement.setAttribute('type','audio\/mpeg');\n\taudioElement.load();\n\taudioElement.play(); \n}\n<\/script>","event_package_id":"0"},{"dialog_script_id":"204809","game_id":"7279","dialog_id":"33341","dialog_character_id":"28544","text":"You return to the door to find that Jeremy has left without you. You leave the residence halls anyway and realize your suitcase is becoming too heavy to carry.","event_package_id":"0"},{"dialog_script_id":"204812","game_id":"7279","dialog_id":"33341","dialog_character_id":"28544","text":"","event_package_id":"0"},{"dialog_script_id":"204813","game_id":"7279","dialog_id":"33341","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"204815","game_id":"7279","dialog_id":"33341","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"204817","game_id":"7279","dialog_id":"33342","dialog_character_id":"28544","text":"After gathering your things, you return to the door to find that the woman is gone. You leave the residence halls anyway and realize your suitcase is becoming too heavy to carry. ","event_package_id":"0"},{"dialog_script_id":"204818","game_id":"7279","dialog_id":"33342","dialog_character_id":"28544","text":"","event_package_id":"0"},{"dialog_script_id":"204820","game_id":"7279","dialog_id":"33342","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"205683","game_id":"7279","dialog_id":"28339","dialog_character_id":"30642","text":"You put on your medical gloves before you go over to help the family. You do not want to risk getting sick with the Georgia Flu.","event_package_id":"0"},{"dialog_script_id":"205720","game_id":"7279","dialog_id":"28345","dialog_character_id":"35577","text":"You open up the novel you found, and a picture falls out of it. You pick it up and think there is something familiar about one of the women in the photo. Maybe you should go back to the camp to see if they know anything about her.","event_package_id":"0"},{"dialog_script_id":"205722","game_id":"7279","dialog_id":"28345","dialog_character_id":"35577","text":"","event_package_id":"0"},{"dialog_script_id":"205731","game_id":"7279","dialog_id":"28035","dialog_character_id":"35436","text":"The children run off while one of your friends digs into your bag and pulls out your first aid kit. Luckily, your friend was a surgeon before the Georgia Flu pandemic, and he is able to stop the bleeding. You are extremely fortunate; if you had been kinder to the children, this would never have happened.","event_package_id":"0"},{"dialog_script_id":"205733","game_id":"7279","dialog_id":"28803","dialog_character_id":"34530","text":"You slowly reach for the knife in your pocket and slash the attacker across the face. You push him off of you, but another tackles you. As you hit the ground, you try to find your knife.","event_package_id":"0"},{"dialog_script_id":"205736","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"You kick the attacker off you and scramble for the rifle you had luckily hid under some brush before you fell asleep. The group starts to come after you, but quickly stop as you cock your rifle.","event_package_id":"0"},{"dialog_script_id":"205827","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"You glare at them. \"Empty your bags, turn around, and leave. If you try to follow me, you will die.\" They look at each other, then dump out their backpacks and leave. You gather the useful items and food, put them in your backpack, and start to make your way back to your camp.","event_package_id":"0"},{"dialog_script_id":"205828","game_id":"7279","dialog_id":"28803","dialog_character_id":"34533","text":"The attacker groans, and you look up to find your knife is in his chest. You kick the attacker away and make a run for it. When you think the attackers have stopped following you, you slow down to catch your breath and cover your tracks. Afterwards, you start to make your way back to your camp.","event_package_id":"0"},{"dialog_script_id":"205831","game_id":"7279","dialog_id":"28803","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"205832","game_id":"7279","dialog_id":"28803","dialog_character_id":"0","text":"Hello","event_package_id":"0"},{"dialog_script_id":"205835","game_id":"7279","dialog_id":"28803","dialog_character_id":"32065","text":"When the sun goes down, you are so desperate to find your friends that you venture deep into the forest. Thanks to your tools, you are able to light the way and find a set of footprints. You notice something glimmering next to the footprints: a harmonica. Jeremy must have left this for you to follow!","event_package_id":"0"},{"dialog_script_id":"205838","game_id":"7279","dialog_id":"28803","dialog_character_id":"32065","text":"However, you notice another intersecting group of footprints. You wonder if your friends were following these footprints or the other way around. Either way, you follow the trail as best as you can. You are still exhausted from not eating for so long and eventually fall into a light sleep.","event_package_id":"0"},{"dialog_script_id":"205840","game_id":"7279","dialog_id":"33550","dialog_character_id":"34906","text":"Welcome to <b>ecopod<\/b> developed by the UO Center for Applied Second Language Studies.","event_package_id":"0"},{"dialog_script_id":"205842","game_id":"7279","dialog_id":"33550","dialog_character_id":"34906","text":"When you play <b>ecopod<\/b>, information about your game play is collected and saved on our servers. Your data can help us research how to improve <b>ecopod<\/b>, but we won\u2019t use it that way unless we have your permission. Please tell us how we may use your data by selecting one of the choices below. You may change your choice at any later time.","event_package_id":"0"},{"dialog_script_id":"205844","game_id":"7279","dialog_id":"33550","dialog_character_id":"34906","text":"Thank you!","event_package_id":"42309"},{"dialog_script_id":"205845","game_id":"7279","dialog_id":"33550","dialog_character_id":"34906","text":"Thank you!","event_package_id":"0"},{"dialog_script_id":"206489","game_id":"7279","dialog_id":"33550","dialog_character_id":"34906","text":"Thank you!","event_package_id":"42311"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.797 ARIS[4136:2437780] NSNotification: SERVICES_DIALOG_SCRIPTS_RECEIVED
2015-11-19 10:17:35.800 ARIS[4136:2437780] NSNotification: MODEL_DIALOG_SCRIPTS_AVAILABLE
2015-11-19 10:17:35.801 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.802 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.812 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementRootPackagesForGame/ (1.971199)
2015-11-19 10:17:35.814 ARIS[4136:2437780] Fin async data:
{"data":[{"requirement_root_package_id":"155379","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155383","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155386","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155387","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155389","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155393","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155396","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155397","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155399","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"155400","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"158791","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"158794","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"158795","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160497","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160498","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160501","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160503","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160506","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160508","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160511","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160514","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160515","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160716","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"160944","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161646","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161680","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161794","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161819","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161822","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161825","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161828","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"161992","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163957","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163958","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163959","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163960","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163963","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163966","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163968","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163971","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163974","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163977","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163979","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"163980","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164003","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164005","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164008","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164009","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164012","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164014","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164016","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164018","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164019","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164020","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164023","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164026","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164046","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164048","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164054","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"164057","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165714","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165715","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165717","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165721","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165723","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165726","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165729","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165731","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165734","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165737","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165740","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165743","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165744","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165745","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165747","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165749","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165757","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165762","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"165765","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"169375","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"169392","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"169394","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170350","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170352","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170355","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170357","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170360","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170363","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170845","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170849","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"170865","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176427","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176430","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176432","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176433","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176435","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176436","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176437","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176440","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176442","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176445","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176447","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"176449","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"177751","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178354","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178356","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178359","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178364","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178370","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178372","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"178859","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179851","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179854","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179856","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179858","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179860","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"179862","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181061","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181064","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181067","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181070","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181089","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181091","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181111","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181112","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"181113","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"191775","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"191776","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"192292","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"192295","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"193143","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194601","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194603","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194604","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194607","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194609","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194611","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194745","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194794","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"194797","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195605","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195608","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195618","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195625","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195628","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195631","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195633","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195642","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195645","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195760","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195762","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195769","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195771","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195776","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195778","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195781","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195784","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195785","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195786","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195789","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"195792","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196277","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196278","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196280","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196283","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196284","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196286","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196287","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196289","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196290","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196292","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196295","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196297","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196298","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196450","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196453","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196454","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196455","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196456","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196458","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196461","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196464","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196465","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196466","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196469","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"196782","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"197097","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"197231","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"197636","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"197639","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"198278","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"205055","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"205058","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"206269","game_id":"7279","name":"requirement package"},{"requirement_root_package_id":"206271","game_id":"7279","name":"requirement package"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:35.882 ARIS[4136:2437780] NSNotification: SERVICES_REQUIREMENT_ROOT_PACKAGES_RECEIVED
2015-11-19 10:17:35.885 ARIS[4136:2437780] NSNotification: MODEL_REQUIREMENT_ROOT_PACKAGES_AVAILABLE
2015-11-19 10:17:35.886 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:35.887 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:35.893 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementAndPackagesForGame/ (2.047533)
2015-11-19 10:17:35.895 ARIS[4136:2437780] Fin async data:
{"data":[{"requirement_and_package_id":"172848","requirement_root_package_id":"155379","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172852","requirement_root_package_id":"155383","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172855","requirement_root_package_id":"155386","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172856","requirement_root_package_id":"155387","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172858","requirement_root_package_id":"155389","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172859","requirement_root_package_id":"155393","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172862","requirement_root_package_id":"155396","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172866","requirement_root_package_id":"155397","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172868","requirement_root_package_id":"155399","game_id":"7279","name":"and package"},{"requirement_and_package_id":"172869","requirement_root_package_id":"155400","game_id":"7279","name":"and package"},{"requirement_and_package_id":"176461","requirement_root_package_id":"158791","game_id":"7279","name":"and package"},{"requirement_and_package_id":"176464","requirement_root_package_id":"158794","game_id":"7279","name":"and package"},{"requirement_and_package_id":"176465","requirement_root_package_id":"158795","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178434","requirement_root_package_id":"160497","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178435","requirement_root_package_id":"160498","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178438","requirement_root_package_id":"160501","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178440","requirement_root_package_id":"160503","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178443","requirement_root_package_id":"160506","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178445","requirement_root_package_id":"160508","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178448","requirement_root_package_id":"160511","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178451","requirement_root_package_id":"160514","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178452","requirement_root_package_id":"160515","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178659","requirement_root_package_id":"160716","game_id":"7279","name":"and package"},{"requirement_and_package_id":"178881","requirement_root_package_id":"160944","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179631","requirement_root_package_id":"161646","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179800","requirement_root_package_id":"161794","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179831","requirement_root_package_id":"161819","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179834","requirement_root_package_id":"161822","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179837","requirement_root_package_id":"161825","game_id":"7279","name":"and package"},{"requirement_and_package_id":"179840","requirement_root_package_id":"161828","game_id":"7279","name":"and package"},{"requirement_and_package_id":"180010","requirement_root_package_id":"161992","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182011","requirement_root_package_id":"163957","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182013","requirement_root_package_id":"163959","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182014","requirement_root_package_id":"163960","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182017","requirement_root_package_id":"163963","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182020","requirement_root_package_id":"163966","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182022","requirement_root_package_id":"163968","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182025","requirement_root_package_id":"163971","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182028","requirement_root_package_id":"163974","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182031","requirement_root_package_id":"163977","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182036","requirement_root_package_id":"163979","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182037","requirement_root_package_id":"163980","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182060","requirement_root_package_id":"164003","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182062","requirement_root_package_id":"164005","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182065","requirement_root_package_id":"164008","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182066","requirement_root_package_id":"164009","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182069","requirement_root_package_id":"164012","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182071","requirement_root_package_id":"164014","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182073","requirement_root_package_id":"164016","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182075","requirement_root_package_id":"164018","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182076","requirement_root_package_id":"164019","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182077","requirement_root_package_id":"164020","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182080","requirement_root_package_id":"164023","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182083","requirement_root_package_id":"164026","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182103","requirement_root_package_id":"164046","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182105","requirement_root_package_id":"164048","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182111","requirement_root_package_id":"164054","game_id":"7279","name":"and package"},{"requirement_and_package_id":"182114","requirement_root_package_id":"164057","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183780","requirement_root_package_id":"165714","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183781","requirement_root_package_id":"165715","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183783","requirement_root_package_id":"165717","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183787","requirement_root_package_id":"165721","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183789","requirement_root_package_id":"165723","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183792","requirement_root_package_id":"165726","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183795","requirement_root_package_id":"165729","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183797","requirement_root_package_id":"165731","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183800","requirement_root_package_id":"165734","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183803","requirement_root_package_id":"165737","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183806","requirement_root_package_id":"165740","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183809","requirement_root_package_id":"165743","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183810","requirement_root_package_id":"165744","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183811","requirement_root_package_id":"165745","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183813","requirement_root_package_id":"165747","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183815","requirement_root_package_id":"165749","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183823","requirement_root_package_id":"165757","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183828","requirement_root_package_id":"165762","game_id":"7279","name":"and package"},{"requirement_and_package_id":"183831","requirement_root_package_id":"165765","game_id":"7279","name":"and package"},{"requirement_and_package_id":"187687","requirement_root_package_id":"169375","game_id":"7279","name":"and package"},{"requirement_and_package_id":"187704","requirement_root_package_id":"169392","game_id":"7279","name":"and package"},{"requirement_and_package_id":"187706","requirement_root_package_id":"169394","game_id":"7279","name":"and package"},{"requirement_and_package_id":"188665","requirement_root_package_id":"170350","game_id":"7279","name":"and package"},{"requirement_and_package_id":"188667","requirement_root_package_id":"170352","game_id":"7279","name":"and package"},{"requirement_and_package_id":"188670","requirement_root_package_id":"170355","game_id":"7279","name":"and package"},{"requirement_and_package_id":"188675","requirement_root_package_id":"170360","game_id":"7279","name":"and package"},{"requirement_and_package_id":"188678","requirement_root_package_id":"170363","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189207","requirement_root_package_id":"170360","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189209","requirement_root_package_id":"170360","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189212","requirement_root_package_id":"164023","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189214","requirement_root_package_id":"170845","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189217","requirement_root_package_id":"170845","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189220","requirement_root_package_id":"170845","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189224","requirement_root_package_id":"169394","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189227","requirement_root_package_id":"170849","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189238","requirement_root_package_id":"165714","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189241","requirement_root_package_id":"165714","game_id":"7279","name":"and package"},{"requirement_and_package_id":"189246","requirement_root_package_id":"170865","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195000","requirement_root_package_id":"176430","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195002","requirement_root_package_id":"176432","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195004","requirement_root_package_id":"163959","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195006","requirement_root_package_id":"176427","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195009","requirement_root_package_id":"176433","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195011","requirement_root_package_id":"176435","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195012","requirement_root_package_id":"176436","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195013","requirement_root_package_id":"176437","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195019","requirement_root_package_id":"176440","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195021","requirement_root_package_id":"176442","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195022","requirement_root_package_id":"176427","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195024","requirement_root_package_id":"176445","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195026","requirement_root_package_id":"176447","game_id":"7279","name":"and package"},{"requirement_and_package_id":"195028","requirement_root_package_id":"176449","game_id":"7279","name":"and package"},{"requirement_and_package_id":"196477","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"196485","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"196488","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197327","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197330","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197333","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197336","requirement_root_package_id":"177751","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197350","requirement_root_package_id":"178354","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197352","requirement_root_package_id":"178356","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197355","requirement_root_package_id":"178359","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197360","requirement_root_package_id":"178364","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197366","requirement_root_package_id":"178370","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197368","requirement_root_package_id":"178372","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197894","requirement_root_package_id":"178859","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197896","requirement_root_package_id":"165744","game_id":"7279","name":"and package"},{"requirement_and_package_id":"197897","requirement_root_package_id":"178364","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198883","requirement_root_package_id":"179851","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198885","requirement_root_package_id":"165731","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198886","requirement_root_package_id":"179854","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198888","requirement_root_package_id":"179856","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198892","requirement_root_package_id":"179860","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198894","requirement_root_package_id":"179862","game_id":"7279","name":"and package"},{"requirement_and_package_id":"198897","requirement_root_package_id":"163958","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200222","requirement_root_package_id":"181061","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200228","requirement_root_package_id":"181067","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200231","requirement_root_package_id":"181070","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200253","requirement_root_package_id":"181089","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200255","requirement_root_package_id":"181091","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200275","requirement_root_package_id":"181111","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200276","requirement_root_package_id":"181112","game_id":"7279","name":"and package"},{"requirement_and_package_id":"200277","requirement_root_package_id":"181113","game_id":"7279","name":"and package"},{"requirement_and_package_id":"211974","requirement_root_package_id":"191775","game_id":"7279","name":"and package"},{"requirement_and_package_id":"211978","requirement_root_package_id":"164005","game_id":"7279","name":"and package"},{"requirement_and_package_id":"211981","requirement_root_package_id":"191776","game_id":"7279","name":"and package"},{"requirement_and_package_id":"212494","requirement_root_package_id":"192292","game_id":"7279","name":"and package"},{"requirement_and_package_id":"212497","requirement_root_package_id":"192295","game_id":"7279","name":"and package"},{"requirement_and_package_id":"213178","requirement_root_package_id":"178359","game_id":"7279","name":"and package"},{"requirement_and_package_id":"213181","requirement_root_package_id":"165745","game_id":"7279","name":"and package"},{"requirement_and_package_id":"213414","requirement_root_package_id":"193143","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214944","requirement_root_package_id":"194601","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214946","requirement_root_package_id":"194603","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214947","requirement_root_package_id":"194604","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214950","requirement_root_package_id":"194607","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214951","requirement_root_package_id":"170360","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214952","requirement_root_package_id":"194609","game_id":"7279","name":"and package"},{"requirement_and_package_id":"214954","requirement_root_package_id":"194611","game_id":"7279","name":"and package"},{"requirement_and_package_id":"215088","requirement_root_package_id":"194745","game_id":"7279","name":"and package"},{"requirement_and_package_id":"215140","requirement_root_package_id":"194794","game_id":"7279","name":"and package"},{"requirement_and_package_id":"215143","requirement_root_package_id":"194797","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216023","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216026","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216029","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216032","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216035","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216038","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216041","requirement_root_package_id":"195605","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216044","requirement_root_package_id":"195608","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216054","requirement_root_package_id":"195618","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216061","requirement_root_package_id":"195625","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216064","requirement_root_package_id":"195628","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216067","requirement_root_package_id":"195631","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216069","requirement_root_package_id":"195633","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216078","requirement_root_package_id":"195642","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216081","requirement_root_package_id":"195645","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216199","requirement_root_package_id":"195760","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216201","requirement_root_package_id":"195762","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216208","requirement_root_package_id":"195769","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216211","requirement_root_package_id":"195769","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216214","requirement_root_package_id":"195769","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216216","requirement_root_package_id":"195771","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216221","requirement_root_package_id":"195776","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216224","requirement_root_package_id":"195776","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216226","requirement_root_package_id":"195778","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216229","requirement_root_package_id":"195778","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216235","requirement_root_package_id":"195784","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216238","requirement_root_package_id":"195784","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216240","requirement_root_package_id":"195786","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216243","requirement_root_package_id":"195786","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216245","requirement_root_package_id":"165721","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216248","requirement_root_package_id":"165721","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216249","requirement_root_package_id":"195789","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216255","requirement_root_package_id":"195789","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216258","requirement_root_package_id":"195789","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216261","requirement_root_package_id":"195789","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216264","requirement_root_package_id":"195792","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216267","requirement_root_package_id":"195792","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216868","requirement_root_package_id":"165721","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216869","requirement_root_package_id":"196277","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216872","requirement_root_package_id":"196277","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216873","requirement_root_package_id":"196278","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216876","requirement_root_package_id":"196278","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216881","requirement_root_package_id":"196280","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216887","requirement_root_package_id":"196283","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216893","requirement_root_package_id":"195781","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216894","requirement_root_package_id":"196284","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216899","requirement_root_package_id":"196286","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216903","requirement_root_package_id":"196287","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216908","requirement_root_package_id":"196289","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216912","requirement_root_package_id":"195785","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216915","requirement_root_package_id":"196290","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216918","requirement_root_package_id":"196290","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216921","requirement_root_package_id":"196290","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216924","requirement_root_package_id":"196290","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216926","requirement_root_package_id":"196292","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216929","requirement_root_package_id":"196292","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216932","requirement_root_package_id":"196295","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216935","requirement_root_package_id":"196295","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216937","requirement_root_package_id":"196297","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216940","requirement_root_package_id":"196297","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216941","requirement_root_package_id":"196298","game_id":"7279","name":"and package"},{"requirement_and_package_id":"216944","requirement_root_package_id":"196298","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217102","requirement_root_package_id":"196450","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217105","requirement_root_package_id":"196450","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217108","requirement_root_package_id":"196453","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217111","requirement_root_package_id":"196453","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217112","requirement_root_package_id":"196454","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217115","requirement_root_package_id":"196454","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217117","requirement_root_package_id":"170357","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217120","requirement_root_package_id":"170357","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217123","requirement_root_package_id":"170357","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217126","requirement_root_package_id":"170357","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217128","requirement_root_package_id":"170357","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217131","requirement_root_package_id":"196455","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217132","requirement_root_package_id":"196456","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217134","requirement_root_package_id":"196458","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217137","requirement_root_package_id":"196461","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217140","requirement_root_package_id":"196464","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217141","requirement_root_package_id":"196465","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217142","requirement_root_package_id":"196466","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217145","requirement_root_package_id":"196469","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217461","requirement_root_package_id":"196782","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217782","requirement_root_package_id":"197097","game_id":"7279","name":"and package"},{"requirement_and_package_id":"217919","requirement_root_package_id":"197231","game_id":"7279","name":"and package"},{"requirement_and_package_id":"218363","requirement_root_package_id":"197636","game_id":"7279","name":"and package"},{"requirement_and_package_id":"218366","requirement_root_package_id":"197639","game_id":"7279","name":"and package"},{"requirement_and_package_id":"219098","requirement_root_package_id":"198278","game_id":"7279","name":"and package"},{"requirement_and_package_id":"227132","requirement_root_package_id":"205055","game_id":"7279","name":"and package"},{"requirement_and_package_id":"227135","requirement_root_package_id":"205058","game_id":"7279","name":"and package"},{"requirement_and_package_id":"228385","requirement_root_package_id":"206269","game_id":"7279","name":"and package"},{"requirement_and_package_id":"228387","requirement_root_package_id":"206271","game_id":"7279","name":"and package"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.009 ARIS[4136:2437780] NSNotification: SERVICES_REQUIREMENT_AND_PACKAGES_RECEIVED
2015-11-19 10:17:36.013 ARIS[4136:2437780] NSNotification: MODEL_REQUIREMENT_AND_PACKAGES_AVAILABLE
2015-11-19 10:17:36.014 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.014 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.024 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.requirements.getRequirementAtomsForGame/ (2.175454)
2015-11-19 10:17:36.028 ARIS[4136:2437780] Fin async data:
{"data":[{"requirement_atom_id":"268147","requirement_and_package_id":"172852","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"29063","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"268154","requirement_and_package_id":"172856","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27839","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"273868","requirement_and_package_id":"176461","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"29063","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"273872","requirement_and_package_id":"176464","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"29063","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"273874","requirement_and_package_id":"172858","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"273876","requirement_and_package_id":"172866","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"273878","requirement_and_package_id":"176465","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"277773","requirement_and_package_id":"178434","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"277774","requirement_and_package_id":"178435","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"277777","requirement_and_package_id":"178438","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"277779","requirement_and_package_id":"178440","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"277782","requirement_and_package_id":"178443","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27842","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"278340","requirement_and_package_id":"178659","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"29063","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"279554","requirement_and_package_id":"179631","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"282473","requirement_and_package_id":"180010","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30537","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"282705","requirement_and_package_id":"179837","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30537","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283342","requirement_and_package_id":"182011","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283344","requirement_and_package_id":"182013","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30731","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283346","requirement_and_package_id":"179631","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27833","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283348","requirement_and_package_id":"182014","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283351","requirement_and_package_id":"182017","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283354","requirement_and_package_id":"182020","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283356","requirement_and_package_id":"182022","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283359","requirement_and_package_id":"182025","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283362","requirement_and_package_id":"182028","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283365","requirement_and_package_id":"182031","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283370","requirement_and_package_id":"182036","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30537","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283371","requirement_and_package_id":"182037","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283430","requirement_and_package_id":"182060","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30709","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283432","requirement_and_package_id":"182062","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30709","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283435","requirement_and_package_id":"182065","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30727","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283439","requirement_and_package_id":"182069","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30727","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283441","requirement_and_package_id":"182071","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30729","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283443","requirement_and_package_id":"182073","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30537","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283445","requirement_and_package_id":"182075","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30732","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283446","requirement_and_package_id":"182076","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30733","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283447","requirement_and_package_id":"182077","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30734","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283450","requirement_and_package_id":"182080","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30737","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283453","requirement_and_package_id":"182083","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30739","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"283494","requirement_and_package_id":"182062","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30725","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286086","requirement_and_package_id":"183780","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31255","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286087","requirement_and_package_id":"183781","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31257","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286089","requirement_and_package_id":"183783","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31259","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286096","requirement_and_package_id":"183787","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286098","requirement_and_package_id":"183789","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286101","requirement_and_package_id":"183792","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286104","requirement_and_package_id":"183795","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286106","requirement_and_package_id":"183797","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31264","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286109","requirement_and_package_id":"183800","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286112","requirement_and_package_id":"183803","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286115","requirement_and_package_id":"183806","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286118","requirement_and_package_id":"183809","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286122","requirement_and_package_id":"183813","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286123","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286124","requirement_and_package_id":"183815","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286127","requirement_and_package_id":"183815","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286138","requirement_and_package_id":"183823","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31274","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286152","requirement_and_package_id":"183828","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"286155","requirement_and_package_id":"183831","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"292531","requirement_and_package_id":"187687","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41545","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"292548","requirement_and_package_id":"187704","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41790","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"292551","requirement_and_package_id":"187706","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"292554","requirement_and_package_id":"187706","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28801","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"292556","requirement_and_package_id":"187706","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27833","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"293899","requirement_and_package_id":"188665","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"293901","requirement_and_package_id":"188667","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31966","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"293904","requirement_and_package_id":"188670","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"293909","requirement_and_package_id":"188675","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31968","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"293912","requirement_and_package_id":"188678","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30737","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294687","requirement_and_package_id":"189207","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31969","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294689","requirement_and_package_id":"189209","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31972","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294692","requirement_and_package_id":"189212","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30739","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294694","requirement_and_package_id":"189214","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"32107","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294697","requirement_and_package_id":"189217","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"32110","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294700","requirement_and_package_id":"189220","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"32113","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294704","requirement_and_package_id":"189224","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31810","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294707","requirement_and_package_id":"189227","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31810","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294733","requirement_and_package_id":"189238","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31257","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294736","requirement_and_package_id":"189241","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31259","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"294753","requirement_and_package_id":"189246","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"32124","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302958","requirement_and_package_id":"195000","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302960","requirement_and_package_id":"195002","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302962","requirement_and_package_id":"195004","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302965","requirement_and_package_id":"195004","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28345","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302968","requirement_and_package_id":"195004","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"27833","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302970","requirement_and_package_id":"195006","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33043","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302973","requirement_and_package_id":"195009","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302975","requirement_and_package_id":"195011","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302976","requirement_and_package_id":"195012","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"8","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302977","requirement_and_package_id":"195013","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"6","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302983","requirement_and_package_id":"195019","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"10","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302985","requirement_and_package_id":"195021","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"16","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302986","requirement_and_package_id":"195022","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33047","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302988","requirement_and_package_id":"195024","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"20","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302990","requirement_and_package_id":"195026","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"302992","requirement_and_package_id":"195028","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305209","requirement_and_package_id":"196477","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305212","requirement_and_package_id":"196477","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305229","requirement_and_package_id":"196485","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305232","requirement_and_package_id":"196485","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305235","requirement_and_package_id":"196488","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"305238","requirement_and_package_id":"196488","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306863","requirement_and_package_id":"196477","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306866","requirement_and_package_id":"196485","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306869","requirement_and_package_id":"196488","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306872","requirement_and_package_id":"197327","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306875","requirement_and_package_id":"197327","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306878","requirement_and_package_id":"197327","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306881","requirement_and_package_id":"197330","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306884","requirement_and_package_id":"197330","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306887","requirement_and_package_id":"197330","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306890","requirement_and_package_id":"197333","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306893","requirement_and_package_id":"197333","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306896","requirement_and_package_id":"197333","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306899","requirement_and_package_id":"197336","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306902","requirement_and_package_id":"197336","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306905","requirement_and_package_id":"197336","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306932","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28339","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306935","requirement_and_package_id":"183815","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28339","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306943","requirement_and_package_id":"183815","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306946","requirement_and_package_id":"183811","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306948","requirement_and_package_id":"183811","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28345","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306949","requirement_and_package_id":"197350","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30537","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306952","requirement_and_package_id":"197350","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306955","requirement_and_package_id":"197350","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28345","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306959","requirement_and_package_id":"197350","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306963","requirement_and_package_id":"197352","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306969","requirement_and_package_id":"197352","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33647","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306975","requirement_and_package_id":"197355","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306978","requirement_and_package_id":"197355","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33639","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306981","requirement_and_package_id":"197352","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"306982","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307004","requirement_and_package_id":"197360","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307007","requirement_and_package_id":"197360","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307010","requirement_and_package_id":"197360","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307016","requirement_and_package_id":"197366","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307018","requirement_and_package_id":"197368","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33639","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307742","requirement_and_package_id":"197894","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"32169","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307744","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307747","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28339","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307750","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"30424","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307751","requirement_and_package_id":"197897","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307754","requirement_and_package_id":"197897","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307757","requirement_and_package_id":"197897","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"30424","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307759","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33644","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"307762","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33644","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309568","requirement_and_package_id":"198883","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309571","requirement_and_package_id":"198883","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309574","requirement_and_package_id":"198883","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309582","requirement_and_package_id":"198885","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"34105","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309589","requirement_and_package_id":"198886","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309591","requirement_and_package_id":"198888","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309595","requirement_and_package_id":"198892","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309597","requirement_and_package_id":"198894","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309606","requirement_and_package_id":"198897","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"30829","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"309609","requirement_and_package_id":"198897","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28339","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311426","requirement_and_package_id":"200222","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41545","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311432","requirement_and_package_id":"200228","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311435","requirement_and_package_id":"200231","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311460","requirement_and_package_id":"200253","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311462","requirement_and_package_id":"200255","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311506","requirement_and_package_id":"200275","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41790","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311507","requirement_and_package_id":"200276","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3509","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"311508","requirement_and_package_id":"200277","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3509","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"329622","requirement_and_package_id":"211974","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35099","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"329626","requirement_and_package_id":"211978","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35099","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"329629","requirement_and_package_id":"211981","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35332","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"330430","requirement_and_package_id":"212494","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35327","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"330433","requirement_and_package_id":"212497","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35330","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331231","requirement_and_package_id":"213178","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331234","requirement_and_package_id":"213178","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33639","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331243","requirement_and_package_id":"183811","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33642","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331246","requirement_and_package_id":"213181","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331249","requirement_and_package_id":"213181","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28345","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331255","requirement_and_package_id":"213181","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33642","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331261","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331264","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_ITEM","content_id":"39784","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331267","requirement_and_package_id":"183810","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331270","requirement_and_package_id":"197896","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31270","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331272","requirement_and_package_id":"197360","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33644","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331275","requirement_and_package_id":"197897","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33644","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331277","requirement_and_package_id":"183811","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33639","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331280","requirement_and_package_id":"213181","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33639","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331282","requirement_and_package_id":"197355","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33642","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331285","requirement_and_package_id":"213178","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33642","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331548","requirement_and_package_id":"182080","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28049","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331551","requirement_and_package_id":"189212","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28049","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331554","requirement_and_package_id":"188675","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29022","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331557","requirement_and_package_id":"189207","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29022","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331560","requirement_and_package_id":"189209","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29022","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331561","requirement_and_package_id":"189214","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29228","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331564","requirement_and_package_id":"189217","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29228","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331567","requirement_and_package_id":"189220","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29228","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331570","requirement_and_package_id":"183780","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331573","requirement_and_package_id":"189238","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331576","requirement_and_package_id":"189241","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331579","requirement_and_package_id":"197894","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"31464","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331581","requirement_and_package_id":"213414","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331584","requirement_and_package_id":"182069","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28039","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"331585","requirement_and_package_id":"182071","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333489","requirement_and_package_id":"214944","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36467","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333491","requirement_and_package_id":"214946","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36468","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333492","requirement_and_package_id":"214947","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36471","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333495","requirement_and_package_id":"214950","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36474","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333497","requirement_and_package_id":"214944","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31966","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333500","requirement_and_package_id":"214946","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31966","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333502","requirement_and_package_id":"214951","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31972","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333505","requirement_and_package_id":"214951","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36462","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333508","requirement_and_package_id":"214951","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29022","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333509","requirement_and_package_id":"214952","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35099","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333511","requirement_and_package_id":"214954","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36462","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333514","requirement_and_package_id":"214954","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29022","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333676","requirement_and_package_id":"214947","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29228","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333678","requirement_and_package_id":"215088","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36471","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333679","requirement_and_package_id":"215088","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31966","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333682","requirement_and_package_id":"215088","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"29228","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333685","requirement_and_package_id":"182073","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41543","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333686","requirement_and_package_id":"182073","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28350","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333689","requirement_and_package_id":"183823","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28350","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333690","requirement_and_package_id":"214944","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333698","requirement_and_package_id":"182073","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28345","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333748","requirement_and_package_id":"215140","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3372","distance":"5","qty":"3","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"333751","requirement_and_package_id":"215143","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30712","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334685","requirement_and_package_id":"216023","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334688","requirement_and_package_id":"216023","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334691","requirement_and_package_id":"216023","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334694","requirement_and_package_id":"216026","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334697","requirement_and_package_id":"216026","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334700","requirement_and_package_id":"216026","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334703","requirement_and_package_id":"216029","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334706","requirement_and_package_id":"216029","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334709","requirement_and_package_id":"216029","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334712","requirement_and_package_id":"216032","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334715","requirement_and_package_id":"216032","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334718","requirement_and_package_id":"216032","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334721","requirement_and_package_id":"216035","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334724","requirement_and_package_id":"216035","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334727","requirement_and_package_id":"216035","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334730","requirement_and_package_id":"216038","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334733","requirement_and_package_id":"216038","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334736","requirement_and_package_id":"216038","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334739","requirement_and_package_id":"216041","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334742","requirement_and_package_id":"216041","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334745","requirement_and_package_id":"216041","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334748","requirement_and_package_id":"216044","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334758","requirement_and_package_id":"216054","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334765","requirement_and_package_id":"216061","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334768","requirement_and_package_id":"216064","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41540","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334771","requirement_and_package_id":"216067","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334773","requirement_and_package_id":"216069","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"40936","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334782","requirement_and_package_id":"216078","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41790","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334785","requirement_and_package_id":"216081","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42096","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334888","requirement_and_package_id":"216199","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41790","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334890","requirement_and_package_id":"216201","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42096","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334897","requirement_and_package_id":"216208","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334900","requirement_and_package_id":"216211","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334903","requirement_and_package_id":"216214","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42948","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334905","requirement_and_package_id":"216216","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41026","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334910","requirement_and_package_id":"216221","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41997","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334913","requirement_and_package_id":"216221","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334916","requirement_and_package_id":"216224","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41997","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334919","requirement_and_package_id":"216224","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334921","requirement_and_package_id":"216226","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334924","requirement_and_package_id":"216226","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334927","requirement_and_package_id":"216226","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334930","requirement_and_package_id":"216229","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334933","requirement_and_package_id":"216229","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334936","requirement_and_package_id":"216229","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334942","requirement_and_package_id":"216235","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334945","requirement_and_package_id":"216235","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334948","requirement_and_package_id":"216235","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334951","requirement_and_package_id":"216238","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334954","requirement_and_package_id":"216238","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334957","requirement_and_package_id":"216238","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334959","requirement_and_package_id":"216240","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334962","requirement_and_package_id":"216240","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334965","requirement_and_package_id":"216240","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334968","requirement_and_package_id":"216243","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334971","requirement_and_package_id":"216243","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334974","requirement_and_package_id":"216243","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334976","requirement_and_package_id":"216245","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334979","requirement_and_package_id":"216248","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36912","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334980","requirement_and_package_id":"216249","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334986","requirement_and_package_id":"216249","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334989","requirement_and_package_id":"216255","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31262","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334992","requirement_and_package_id":"216255","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334995","requirement_and_package_id":"216258","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"334998","requirement_and_package_id":"216258","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335001","requirement_and_package_id":"216261","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31262","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335004","requirement_and_package_id":"216261","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335007","requirement_and_package_id":"216264","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335010","requirement_and_package_id":"216264","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335013","requirement_and_package_id":"216264","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335016","requirement_and_package_id":"216267","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335019","requirement_and_package_id":"216267","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335022","requirement_and_package_id":"216267","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31262","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335024","requirement_and_package_id":"216249","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335027","requirement_and_package_id":"216255","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335030","requirement_and_package_id":"216258","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335033","requirement_and_package_id":"216261","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335944","requirement_and_package_id":"183787","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37510","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335947","requirement_and_package_id":"216245","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36916","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335950","requirement_and_package_id":"216248","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37510","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335953","requirement_and_package_id":"216868","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36912","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335956","requirement_and_package_id":"216868","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36916","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335957","requirement_and_package_id":"216869","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335960","requirement_and_package_id":"216869","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335963","requirement_and_package_id":"216872","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335966","requirement_and_package_id":"216872","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31262","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335967","requirement_and_package_id":"216873","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335970","requirement_and_package_id":"216873","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28342","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335973","requirement_and_package_id":"216876","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335976","requirement_and_package_id":"216876","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"31262","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335987","requirement_and_package_id":"216881","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42948","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"335990","requirement_and_package_id":"216881","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"44845","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336005","requirement_and_package_id":"216887","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42948","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336008","requirement_and_package_id":"216887","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"44845","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336023","requirement_and_package_id":"216893","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_TAGGED_ITEM","content_id":"3779","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336024","requirement_and_package_id":"216894","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42096","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336035","requirement_and_package_id":"216899","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42096","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336045","requirement_and_package_id":"216903","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336056","requirement_and_package_id":"216908","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41493","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336066","requirement_and_package_id":"216912","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37200","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336069","requirement_and_package_id":"216915","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36921","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336072","requirement_and_package_id":"216915","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37513","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336075","requirement_and_package_id":"216918","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36921","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336078","requirement_and_package_id":"216918","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36925","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336081","requirement_and_package_id":"216921","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36922","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336084","requirement_and_package_id":"216921","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37513","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336087","requirement_and_package_id":"216924","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36922","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336090","requirement_and_package_id":"216924","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36925","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336092","requirement_and_package_id":"216893","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37200","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336095","requirement_and_package_id":"216926","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42759","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336098","requirement_and_package_id":"216926","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28039","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336101","requirement_and_package_id":"216929","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42759","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336104","requirement_and_package_id":"216929","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336107","requirement_and_package_id":"216932","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42761","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336110","requirement_and_package_id":"216932","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28039","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336113","requirement_and_package_id":"216935","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42761","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336116","requirement_and_package_id":"216935","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336118","requirement_and_package_id":"216937","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41482","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336121","requirement_and_package_id":"216937","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28039","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336124","requirement_and_package_id":"216940","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"41482","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336127","requirement_and_package_id":"216940","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336128","requirement_and_package_id":"216941","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41482","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336131","requirement_and_package_id":"216941","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42759","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336134","requirement_and_package_id":"216941","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42761","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336137","requirement_and_package_id":"216941","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28039","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336140","requirement_and_package_id":"216944","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41482","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336143","requirement_and_package_id":"216944","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42759","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336146","requirement_and_package_id":"216944","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42761","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336149","requirement_and_package_id":"216944","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_DIALOG","content_id":"28041","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336292","requirement_and_package_id":"217102","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336295","requirement_and_package_id":"217102","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36903","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336298","requirement_and_package_id":"217105","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336301","requirement_and_package_id":"217105","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36903","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336304","requirement_and_package_id":"217108","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336307","requirement_and_package_id":"217108","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36907","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336310","requirement_and_package_id":"217111","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336313","requirement_and_package_id":"217111","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36907","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336314","requirement_and_package_id":"217112","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336317","requirement_and_package_id":"217112","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36909","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336320","requirement_and_package_id":"217115","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336323","requirement_and_package_id":"217115","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36909","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336325","requirement_and_package_id":"217117","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37263","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336328","requirement_and_package_id":"217120","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37276","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336331","requirement_and_package_id":"217123","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36906","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336334","requirement_and_package_id":"217126","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41997","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336337","requirement_and_package_id":"217126","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336340","requirement_and_package_id":"217126","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336342","requirement_and_package_id":"217126","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30713","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336345","requirement_and_package_id":"217128","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41997","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336348","requirement_and_package_id":"217128","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"39786","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336351","requirement_and_package_id":"217128","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"41484","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336354","requirement_and_package_id":"217128","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"33045","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336357","requirement_and_package_id":"217131","game_id":"7279","bool_operator":"1","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336360","requirement_and_package_id":"217131","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336361","requirement_and_package_id":"217132","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36914","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336363","requirement_and_package_id":"217134","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36917","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336366","requirement_and_package_id":"217137","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36920","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336369","requirement_and_package_id":"217140","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36924","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336371","requirement_and_package_id":"216264","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336374","requirement_and_package_id":"216267","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36911","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336375","requirement_and_package_id":"216887","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336379","requirement_and_package_id":"216908","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36924","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336384","requirement_and_package_id":"216873","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36914","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336387","requirement_and_package_id":"216876","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36914","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336388","requirement_and_package_id":"217141","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36933","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336389","requirement_and_package_id":"217142","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36931","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336392","requirement_and_package_id":"217145","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36928","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336786","requirement_and_package_id":"217461","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35099","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336788","requirement_and_package_id":"216899","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336791","requirement_and_package_id":"216894","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336794","requirement_and_package_id":"216881","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336798","requirement_and_package_id":"216903","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"336801","requirement_and_package_id":"216908","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"37507","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337215","requirement_and_package_id":"217782","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42093","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337218","requirement_and_package_id":"217782","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42095","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337221","requirement_and_package_id":"217782","game_id":"7279","bool_operator":"0","requirement":"PLAYER_HAS_ITEM","content_id":"42948","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337343","requirement_and_package_id":"217919","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36917","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337348","requirement_and_package_id":"217919","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35061","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337351","requirement_and_package_id":"216887","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36917","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337353","requirement_and_package_id":"216908","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"36924","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337985","requirement_and_package_id":"218363","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_WEB_PAGE","content_id":"8708","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"337988","requirement_and_package_id":"218366","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_WEB_PAGE","content_id":"8708","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"339164","requirement_and_package_id":"219098","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"35099","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"352403","requirement_and_package_id":"227132","game_id":"7279","bool_operator":"0","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"41396","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"352406","requirement_and_package_id":"227135","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"41396","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"353989","requirement_and_package_id":"228385","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null},{"requirement_atom_id":"353991","requirement_and_package_id":"228387","game_id":"7279","bool_operator":"1","requirement":"PLAYER_VIEWED_PLAQUE","content_id":"30538","distance":"5","qty":"1","latitude":"86.75309","longitude":"3.141592","name":null}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.435 ARIS[4136:2437780] NSNotification: SERVICES_REQUIREMENT_ATOMS_RECEIVED
2015-11-19 10:17:36.440 ARIS[4136:2437780] NSNotification: MODEL_REQUIREMENT_ATOMS_AVAILABLE
2015-11-19 10:17:36.441 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.442 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.462 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.triggers.getTriggersForGame/ (2.609374)
2015-11-19 10:17:36.464 ARIS[4136:2437780] Fin async data:
{"data":[{"trigger_id":"190687","game_id":"7279","instance_id":"956278","scene_id":"17222","requirement_root_package_id":"163958","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"44.04313151938534","longitude":"-123.06656021232607","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439493980965","seconds":"0"},{"trigger_id":"190690","game_id":"7279","instance_id":"956279","scene_id":"17225","requirement_root_package_id":"163959","type":"LOCATION","name":"","title":"","icon_media_id":"0","latitude":"44.04403382425627","longitude":"-123.0682339107513","distance":"35","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439493984959","seconds":"0"},{"trigger_id":"190719","game_id":"7279","instance_id":"956839","scene_id":"17222","requirement_root_package_id":"163979","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439497159659","seconds":"0"},{"trigger_id":"190740","game_id":"7279","instance_id":"957256","scene_id":"17231","requirement_root_package_id":"164005","type":"LOCATION","name":"","title":"","icon_media_id":"0","latitude":"44.043146943515644","longitude":"-123.06723612899788","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439515582321","seconds":"0"},{"trigger_id":"190742","game_id":"7279","instance_id":"957258","scene_id":"17228","requirement_root_package_id":"164003","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439515594849","seconds":"0"},{"trigger_id":"190750","game_id":"7279","instance_id":"957338","scene_id":"17228","requirement_root_package_id":"164012","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439516637089","seconds":"0"},{"trigger_id":"190752","game_id":"7279","instance_id":"957411","scene_id":"17228","requirement_root_package_id":"164014","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439516883910","seconds":"0"},{"trigger_id":"190755","game_id":"7279","instance_id":"957414","scene_id":"17225","requirement_root_package_id":"164016","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439517197871","seconds":"0"},{"trigger_id":"190776","game_id":"7279","instance_id":"958107","scene_id":"15775","requirement_root_package_id":"164023","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1439522424618","seconds":"0"},{"trigger_id":"193519","game_id":"7279","instance_id":"984477","scene_id":"17222","requirement_root_package_id":"165714","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440120946788","seconds":"0"},{"trigger_id":"193527","game_id":"7279","instance_id":"984982","scene_id":"17222","requirement_root_package_id":"165721","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440122833437","seconds":"0"},{"trigger_id":"193528","game_id":"7279","instance_id":"984983","scene_id":"17222","requirement_root_package_id":"165731","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440123289611","seconds":"0"},{"trigger_id":"193547","game_id":"7279","instance_id":"985314","scene_id":"17222","requirement_root_package_id":"165744","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440125021542","seconds":"0"},{"trigger_id":"193548","game_id":"7279","instance_id":"985317","scene_id":"17225","requirement_root_package_id":"165745","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440125070182","seconds":"0"},{"trigger_id":"193572","game_id":"7279","instance_id":"985760","scene_id":"17225","requirement_root_package_id":"165757","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440127048864","seconds":"0"},{"trigger_id":"198907","game_id":"7279","instance_id":"1028196","scene_id":"15775","requirement_root_package_id":"169394","type":"IMMEDIATE","name":"","title":"Survival: Day 1","icon_media_id":"190343","latitude":"44.042801827631","longitude":"-123.06700009464","distance":"83","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440709212608","seconds":"0"},{"trigger_id":"201126","game_id":"7279","instance_id":"1042976","scene_id":"17913","requirement_root_package_id":"194794","type":"LOCATION","name":"","title":"","icon_media_id":"0","latitude":"44.043360952909744","longitude":"-123.06691158170707","distance":"25","infinite_distance":"1","wiggle":"1","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440811684911","seconds":"0"},{"trigger_id":"201131","game_id":"7279","instance_id":"1042979","scene_id":"15775","requirement_root_package_id":"170352","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440812060549","seconds":"0"},{"trigger_id":"201134","game_id":"7279","instance_id":"1042984","scene_id":"17913","requirement_root_package_id":"170357","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440812492162","seconds":"0"},{"trigger_id":"201135","game_id":"7279","instance_id":"1043443","scene_id":"15775","requirement_root_package_id":"170360","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440814732265","seconds":"0"},{"trigger_id":"205149","game_id":"7279","instance_id":"1058318","scene_id":"15775","requirement_root_package_id":"170845","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441129367605","seconds":"0"},{"trigger_id":"211073","game_id":"7279","instance_id":"1115154","scene_id":"15775","requirement_root_package_id":"176435","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441743586681","seconds":"10"},{"trigger_id":"211084","game_id":"7279","instance_id":"1116891","scene_id":"17913","requirement_root_package_id":"176437","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441752511711","seconds":"10"},{"trigger_id":"211085","game_id":"7279","instance_id":"1117017","scene_id":"17913","requirement_root_package_id":"176440","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441752717643","seconds":"10"},{"trigger_id":"212973","game_id":"7279","instance_id":"1131352","scene_id":"17222","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Day 2","icon_media_id":"0","latitude":"44.043806321332","longitude":"-123.06923705692","distance":"35","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441820925267","seconds":"10"},{"trigger_id":"213302","game_id":"7279","instance_id":"1136141","scene_id":"17225","requirement_root_package_id":"178359","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441832316416","seconds":"2"},{"trigger_id":"213308","game_id":"7279","instance_id":"1138052","scene_id":"17222","requirement_root_package_id":"178364","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441834802554","seconds":"10"},{"trigger_id":"213312","game_id":"7279","instance_id":"1138312","scene_id":"17222","requirement_root_package_id":"178370","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441835324252","seconds":"10"},{"trigger_id":"213315","game_id":"7279","instance_id":"1138831","scene_id":"17225","requirement_root_package_id":"178372","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441835593005","seconds":"10"},{"trigger_id":"213512","game_id":"7279","instance_id":"1141249","scene_id":"15775","requirement_root_package_id":"178859","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1441839868400","seconds":"10"},{"trigger_id":"218226","game_id":"7279","instance_id":"1390983","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Medical Gloves","icon_media_id":"0","latitude":"44.04286159645433","longitude":"-123.06862551326753","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355486773","seconds":"10"},{"trigger_id":"218228","game_id":"7279","instance_id":"1391067","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Water","icon_media_id":"0","latitude":"44.042622520831294","longitude":"-123.06647438163759","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355765791","seconds":"10"},{"trigger_id":"218230","game_id":"7279","instance_id":"1391068","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"First Aid Kit","icon_media_id":"0","latitude":"44.04214822278791","longitude":"-123.06726295108797","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355772665","seconds":"10"},{"trigger_id":"218232","game_id":"7279","instance_id":"1391070","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Flashlight","icon_media_id":"0","latitude":"44.042341027328604","longitude":"-123.06652802581789","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355778657","seconds":"10"},{"trigger_id":"218233","game_id":"7279","instance_id":"1391071","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Novel with Picture","icon_media_id":"0","latitude":"44.04334745684471","longitude":"-123.06829828376772","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355783918","seconds":"10"},{"trigger_id":"218235","game_id":"7279","instance_id":"1391073","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Food","icon_media_id":"0","latitude":"44.043393729054976","longitude":"-123.06739169712068","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355789141","seconds":"10"},{"trigger_id":"218237","game_id":"7279","instance_id":"1391074","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Fire Starter","icon_media_id":"0","latitude":"44.04301198223908","longitude":"-123.06649583930971","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355793929","seconds":"10"},{"trigger_id":"218239","game_id":"7279","instance_id":"1391075","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Matches","icon_media_id":"0","latitude":"44.04209809350455","longitude":"-123.06671041603084","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355799688","seconds":"10"},{"trigger_id":"218240","game_id":"7279","instance_id":"1391076","scene_id":"17913","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Knife","icon_media_id":"0","latitude":"44.04263408902878","longitude":"-123.06750971431734","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442355805513","seconds":"10"},{"trigger_id":"219978","game_id":"7279","instance_id":"1412104","scene_id":"17225","requirement_root_package_id":"193143","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442532105437","seconds":"10"},{"trigger_id":"222965","game_id":"7279","instance_id":"1431011","scene_id":"15775","requirement_root_package_id":"194601","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941214965","seconds":"10"},{"trigger_id":"222966","game_id":"7279","instance_id":"1431012","scene_id":"15775","requirement_root_package_id":"194603","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941220904","seconds":"10"},{"trigger_id":"222968","game_id":"7279","instance_id":"1431054","scene_id":"15775","requirement_root_package_id":"194604","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941339249","seconds":"10"},{"trigger_id":"222970","game_id":"7279","instance_id":"1431055","scene_id":"15775","requirement_root_package_id":"194607","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941432344","seconds":"10"},{"trigger_id":"222974","game_id":"7279","instance_id":"1431303","scene_id":"15775","requirement_root_package_id":"194611","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941915441","seconds":"10"},{"trigger_id":"222975","game_id":"7279","instance_id":"1431305","scene_id":"15775","requirement_root_package_id":"194609","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442941924783","seconds":"0"},{"trigger_id":"223054","game_id":"7279","instance_id":"1432292","scene_id":"15775","requirement_root_package_id":"194745","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442942657045","seconds":"10"},{"trigger_id":"223056","game_id":"7279","instance_id":"1433015","scene_id":"17222","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"Food","icon_media_id":"0","latitude":"44.04338408901411","longitude":"-123.0679630076408","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442943368055","seconds":"10"},{"trigger_id":"223177","game_id":"7279","instance_id":"1441314","scene_id":"17228","requirement_root_package_id":"194797","type":"LOCATION","name":"","title":"","icon_media_id":"0","latitude":"44.04475874299983","longitude":"-123.06948918457033","distance":"35","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1442971701001","seconds":"10"},{"trigger_id":"224145","game_id":"7279","instance_id":"1452922","scene_id":"17913","requirement_root_package_id":"195776","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443151391089","seconds":"10"},{"trigger_id":"224148","game_id":"7279","instance_id":"1452924","scene_id":"17913","requirement_root_package_id":"195778","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443151469252","seconds":"10"},{"trigger_id":"224149","game_id":"7279","instance_id":"1452926","scene_id":"17913","requirement_root_package_id":"195784","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443151486539","seconds":"10"},{"trigger_id":"224152","game_id":"7279","instance_id":"1452928","scene_id":"17913","requirement_root_package_id":"195786","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443151513523","seconds":"10"},{"trigger_id":"224154","game_id":"7279","instance_id":"1452932","scene_id":"20193","requirement_root_package_id":"195785","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443152102226","seconds":"10"},{"trigger_id":"224159","game_id":"7279","instance_id":"1453177","scene_id":"17222","requirement_root_package_id":"195789","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443152893107","seconds":"10"},{"trigger_id":"224162","game_id":"7279","instance_id":"1453180","scene_id":"17222","requirement_root_package_id":"195792","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443152912859","seconds":"10"},{"trigger_id":"224166","game_id":"7279","instance_id":"1453502","scene_id":"17222","requirement_root_package_id":"196277","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443154304533","seconds":"10"},{"trigger_id":"224169","game_id":"7279","instance_id":"1453503","scene_id":"17222","requirement_root_package_id":"196278","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443154318103","seconds":"10"},{"trigger_id":"224361","game_id":"7279","instance_id":"1457720","scene_id":"17225","requirement_root_package_id":"196290","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443156944058","seconds":"10"},{"trigger_id":"224364","game_id":"7279","instance_id":"1457722","scene_id":"17225","requirement_root_package_id":"196280","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157047082","seconds":"10"},{"trigger_id":"224366","game_id":"7279","instance_id":"1457724","scene_id":"17225","requirement_root_package_id":"196283","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157068790","seconds":"10"},{"trigger_id":"224369","game_id":"7279","instance_id":"1457808","scene_id":"17225","requirement_root_package_id":"196284","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157084659","seconds":"10"},{"trigger_id":"224372","game_id":"7279","instance_id":"1457968","scene_id":"17225","requirement_root_package_id":"196286","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157108313","seconds":"10"},{"trigger_id":"224375","game_id":"7279","instance_id":"1457970","scene_id":"17225","requirement_root_package_id":"196287","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157122759","seconds":"10"},{"trigger_id":"224376","game_id":"7279","instance_id":"1457971","scene_id":"17225","requirement_root_package_id":"196289","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443157148361","seconds":"10"},{"trigger_id":"224378","game_id":"7279","instance_id":"1458829","scene_id":"17228","requirement_root_package_id":"196298","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443158388550","seconds":"10"},{"trigger_id":"224381","game_id":"7279","instance_id":"1458917","scene_id":"17228","requirement_root_package_id":"196292","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443158484289","seconds":"10"},{"trigger_id":"224383","game_id":"7279","instance_id":"1458918","scene_id":"17228","requirement_root_package_id":"196295","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443158499172","seconds":"10"},{"trigger_id":"224385","game_id":"7279","instance_id":"1458920","scene_id":"17228","requirement_root_package_id":"196297","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443158510944","seconds":"10"},{"trigger_id":"224580","game_id":"7279","instance_id":"1460817","scene_id":"17913","requirement_root_package_id":"196450","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443202377454","seconds":"10"},{"trigger_id":"224582","game_id":"7279","instance_id":"1460820","scene_id":"17913","requirement_root_package_id":"196453","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443202386369","seconds":"10"},{"trigger_id":"224585","game_id":"7279","instance_id":"1460822","scene_id":"17913","requirement_root_package_id":"196454","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443202392794","seconds":"10"},{"trigger_id":"224586","game_id":"7279","instance_id":"1461313","scene_id":"17222","requirement_root_package_id":"196455","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443203727329","seconds":"10"},{"trigger_id":"224588","game_id":"7279","instance_id":"1461315","scene_id":"17222","requirement_root_package_id":"196456","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443203759707","seconds":"10"},{"trigger_id":"224591","game_id":"7279","instance_id":"1461404","scene_id":"17225","requirement_root_package_id":"196458","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443204300871","seconds":"10"},{"trigger_id":"224593","game_id":"7279","instance_id":"1461406","scene_id":"17225","requirement_root_package_id":"196461","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443204313668","seconds":"10"},{"trigger_id":"224595","game_id":"7279","instance_id":"1461407","scene_id":"17225","requirement_root_package_id":"196464","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443204321977","seconds":"10"},{"trigger_id":"224599","game_id":"7279","instance_id":"1461496","scene_id":"17228","requirement_root_package_id":"196469","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443205281298","seconds":"10"},{"trigger_id":"224601","game_id":"7279","instance_id":"1461498","scene_id":"17228","requirement_root_package_id":"196465","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443205293150","seconds":"10"},{"trigger_id":"224604","game_id":"7279","instance_id":"1461499","scene_id":"17228","requirement_root_package_id":"196466","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443205402329","seconds":"10"},{"trigger_id":"225374","game_id":"7279","instance_id":"1478620","scene_id":"17225","requirement_root_package_id":"197231","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443216641332","seconds":"10"},{"trigger_id":"228903","game_id":"7279","instance_id":"1492267","scene_id":"20193","requirement_root_package_id":"197636","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443567127398","seconds":"0"},{"trigger_id":"228906","game_id":"7279","instance_id":"1492288","scene_id":"20193","requirement_root_package_id":"197639","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"43.073","longitude":"-89.4012","distance":"25","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1443567194182","seconds":"0"},{"trigger_id":"239162","game_id":"7279","instance_id":"1580783","scene_id":"17222","requirement_root_package_id":"0","type":"LOCATION","name":"","title":"","icon_media_id":"0","latitude":"44.043033588719","longitude":"-123.0675569271","distance":"20","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"","seconds":"0"},{"trigger_id":"239553","game_id":"7279","instance_id":"1585976","scene_id":"22018","requirement_root_package_id":"205055","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"0","longitude":"0","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1444345828706","seconds":"10"},{"trigger_id":"239556","game_id":"7279","instance_id":"1585978","scene_id":"22018","requirement_root_package_id":"205058","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"0","longitude":"0","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1444345872164","seconds":"10"},{"trigger_id":"242355","game_id":"7279","instance_id":"1621466","scene_id":"17913","requirement_root_package_id":"206271","type":"IMMEDIATE","name":"","title":"","icon_media_id":"0","latitude":"0","longitude":"0","distance":"25","infinite_distance":"1","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1444846008008","seconds":"10"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.607 ARIS[4136:2437780] NSNotification: SERVICES_TRIGGERS_RECEIVED
2015-11-19 10:17:36.610 ARIS[4136:2437780] NSNotification: MODEL_TRIGGERS_AVAILABLE
2015-11-19 10:17:36.611 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.611 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.620 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.factories.getFactoriesForGame/ (2.762160)
2015-11-19 10:17:36.621 ARIS[4136:2437780] Fin async data:
{"data":[{"factory_id":"3758","game_id":"7279","name":"First Aid Kit Factory","description":"","object_type":"ITEM","object_id":"40936","seconds_per_production":"30","production_probability":"1","max_production":"2","produce_expiration_time":"600","produce_expire_on_view":"1","production_bound_type":"PER_PLAYER","location_bound_type":"PLAYER","min_production_distance":"40","max_production_distance":"60","requirement_root_package_id":"0","trigger_latitude":"0","trigger_longitude":"0","trigger_distance":"100","trigger_infinite_distance":"0","trigger_on_enter":"0","trigger_hidden":"0","trigger_wiggle":"0","trigger_title":"","trigger_icon_media_id":"0","trigger_show_title":"1","trigger_requirement_root_package_id":"0"},{"factory_id":"3762","game_id":"7279","name":"Water Factory","description":"","object_type":"ITEM","object_id":"41493","seconds_per_production":"30","production_probability":"1","max_production":"5","produce_expiration_time":"600","produce_expire_on_view":"1","production_bound_type":"PER_PLAYER","location_bound_type":"PLAYER","min_production_distance":"40","max_production_distance":"80","requirement_root_package_id":"0","trigger_latitude":"0","trigger_longitude":"0","trigger_distance":"100","trigger_infinite_distance":"0","trigger_on_enter":"0","trigger_hidden":"0","trigger_wiggle":"0","trigger_title":"","trigger_icon_media_id":"0","trigger_show_title":"1","trigger_requirement_root_package_id":"0"},{"factory_id":"3763","game_id":"7279","name":"Surgical Gloves Factory","description":"","object_type":"ITEM","object_id":"41026","seconds_per_production":"30","production_probability":"1","max_production":"5","produce_expiration_time":"600","produce_expire_on_view":"1","production_bound_type":"PER_PLAYER","location_bound_type":"PLAYER","min_production_distance":"40","max_production_distance":"100","requirement_root_package_id":"0","trigger_latitude":"0","trigger_longitude":"0","trigger_distance":"100","trigger_infinite_distance":"0","trigger_on_enter":"0","trigger_hidden":"0","trigger_wiggle":"0","trigger_title":"","trigger_icon_media_id":"0","trigger_show_title":"1","trigger_requirement_root_package_id":"0"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.644 ARIS[4136:2437780] NSNotification: SERVICES_FACTORIES_RECEIVED
2015-11-19 10:17:36.645 ARIS[4136:2437780] NSNotification: MODEL_FACTORIES_AVAILABLE
2015-11-19 10:17:36.646 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.646 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.651 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.overlays.getOverlaysForGame/ (2.789998)
2015-11-19 10:17:36.652 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.653 ARIS[4136:2437780] NSNotification: SERVICES_OVERLAYS_RECEIVED
2015-11-19 10:17:36.654 ARIS[4136:2437780] NSNotification: MODEL_OVERLAYS_AVAILABLE
2015-11-19 10:17:36.655 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.656 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.659 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.instances.getInstancesForGame/ (2.793040)
2015-11-19 10:17:36.662 ARIS[4136:2437780] Fin async data:
{"data":[{"instance_id":"821185","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 19:59:38"},{"instance_id":"821211","game_id":"7279","object_type":"PLAQUE","object_id":"27842","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:18:16"},{"instance_id":"821221","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:28:04"},{"instance_id":"852790","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852793","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852796","game_id":"7279","object_type":"ITEM","object_id":"39788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852818","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 21:38:51"},{"instance_id":"852981","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-24 22:06:00"},{"instance_id":"859327","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 18:54:12"},{"instance_id":"859545","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:14:34"},{"instance_id":"859606","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:18:34"},{"instance_id":"863203","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"863206","game_id":"7279","object_type":"ITEM","object_id":"41028","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"891677","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-31 17:16:07"},{"instance_id":"911823","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 18:48:17"},{"instance_id":"911875","game_id":"7279","object_type":"ITEM","object_id":"41482","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"911878","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"912940","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 19:38:47"},{"instance_id":"925674","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-06 18:56:55"},{"instance_id":"926283","game_id":"7279","object_type":"FACTORY","object_id":"3758","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-06 19:57:45"},{"instance_id":"927767","game_id":"7279","object_type":"FACTORY","object_id":"3762","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:56:48"},{"instance_id":"927768","game_id":"7279","object_type":"FACTORY","object_id":"3763","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:57:08"},{"instance_id":"937768","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 00:17:08"},{"instance_id":"938468","game_id":"7279","object_type":"ITEM","object_id":"41543","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"938474","game_id":"7279","object_type":"ITEM","object_id":"41545","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"944119","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"70","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:49:58"},{"instance_id":"944134","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:54:39"},{"instance_id":"944157","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"54","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:56:31"},{"instance_id":"956276","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:23:13"},{"instance_id":"956278","game_id":"7279","object_type":"DIALOG","object_id":"28339","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:22"},{"instance_id":"956279","game_id":"7279","object_type":"DIALOG","object_id":"28345","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:26"},{"instance_id":"956280","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:32:24"},{"instance_id":"956290","game_id":"7279","object_type":"ITEM","object_id":"41788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956296","game_id":"7279","object_type":"ITEM","object_id":"41790","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956765","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:11:33"},{"instance_id":"956767","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:13:34"},{"instance_id":"956839","game_id":"7279","object_type":"SCENE","object_id":"17225","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:21"},{"instance_id":"956841","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:42"},{"instance_id":"957256","game_id":"7279","object_type":"DIALOG","object_id":"28803","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:22"},{"instance_id":"957258","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:34"},{"instance_id":"957259","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:36:33"},{"instance_id":"957263","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:40:27"},{"instance_id":"957338","game_id":"7279","object_type":"DIALOG","object_id":"28039","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:43:57"},{"instance_id":"957411","game_id":"7279","object_type":"DIALOG","object_id":"28041","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:48:03"},{"instance_id":"957414","game_id":"7279","object_type":"PLAQUE","object_id":"30731","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:53:17"},{"instance_id":"957558","game_id":"7279","object_type":"DIALOG","object_id":"28043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:11:45"},{"instance_id":"957561","game_id":"7279","object_type":"DIALOG","object_id":"28044","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:18:49"},{"instance_id":"957747","game_id":"7279","object_type":"DIALOG","object_id":"28046","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:34:30"},{"instance_id":"958107","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:24"},{"instance_id":"958110","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:47"},{"instance_id":"962350","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 16:46:28"},{"instance_id":"984477","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:35:46"},{"instance_id":"984503","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:44:47"},{"instance_id":"984506","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:45:29"},{"instance_id":"984517","game_id":"7279","object_type":"ITEM","object_id":"41997","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 01:46:43"},{"instance_id":"984982","game_id":"7279","object_type":"PLAQUE","object_id":"30537","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:07:13"},{"instance_id":"984983","game_id":"7279","object_type":"DIALOG","object_id":"28343","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:14:49"},{"instance_id":"985263","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:26:55"},{"instance_id":"985302","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"71","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:34:00"},{"instance_id":"985305","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"19","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:36:02"},{"instance_id":"985307","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:29"},{"instance_id":"985310","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:41"},{"instance_id":"985311","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"79","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:47"},{"instance_id":"985314","game_id":"7279","object_type":"PLAQUE","object_id":"31270","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:43:41"},{"instance_id":"985317","game_id":"7279","object_type":"PLAQUE","object_id":"33639","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:44:30"},{"instance_id":"985418","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985421","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985424","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985632","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:56:27"},{"instance_id":"985760","game_id":"7279","object_type":"DIALOG","object_id":"28350","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 03:17:34"},{"instance_id":"1027857","game_id":"7279","object_type":"ITEM","object_id":"42759","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027860","game_id":"7279","object_type":"ITEM","object_id":"42761","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027863","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1028196","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-27 21:00:06"},{"instance_id":"1042964","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:08"},{"instance_id":"1042965","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:35"},{"instance_id":"1042967","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:25:49"},{"instance_id":"1042969","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:19"},{"instance_id":"1042971","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:34"},{"instance_id":"1042973","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:06"},{"instance_id":"1042974","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:22"},{"instance_id":"1042975","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:35"},{"instance_id":"1042976","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:05"},{"instance_id":"1042977","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:54"},{"instance_id":"1042979","game_id":"7279","object_type":"SCENE","object_id":"17913","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:34:20"},{"instance_id":"1042981","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:40:24"},{"instance_id":"1042984","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:41:32"},{"instance_id":"1042988","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-29 01:45:59"},{"instance_id":"1043443","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:18:52"},{"instance_id":"1043446","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:19:12"},{"instance_id":"1058318","game_id":"7279","object_type":"DIALOG","object_id":"29228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 17:42:46"},{"instance_id":"1061349","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 18:49:44"},{"instance_id":"1066600","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 22:35:09"},{"instance_id":"1084986","game_id":"7279","object_type":"PLAQUE","object_id":"32169","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-02 23:34:00"},{"instance_id":"1113614","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113620","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113626","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113632","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113746","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:48"},{"instance_id":"1113749","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:54"},{"instance_id":"1113750","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:01"},{"instance_id":"1113753","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:06"},{"instance_id":"1113754","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:55"},{"instance_id":"1113756","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:35:55"},{"instance_id":"1113759","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:38:08"},{"instance_id":"1113887","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:43:39"},{"instance_id":"1114898","game_id":"7279","object_type":"PLAQUE","object_id":"33043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:12:22"},{"instance_id":"1115151","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:36"},{"instance_id":"1115154","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:46"},{"instance_id":"1116763","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:46:55"},{"instance_id":"1116891","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:48:31"},{"instance_id":"1117017","game_id":"7279","object_type":"PLAQUE","object_id":"33045","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:51:57"},{"instance_id":"1117144","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:58:29"},{"instance_id":"1117145","game_id":"7279","object_type":"PLAQUE","object_id":"33047","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 23:03:01"},{"instance_id":"1123198","game_id":"7279","object_type":"ITEM","object_id":"44845","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-09 16:46:23"},{"instance_id":"1131352","game_id":"7279","object_type":"DIALOG","object_id":"30829","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 17:48:44"},{"instance_id":"1133641","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 19:48:42"},{"instance_id":"1135978","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:47:27"},{"instance_id":"1136140","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:57:45"},{"instance_id":"1136141","game_id":"7279","object_type":"PLAQUE","object_id":"33642","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:58:35"},{"instance_id":"1138052","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:40:02"},{"instance_id":"1138312","game_id":"7279","object_type":"PLAQUE","object_id":"33647","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:48:44"},{"instance_id":"1138831","game_id":"7279","object_type":"PLAQUE","object_id":"33653","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:53:12"},{"instance_id":"1141249","game_id":"7279","object_type":"DIALOG","object_id":"31464","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 23:04:27"},{"instance_id":"1159289","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:05:44"},{"instance_id":"1159386","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:06:58"},{"instance_id":"1161609","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"3","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:21:54"},{"instance_id":"1161802","game_id":"7279","object_type":"PLAQUE","object_id":"31262","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:26:30"},{"instance_id":"1390983","game_id":"7279","object_type":"PLAQUE","object_id":"35067","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:18:06"},{"instance_id":"1391067","game_id":"7279","object_type":"PLAQUE","object_id":"35055","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:45"},{"instance_id":"1391068","game_id":"7279","object_type":"PLAQUE","object_id":"35056","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:52"},{"instance_id":"1391070","game_id":"7279","object_type":"PLAQUE","object_id":"35057","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:58"},{"instance_id":"1391071","game_id":"7279","object_type":"PLAQUE","object_id":"35059","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:03"},{"instance_id":"1391073","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:08"},{"instance_id":"1391074","game_id":"7279","object_type":"PLAQUE","object_id":"35062","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:13"},{"instance_id":"1391075","game_id":"7279","object_type":"PLAQUE","object_id":"35063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:19"},{"instance_id":"1391076","game_id":"7279","object_type":"PLAQUE","object_id":"35065","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:25"},{"instance_id":"1391271","game_id":"7279","object_type":"PLAQUE","object_id":"35087","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:54"},{"instance_id":"1391273","game_id":"7279","object_type":"PLAQUE","object_id":"35089","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:59"},{"instance_id":"1391276","game_id":"7279","object_type":"PLAQUE","object_id":"35090","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:05"},{"instance_id":"1391278","game_id":"7279","object_type":"PLAQUE","object_id":"35093","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:10"},{"instance_id":"1392561","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:41:36"},{"instance_id":"1392564","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:43:14"},{"instance_id":"1394272","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 03:43:41"},{"instance_id":"1400163","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:14"},{"instance_id":"1400166","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:38"},{"instance_id":"1412104","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-17 23:21:42"},{"instance_id":"1431011","game_id":"7279","object_type":"PLAQUE","object_id":"36471","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:14"},{"instance_id":"1431012","game_id":"7279","object_type":"PLAQUE","object_id":"36474","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:20"},{"instance_id":"1431054","game_id":"7279","object_type":"DIALOG","object_id":"33341","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:02:18"},{"instance_id":"1431055","game_id":"7279","object_type":"PLAQUE","object_id":"31966","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:03:51"},{"instance_id":"1431300","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:49"},{"instance_id":"1431303","game_id":"7279","object_type":"PLAQUE","object_id":"31972","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:54"},{"instance_id":"1431305","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:12:05"},{"instance_id":"1432292","game_id":"7279","object_type":"DIALOG","object_id":"33342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:24:16"},{"instance_id":"1433015","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:36:07"},{"instance_id":"1440914","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:10:13"},{"instance_id":"1441314","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:28:21"},{"instance_id":"1452238","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-24 23:48:30"},{"instance_id":"1452922","game_id":"7279","object_type":"PLAQUE","object_id":"36903","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:23:11"},{"instance_id":"1452924","game_id":"7279","object_type":"PLAQUE","object_id":"36906","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:29"},{"instance_id":"1452926","game_id":"7279","object_type":"PLAQUE","object_id":"36907","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:46"},{"instance_id":"1452928","game_id":"7279","object_type":"PLAQUE","object_id":"36909","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:25:13"},{"instance_id":"1452929","game_id":"7279","object_type":"DIALOG","object_id":"33550","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:34:06"},{"instance_id":"1452932","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:35:02"},{"instance_id":"1453177","game_id":"7279","object_type":"PLAQUE","object_id":"36911","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:13"},{"instance_id":"1453180","game_id":"7279","object_type":"PLAQUE","object_id":"36912","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:32"},{"instance_id":"1453502","game_id":"7279","object_type":"PLAQUE","object_id":"36914","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:44"},{"instance_id":"1453503","game_id":"7279","object_type":"PLAQUE","object_id":"36916","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:58"},{"instance_id":"1457720","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:55:44"},{"instance_id":"1457722","game_id":"7279","object_type":"PLAQUE","object_id":"36917","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:27"},{"instance_id":"1457724","game_id":"7279","object_type":"PLAQUE","object_id":"36920","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:48"},{"instance_id":"1457808","game_id":"7279","object_type":"PLAQUE","object_id":"36921","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:04"},{"instance_id":"1457968","game_id":"7279","object_type":"PLAQUE","object_id":"36922","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:28"},{"instance_id":"1457970","game_id":"7279","object_type":"PLAQUE","object_id":"36924","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:42"},{"instance_id":"1457971","game_id":"7279","object_type":"PLAQUE","object_id":"36925","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:59:08"},{"instance_id":"1457986","game_id":"7279","object_type":"ITEM","object_id":"49787","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1457989","game_id":"7279","object_type":"ITEM","object_id":"49788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1458829","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:19:48"},{"instance_id":"1458917","game_id":"7279","object_type":"PLAQUE","object_id":"36928","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:24"},{"instance_id":"1458918","game_id":"7279","object_type":"PLAQUE","object_id":"36931","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:39"},{"instance_id":"1458920","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:50"},{"instance_id":"1460817","game_id":"7279","object_type":"PLAQUE","object_id":"37268","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:32:55"},{"instance_id":"1460820","game_id":"7279","object_type":"PLAQUE","object_id":"37263","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:04"},{"instance_id":"1460822","game_id":"7279","object_type":"PLAQUE","object_id":"37276","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:10"},{"instance_id":"1461313","game_id":"7279","object_type":"PLAQUE","object_id":"37271","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:25"},{"instance_id":"1461315","game_id":"7279","object_type":"PLAQUE","object_id":"37510","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:57"},{"instance_id":"1461404","game_id":"7279","object_type":"PLAQUE","object_id":"37279","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:04:58"},{"instance_id":"1461406","game_id":"7279","object_type":"PLAQUE","object_id":"37264","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:11"},{"instance_id":"1461407","game_id":"7279","object_type":"PLAQUE","object_id":"37513","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:19"},{"instance_id":"1461496","game_id":"7279","object_type":"PLAQUE","object_id":"37274","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:19"},{"instance_id":"1461498","game_id":"7279","object_type":"PLAQUE","object_id":"37266","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:31"},{"instance_id":"1461499","game_id":"7279","object_type":"PLAQUE","object_id":"37280","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:23:20"},{"instance_id":"1461591","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:27:18"},{"instance_id":"1469198","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:36"},{"instance_id":"1469201","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:51"},{"instance_id":"1478620","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 21:30:39"},{"instance_id":"1492267","game_id":"7279","object_type":"WEB_PAGE","object_id":"8708","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:52:07"},{"instance_id":"1492288","game_id":"7279","object_type":"PLAQUE","object_id":"37200","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:53:14"},{"instance_id":"1504298","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 15:47:00"},{"instance_id":"1506066","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:39:50"},{"instance_id":"1506068","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:40:13"},{"instance_id":"1580783","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 01:17:24"},{"instance_id":"1585976","game_id":"7279","object_type":"PLAQUE","object_id":"41396","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:10:31"},{"instance_id":"1585978","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:11:14"},{"instance_id":"1621466","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-14 18:06:47"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.846 ARIS[4136:2437780] NSNotification: SERVICES_INSTANCES_RECEIVED
2015-11-19 10:17:36.859 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_PLAYER_AVAILABLE
2015-11-19 10:17:36.861 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_INSTANCES_AVAILABLE
2015-11-19 10:17:36.863 ARIS[4136:2437780] NSNotification: MODEL_GAME_INSTANCES_AVAILABLE
2015-11-19 10:17:36.865 ARIS[4136:2437780] NSNotification: MODEL_GROUP_INSTANCES_AVAILABLE
2015-11-19 10:17:36.865 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_GAINED
2015-11-19 10:17:36.866 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_AVAILABLE
2015-11-19 10:17:36.867 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.868 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.882 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.tabs.getTabsForGame/ (3.012862)
2015-11-19 10:17:36.883 ARIS[4136:2437780] Fin async data:
{"data":[{"tab_id":"66019","game_id":"7279","type":"MAP","name":"Map","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"0"},{"tab_id":"66022","game_id":"7279","type":"INVENTORY","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"1"},{"tab_id":"66025","game_id":"7279","type":"SCANNER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"4"},{"tab_id":"66028","game_id":"7279","type":"DECODER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"5"},{"tab_id":"66016","game_id":"7279","type":"QUESTS","name":"","icon_media_id":"0","content_id":"0","info":"grid","requirement_root_package_id":"0","sort_index":"6"},{"tab_id":"66031","game_id":"7279","type":"PLAYER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"6"},{"tab_id":"66034","game_id":"7279","type":"NOTEBOOK","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"7"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.895 ARIS[4136:2437780] NSNotification: SERVICES_TABS_RECEIVED
2015-11-19 10:17:36.896 ARIS[4136:2437780] NSNotification: MODEL_TABS_AVAILABLE
2015-11-19 10:17:36.897 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.898 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.902 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.quests.getQuestsForGame/ (3.029366)
2015-11-19 10:17:36.902 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.904 ARIS[4136:2437780] NSNotification: SERVICES_QUESTS_RECEIVED
2015-11-19 10:17:36.905 ARIS[4136:2437780] NSNotification: MODEL_QUESTS_AVAILABLE
2015-11-19 10:17:36.906 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.906 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.911 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.users.getUsersForGame/ (3.034559)
2015-11-19 10:17:36.912 ARIS[4136:2437780] Fin async data:
{"data":[{"user_id":"2","user_name":"phildo","display_name":"phildo","media_id":"20252"},{"user_id":"6","user_name":"chrish","display_name":"clh","media_id":"15632"},{"user_id":"5138","user_name":"jms","display_name":"jms","media_id":"159551"},{"user_id":"8337","user_name":"casls","display_name":"casls","media_id":"160679"},{"user_id":"8640","user_name":"lihsien","display_name":"lihsien","media_id":"156018"},{"user_id":"9755","user_name":"caslstest","display_name":"","media_id":"160489"},{"user_id":"10069","user_name":"caslsipod5","display_name":"","media_id":"162270"},{"user_id":"10073","user_name":"caslsipod3","display_name":"","media_id":"162274"},{"user_id":"10074","user_name":"caslsipod1","display_name":"","media_id":"162277"},{"user_id":"10076","user_name":"caslsipod4","display_name":"","media_id":"162280"},{"user_id":"11421","user_name":"bpearson717","display_name":"bpearson717","media_id":"170258"},{"user_id":"13087","user_name":"LFO.2015.2","display_name":"","media_id":"190113"},{"user_id":"14310","user_name":"ECOPOD.2015.2","display_name":"ECOPOD.2015.2","media_id":"195447"},{"user_id":"15620","user_name":"jml","display_name":"Jordan Lewis","media_id":"204071"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:36.925 ARIS[4136:2437780] NSNotification: SERVICES_USERS_RECEIVED
2015-11-19 10:17:36.926 ARIS[4136:2437780] NSNotification: MODEL_USERS_AVAILABLE
2015-11-19 10:17:36.927 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:36.928 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:36.928 ARIS[4136:2437780] NSNotification: GAME_DATA_LOADED
2015-11-19 10:17:36.932 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.touchSceneForPlayer/
2015-11-19 10:17:36.934 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:36.937 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.touchGroupForPlayer/
2015-11-19 10:17:36.939 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:36.942 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForPlayer/
2015-11-19 10:17:36.944 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:36.947 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForGame/
2015-11-19 10:17:36.949 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:36.953 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForGroups/
2015-11-19 10:17:36.954 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:36.961 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.media.getMediaForGame/ (3.081167)
2015-11-19 10:17:36.966 ARIS[4136:2437780] Fin async data:
{"data":[{"media_id":"159228","game_id":"7279","name":"ecopodForAris","file_name":"arise09e520784322401f9f9bf972bdef3db.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise09e520784322401f9f9bf972bdef3db.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise09e520784322401f9f9bf972bdef3db_128.png"},{"media_id":"160682","game_id":"7279","name":"FoodIcon","file_name":"aris6c802c1bd3e34e16472943c7a1e8183d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6c802c1bd3e34e16472943c7a1e8183d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6c802c1bd3e34e16472943c7a1e8183d_128.png"},{"media_id":"160684","game_id":"7279","name":"CellphoneIcon","file_name":"aris8e6c73ba5f9c3fc07fd8c061e8242124.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8e6c73ba5f9c3fc07fd8c061e8242124.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8e6c73ba5f9c3fc07fd8c061e8242124_128.png"},{"media_id":"160685","game_id":"7279","name":"firstaidIcon","file_name":"arisd4f4cd83964a4dae69556a2c775974f2.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd4f4cd83964a4dae69556a2c775974f2.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd4f4cd83964a4dae69556a2c775974f2_128.png"},{"media_id":"160686","game_id":"7279","name":"RubberGlovesIcon","file_name":"aris44341acd56e4f52ce3cc48789ac43686.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris44341acd56e4f52ce3cc48789ac43686.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris44341acd56e4f52ce3cc48789ac43686_128.png"},{"media_id":"160687","game_id":"7279","name":"SurgicalMaskIcon","file_name":"aris3b3b81eab6434d7e06fc507c7db60ddf.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3b3b81eab6434d7e06fc507c7db60ddf.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3b3b81eab6434d7e06fc507c7db60ddf_128.png"},{"media_id":"160741","game_id":"7279","name":"TextMessageIcon","file_name":"aris9abee5fcf15b5b1e9724f1b6ba857441.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9abee5fcf15b5b1e9724f1b6ba857441.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9abee5fcf15b5b1e9724f1b6ba857441_128.png"},{"media_id":"160940","game_id":"7279","name":"CellPhoneIcon","file_name":"aris52cb51bf037eb2b3d3a954aba9502d93.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris52cb51bf037eb2b3d3a954aba9502d93.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris52cb51bf037eb2b3d3a954aba9502d93_128.png"},{"media_id":"161699","game_id":"7279","name":"Scene-SuiteDoor","file_name":"aris9e36c6a6b74d981918fbef36b55ceeaf.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9e36c6a6b74d981918fbef36b55ceeaf.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9e36c6a6b74d981918fbef36b55ceeaf_128.png"},{"media_id":"161801","game_id":"7279","name":"Scene-Desk","file_name":"arisbb92ef0e36f6d8ca88340e5a7ad1eb29.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbb92ef0e36f6d8ca88340e5a7ad1eb29.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbb92ef0e36f6d8ca88340e5a7ad1eb29_128.png"},{"media_id":"161802","game_id":"7279","name":"Scene-Bed","file_name":"aris2defd9b741e25b5923481af323446230.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2defd9b741e25b5923481af323446230.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2defd9b741e25b5923481af323446230_128.png"},{"media_id":"161949","game_id":"7279","name":"Scene-BedDeathPlaque","file_name":"aris0f72170a7b9fc4dc57011479f2bb5c42.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0f72170a7b9fc4dc57011479f2bb5c42.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0f72170a7b9fc4dc57011479f2bb5c42_128.png"},{"media_id":"161954","game_id":"7279","name":"WaterIcon","file_name":"arise359e3c36b7e9f60d7d4cfa4ab8e1776.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise359e3c36b7e9f60d7d4cfa4ab8e1776.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise359e3c36b7e9f60d7d4cfa4ab8e1776_128.png"},{"media_id":"162233","game_id":"7279","name":"Scene-ResidenceHallway","file_name":"arisded8b64811f11c2b5bb90be513b4df8d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisded8b64811f11c2b5bb90be513b4df8d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisded8b64811f11c2b5bb90be513b4df8d_128.png"},{"media_id":"162236","game_id":"7279","name":"Character-Hazmat-1","file_name":"aris57002ec169bb1df1018ff22a93d7787b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris57002ec169bb1df1018ff22a93d7787b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris57002ec169bb1df1018ff22a93d7787b_128.png"},{"media_id":"162239","game_id":"7279","name":"Character-Jeremy-1","file_name":"aris1d53048e57a1ecc0d64cec4437772b78.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1d53048e57a1ecc0d64cec4437772b78.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1d53048e57a1ecc0d64cec4437772b78_128.png"},{"media_id":"170609","game_id":"7279","name":"Scene-DeskItems","file_name":"aris24c2d42391aaf63195edb123ca739baf.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris24c2d42391aaf63195edb123ca739baf.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris24c2d42391aaf63195edb123ca739baf_128.png"},{"media_id":"170611","game_id":"7279","name":"Plaque-Death","file_name":"arisbbc4feee0337bcce8d6fc2546ba16666.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbbc4feee0337bcce8d6fc2546ba16666.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbbc4feee0337bcce8d6fc2546ba16666_128.png"},{"media_id":"170612","game_id":"7279","name":"Character-HazmatMap","file_name":"aris4e4cf54af0f491f1a24248996e416a88.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4e4cf54af0f491f1a24248996e416a88.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4e4cf54af0f491f1a24248996e416a88_128.png"},{"media_id":"170625","game_id":"7279","name":"Scene-Family","file_name":"arisa09d74634f702f844e464d4a16eb7e9a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa09d74634f702f844e464d4a16eb7e9a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa09d74634f702f844e464d4a16eb7e9a_128.png"},{"media_id":"170626","game_id":"7279","name":"Scene-HandsClean","file_name":"arisc75b77245402ed6f973958811ad597da.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc75b77245402ed6f973958811ad597da.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc75b77245402ed6f973958811ad597da_128.png"},{"media_id":"170627","game_id":"7279","name":"Scene-HandsDirty","file_name":"ariscf2242811f1abc7d4290ad679b906cf6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscf2242811f1abc7d4290ad679b906cf6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscf2242811f1abc7d4290ad679b906cf6_128.png"},{"media_id":"171027","game_id":"7279","name":"Scene-MakeshiftCamp","file_name":"aris725fac433f7372c913fd165fa4b2ce1e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris725fac433f7372c913fd165fa4b2ce1e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris725fac433f7372c913fd165fa4b2ce1e_128.png"},{"media_id":"171075","game_id":"7279","name":"NewsStory480","file_name":"aris0481f349aa0a9af26554498587e9d27f.mov","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0481f349aa0a9af26554498587e9d27f.mov","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0481f349aa0a9af26554498587e9d27f_128.mov"},{"media_id":"176739","game_id":"7279","name":"Clothes","file_name":"aris385b6a1f1bdfbc001605a71aa305b7d9.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris385b6a1f1bdfbc001605a71aa305b7d9.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris385b6a1f1bdfbc001605a71aa305b7d9_128.png"},{"media_id":"176742","game_id":"7279","name":"firestarter","file_name":"aris331a8d1a2e45253bf19931c8418f75da.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris331a8d1a2e45253bf19931c8418f75da.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris331a8d1a2e45253bf19931c8418f75da_128.png"},{"media_id":"176745","game_id":"7279","name":"Flashlight","file_name":"aris9ed65e3619ee5751a82e62fe743c7e1b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9ed65e3619ee5751a82e62fe743c7e1b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9ed65e3619ee5751a82e62fe743c7e1b_128.png"},{"media_id":"176746","game_id":"7279","name":"Graphic Novel","file_name":"aris94149efdab05fe80cc1febe5a23a70be.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris94149efdab05fe80cc1febe5a23a70be.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris94149efdab05fe80cc1febe5a23a70be_128.png"},{"media_id":"176749","game_id":"7279","name":"Hazelnuts","file_name":"aris79bb50dc0479e3a35067e4a6a7680a61.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris79bb50dc0479e3a35067e4a6a7680a61.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris79bb50dc0479e3a35067e4a6a7680a61_128.png"},{"media_id":"176752","game_id":"7279","name":"Knife","file_name":"aris4087151dd1b802ac6e2882e7b388bbe7.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4087151dd1b802ac6e2882e7b388bbe7.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4087151dd1b802ac6e2882e7b388bbe7_128.png"},{"media_id":"176753","game_id":"7279","name":"Matches","file_name":"arisa42710d8d6de58157937d7b9b9929197.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa42710d8d6de58157937d7b9b9929197.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa42710d8d6de58157937d7b9b9929197_128.png"},{"media_id":"176755","game_id":"7279","name":"Novel","file_name":"aris6ee5c46ef3c49f23c44ba9a6d5909330.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6ee5c46ef3c49f23c44ba9a6d5909330.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6ee5c46ef3c49f23c44ba9a6d5909330_128.png"},{"media_id":"176757","game_id":"7279","name":"Photos","file_name":"aris0e3c7118f8744892d2e6df9c3a7dcba6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0e3c7118f8744892d2e6df9c3a7dcba6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0e3c7118f8744892d2e6df9c3a7dcba6_128.png"},{"media_id":"176758","game_id":"7279","name":"Solar Charger","file_name":"aris8156c427acd11579498c31e191ff6856.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8156c427acd11579498c31e191ff6856.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8156c427acd11579498c31e191ff6856_128.png"},{"media_id":"176761","game_id":"7279","name":"Toothbrush","file_name":"aris5855f8cffda6344598b7d8e41dcdd454.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5855f8cffda6344598b7d8e41dcdd454.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5855f8cffda6344598b7d8e41dcdd454_128.png"},{"media_id":"176966","game_id":"7279","name":"Laptop","file_name":"aris1fd69ca42e8c17919767f8afb08e197b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1fd69ca42e8c17919767f8afb08e197b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1fd69ca42e8c17919767f8afb08e197b_128.png"},{"media_id":"176975","game_id":"7279","name":"Gain Hazelnuts Plaque","file_name":"aris136123c341edd24dbab5f1b0b071a45a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris136123c341edd24dbab5f1b0b071a45a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris136123c341edd24dbab5f1b0b071a45a_128.png"},{"media_id":"177480","game_id":"7279","name":"Character-CharlieLooking","file_name":"arise61e6d5d906880e7d49e12ea45ef76ae.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise61e6d5d906880e7d49e12ea45ef76ae.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise61e6d5d906880e7d49e12ea45ef76ae_128.png"},{"media_id":"177482","game_id":"7279","name":"Character-CharliePicture","file_name":"ariscc2e1294375dbd03f0753c8e49c3062f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscc2e1294375dbd03f0753c8e49c3062f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscc2e1294375dbd03f0753c8e49c3062f_128.png"},{"media_id":"177484","game_id":"7279","name":"Character-JeremyWaving","file_name":"aris39e61a069e6f232ba04943407c58159c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris39e61a069e6f232ba04943407c58159c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris39e61a069e6f232ba04943407c58159c_128.png"},{"media_id":"177487","game_id":"7279","name":"Character-JeremyHarmonica","file_name":"aris350c6795c07ef32e2d7f6bc42976e854.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris350c6795c07ef32e2d7f6bc42976e854.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris350c6795c07ef32e2d7f6bc42976e854_128.png"},{"media_id":"177489","game_id":"7279","name":"Scene-WoodedNight","file_name":"aris9d9627ad681ef3f6696f66982b1d57b3.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9d9627ad681ef3f6696f66982b1d57b3.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9d9627ad681ef3f6696f66982b1d57b3_128.png"},{"media_id":"179998","game_id":"7279","name":"Scene-NightSky","file_name":"arisd515aa50ab7316f15db16a836fc04426.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd515aa50ab7316f15db16a836fc04426.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd515aa50ab7316f15db16a836fc04426_128.png"},{"media_id":"180000","game_id":"7279","name":"Scene-AbandonedHouseInterior","file_name":"arisa58644d050b8716f0175baf33cc1e0a5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa58644d050b8716f0175baf33cc1e0a5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa58644d050b8716f0175baf33cc1e0a5_128.png"},{"media_id":"180003","game_id":"7279","name":"Scene-BiggerMakeshiftCamp","file_name":"aris5a14d54124dc8ab2afc811c11e3b471f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5a14d54124dc8ab2afc811c11e3b471f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5a14d54124dc8ab2afc811c11e3b471f_128.png"},{"media_id":"180004","game_id":"7279","name":"Scene-Fire","file_name":"aris818e428b9305c9523c04e247328bb9a5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris818e428b9305c9523c04e247328bb9a5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris818e428b9305c9523c04e247328bb9a5_128.png"},{"media_id":"180101","game_id":"7279","name":"Batteries","file_name":"aris3e963eee550f097b34b0ac52e2719cdc.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3e963eee550f097b34b0ac52e2719cdc.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3e963eee550f097b34b0ac52e2719cdc_128.png"},{"media_id":"180102","game_id":"7279","name":"Gain Batteries Plaque","file_name":"ariscf9daa3300bed2c90ec78265318f41a1.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscf9daa3300bed2c90ec78265318f41a1.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscf9daa3300bed2c90ec78265318f41a1_128.png"},{"media_id":"180103","game_id":"7279","name":"Lost Batteries Plaque","file_name":"aris55dfee02f8117f53a45bdf46006ac51d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris55dfee02f8117f53a45bdf46006ac51d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris55dfee02f8117f53a45bdf46006ac51d_128.png"},{"media_id":"180104","game_id":"7279","name":"Harmonica","file_name":"aris2c7cbff31fba77ce66958ce5034d605d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2c7cbff31fba77ce66958ce5034d605d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2c7cbff31fba77ce66958ce5034d605d_128.png"},{"media_id":"180106","game_id":"7279","name":"Gain Harmonica Plaque","file_name":"aris71636694e3302c6585cf6384f689548e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris71636694e3302c6585cf6384f689548e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris71636694e3302c6585cf6384f689548e_128.png"},{"media_id":"180108","game_id":"7279","name":"Lost Harmonica Plaque","file_name":"aris20a05bdd52bbb51263accc03108d7bce.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris20a05bdd52bbb51263accc03108d7bce.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris20a05bdd52bbb51263accc03108d7bce_128.png"},{"media_id":"180109","game_id":"7279","name":"HazelnutsForHarmonica Plaque","file_name":"arisf642a533f69f094631bcf1d7d7a32590.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf642a533f69f094631bcf1d7d7a32590.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf642a533f69f094631bcf1d7d7a32590_128.png"},{"media_id":"180123","game_id":"7279","name":"Guitar","file_name":"arise3bc4415ba87a95701b0d2bd6bd3031b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise3bc4415ba87a95701b0d2bd6bd3031b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise3bc4415ba87a95701b0d2bd6bd3031b_128.png"},{"media_id":"180126","game_id":"7279","name":"Rifle","file_name":"aris588982e80eea200a0627a4d16f9d05a1.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris588982e80eea200a0627a4d16f9d05a1.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris588982e80eea200a0627a4d16f9d05a1_128.png"},{"media_id":"180129","game_id":"7279","name":"Gain Guitar Plaque","file_name":"aris1342e0298eaf1cd7c216cad63a6b9c2f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1342e0298eaf1cd7c216cad63a6b9c2f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris1342e0298eaf1cd7c216cad63a6b9c2f_128.png"},{"media_id":"180131","game_id":"7279","name":"Lost Guitar Plaque","file_name":"aris5b7108f25292b81b6101ccc04dbe4b37.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5b7108f25292b81b6101ccc04dbe4b37.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5b7108f25292b81b6101ccc04dbe4b37_128.png"},{"media_id":"180134","game_id":"7279","name":"Gain Rifle Plaque","file_name":"aris4b1514a5c2f80181ef4dd0b2f7f1e35e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4b1514a5c2f80181ef4dd0b2f7f1e35e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4b1514a5c2f80181ef4dd0b2f7f1e35e_128.png"},{"media_id":"180136","game_id":"7279","name":"Lost Rifle Plaque","file_name":"aris16947006367c55477fd97843d06e55c7.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris16947006367c55477fd97843d06e55c7.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris16947006367c55477fd97843d06e55c7_128.png"},{"media_id":"188224","game_id":"7279","name":"Scene-HouseExterior","file_name":"aris5b69e59ca7c030624e45643c8c071385.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5b69e59ca7c030624e45643c8c071385.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5b69e59ca7c030624e45643c8c071385_128.png"},{"media_id":"188225","game_id":"7279","name":"Character-ChildrenCryingAngry","file_name":"aris5306ae26e8db9d2de0cab7ed8f374b69.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5306ae26e8db9d2de0cab7ed8f374b69.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5306ae26e8db9d2de0cab7ed8f374b69_128.png"},{"media_id":"188226","game_id":"7279","name":"Character-ChildrenNeutral","file_name":"aris45089a5125e6e450bbaea33031d99f0c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris45089a5125e6e450bbaea33031d99f0c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris45089a5125e6e450bbaea33031d99f0c_128.png"},{"media_id":"188229","game_id":"7279","name":"Character-ChildrenOlderTalking","file_name":"aris009e14fe4b5ce87cd915f109edad2938.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris009e14fe4b5ce87cd915f109edad2938.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris009e14fe4b5ce87cd915f109edad2938_128.png"},{"media_id":"188231","game_id":"7279","name":"Character-ChildrenYoungerTalking","file_name":"aris38a916cee51fa1bb68a6ac29b3a45971.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris38a916cee51fa1bb68a6ac29b3a45971.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris38a916cee51fa1bb68a6ac29b3a45971_128.png"},{"media_id":"188233","game_id":"7279","name":"Character-ChildrenCryingAlone","file_name":"aris899d3a223c43646adfb498791158f4a5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris899d3a223c43646adfb498791158f4a5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris899d3a223c43646adfb498791158f4a5_128.png"},{"media_id":"188879","game_id":"7279","name":"DeathPlaqueDay1","file_name":"aris7495bca283668e20345d328ec7746f0f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris7495bca283668e20345d328ec7746f0f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris7495bca283668e20345d328ec7746f0f_128.png"},{"media_id":"188912","game_id":"7279","name":"Scene-LookingAtHands","file_name":"arisa62a8fa6e4bee902613d0c4ff2c5dac8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa62a8fa6e4bee902613d0c4ff2c5dac8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa62a8fa6e4bee902613d0c4ff2c5dac8_128.png"},{"media_id":"189000","game_id":"7279","name":"InfoPlaque","file_name":"aris5a0cb452435805d2d67afbd3eed3a9b8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5a0cb452435805d2d67afbd3eed3a9b8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5a0cb452435805d2d67afbd3eed3a9b8_128.png"},{"media_id":"189340","game_id":"7279","name":"Scene-AbandonedCamp","file_name":"arisbd5150501711c232be0f3de63740e2f3.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbd5150501711c232be0f3de63740e2f3.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbd5150501711c232be0f3de63740e2f3_128.png"},{"media_id":"189342","game_id":"7279","name":"Scene-BlurryNightSkyMoon","file_name":"aris574bd289f07ec500d4be13efb138e7f8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris574bd289f07ec500d4be13efb138e7f8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris574bd289f07ec500d4be13efb138e7f8_128.png"},{"media_id":"189344","game_id":"7279","name":"Scene-HandwithKnife","file_name":"arisce3480deb50b8dbeb0dcdf0155ce9f7e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce3480deb50b8dbeb0dcdf0155ce9f7e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce3480deb50b8dbeb0dcdf0155ce9f7e_128.png"},{"media_id":"189345","game_id":"7279","name":"Scene-HandwithKnifeNight","file_name":"aris31facd45920077f593b5af236785f4aa.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris31facd45920077f593b5af236785f4aa.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris31facd45920077f593b5af236785f4aa_128.png"},{"media_id":"189348","game_id":"7279","name":"Scene-NightSkyMoon","file_name":"arisad273af2684320c71734b1e2334b5ba2.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisad273af2684320c71734b1e2334b5ba2.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisad273af2684320c71734b1e2334b5ba2_128.png"},{"media_id":"190136","game_id":"7279","name":"Scene-Attacker","file_name":"arisdad7ac9d5faad9208248c3cf17baa0b5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisdad7ac9d5faad9208248c3cf17baa0b5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisdad7ac9d5faad9208248c3cf17baa0b5_128.png"},{"media_id":"190139","game_id":"7279","name":"Scene-DeathHandDay","file_name":"aris01c7d0cb10ad0d10ebc3f8934fba5dc7.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01c7d0cb10ad0d10ebc3f8934fba5dc7.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01c7d0cb10ad0d10ebc3f8934fba5dc7_128.png"},{"media_id":"190140","game_id":"7279","name":"Scene-DeathHandNight","file_name":"arisf05c72276890ce222db4db5b53b6a3d6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf05c72276890ce222db4db5b53b6a3d6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf05c72276890ce222db4db5b53b6a3d6_128.png"},{"media_id":"190175","game_id":"7279","name":"InfoPlaque Short","file_name":"aris912c993d442e1f1b1cb9365c61a585e5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris912c993d442e1f1b1cb9365c61a585e5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris912c993d442e1f1b1cb9365c61a585e5_128.png"},{"media_id":"190299","game_id":"7279","name":"GainedLaptopPlaque","file_name":"arisf771f917c8213e2dab51556e982c2464.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf771f917c8213e2dab51556e982c2464.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf771f917c8213e2dab51556e982c2464_128.png"},{"media_id":"190300","game_id":"7279","name":"GainCellphonePlaque","file_name":"aris01264c27f41ebeeaccea7890e67253f6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01264c27f41ebeeaccea7890e67253f6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01264c27f41ebeeaccea7890e67253f6_128.png"},{"media_id":"190302","game_id":"7279","name":"GainWaterPlaque","file_name":"aris3ff48ea3c7707382071ac941da6f30e8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3ff48ea3c7707382071ac941da6f30e8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3ff48ea3c7707382071ac941da6f30e8_128.png"},{"media_id":"190303","game_id":"7279","name":"LostFirstAidKitPlaque","file_name":"aris6e0940468b427b163bb5a820891ab7a7.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6e0940468b427b163bb5a820891ab7a7.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6e0940468b427b163bb5a820891ab7a7_128.png"},{"media_id":"190304","game_id":"7279","name":"LostWaterPlaque","file_name":"aris857d7bc2d3654b97a3fa16e9bc48fb22.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris857d7bc2d3654b97a3fa16e9bc48fb22.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris857d7bc2d3654b97a3fa16e9bc48fb22_128.png"},{"media_id":"190306","game_id":"7279","name":"LostRubberGlovesPlaque","file_name":"aris86a59c717e99419212bead1092a86d25.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris86a59c717e99419212bead1092a86d25.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris86a59c717e99419212bead1092a86d25_128.png"},{"media_id":"190309","game_id":"7279","name":"GainSolarChargerPlaque","file_name":"aris9192a26f6c678cb981535e9d69a13a5b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9192a26f6c678cb981535e9d69a13a5b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9192a26f6c678cb981535e9d69a13a5b_128.png"},{"media_id":"190311","game_id":"7279","name":"GainGraphicNovelPlaque","file_name":"aris8024643565744febadbcf2bd2c565208.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8024643565744febadbcf2bd2c565208.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8024643565744febadbcf2bd2c565208_128.png"},{"media_id":"190313","game_id":"7279","name":"GainNovelPlaque","file_name":"arisc1c82b7dade9dfadb66b361af92bc8d4.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc1c82b7dade9dfadb66b361af92bc8d4.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc1c82b7dade9dfadb66b361af92bc8d4_128.png"},{"media_id":"190314","game_id":"7279","name":"LostFoodPlaque","file_name":"arisb53d5b59dd29646becd47b02d4b975e9.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb53d5b59dd29646becd47b02d4b975e9.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb53d5b59dd29646becd47b02d4b975e9_128.png"},{"media_id":"190316","game_id":"7279","name":"GainFirstAidKitPlaque","file_name":"arisd95d8cd0c9de862a98d08eff4ef389c6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd95d8cd0c9de862a98d08eff4ef389c6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd95d8cd0c9de862a98d08eff4ef389c6_128.png"},{"media_id":"190319","game_id":"7279","name":"GainFlashlightPlaque","file_name":"aris33ab2204c523cddaf6ad38c04d189743.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris33ab2204c523cddaf6ad38c04d189743.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris33ab2204c523cddaf6ad38c04d189743_128.png"},{"media_id":"190320","game_id":"7279","name":"GainNovelWithPicturesPlaque","file_name":"arisce48f285ebc13d113bdf714ca223e0b4.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce48f285ebc13d113bdf714ca223e0b4.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisce48f285ebc13d113bdf714ca223e0b4_128.png"},{"media_id":"190322","game_id":"7279","name":"GainFoodPlaque","file_name":"aris759823d9c1baa229b336db2d81efbfc8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris759823d9c1baa229b336db2d81efbfc8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris759823d9c1baa229b336db2d81efbfc8_128.png"},{"media_id":"190325","game_id":"7279","name":"GainFireStarterPlaque","file_name":"aris09aea72009ef546d60bc02690dcefd8a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris09aea72009ef546d60bc02690dcefd8a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris09aea72009ef546d60bc02690dcefd8a_128.png"},{"media_id":"190327","game_id":"7279","name":"GainMatchesPlaque","file_name":"aris5f3bed37b175bd35b562b6a2b946ef8a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5f3bed37b175bd35b562b6a2b946ef8a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5f3bed37b175bd35b562b6a2b946ef8a_128.png"},{"media_id":"190330","game_id":"7279","name":"GainKnifePlaque","file_name":"aris4204640d28defee6cc848b25c0e2ced6.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4204640d28defee6cc848b25c0e2ced6.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris4204640d28defee6cc848b25c0e2ced6_128.png"},{"media_id":"190333","game_id":"7279","name":"GainRubberGlovesPlaque","file_name":"aris3117047f6ebc1fbeb040d436be2e623f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3117047f6ebc1fbeb040d436be2e623f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3117047f6ebc1fbeb040d436be2e623f_128.png"},{"media_id":"190343","game_id":"7279","name":"Ecopod Survival","file_name":"aris586cfaf70f54cc26b9e334db3a4bc323.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris586cfaf70f54cc26b9e334db3a4bc323.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris586cfaf70f54cc26b9e334db3a4bc323_128.png"},{"media_id":"190825","game_id":"7279","name":"GainPhotosPlaque","file_name":"arise42836d2cfec1e09938ac7c294c9514e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise42836d2cfec1e09938ac7c294c9514e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise42836d2cfec1e09938ac7c294c9514e_128.png"},{"media_id":"190830","game_id":"7279","name":"GainClothesPlaque","file_name":"arisca0fc9e4e25a93579ca51e8bee4b1baa.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisca0fc9e4e25a93579ca51e8bee4b1baa.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisca0fc9e4e25a93579ca51e8bee4b1baa_128.png"},{"media_id":"190833","game_id":"7279","name":"LostClothesPlaque","file_name":"aris5cffc8796d7b394a8ea4359dbf632c0e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5cffc8796d7b394a8ea4359dbf632c0e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5cffc8796d7b394a8ea4359dbf632c0e_128.png"},{"media_id":"190836","game_id":"7279","name":"GainToothbrushPlaque","file_name":"aris2b6aa32c5f1532bf233c02c35f7c00ea.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2b6aa32c5f1532bf233c02c35f7c00ea.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2b6aa32c5f1532bf233c02c35f7c00ea_128.png"},{"media_id":"190837","game_id":"7279","name":"LostToothbrushPlaque","file_name":"aris8fbabdf060fdfa96ca2ba197ce40aefd.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8fbabdf060fdfa96ca2ba197ce40aefd.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris8fbabdf060fdfa96ca2ba197ce40aefd_128.png"},{"media_id":"192124","game_id":"7279","name":"ecopod white background","file_name":"aris32d59e5114151f82170271daea18d0c4.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris32d59e5114151f82170271daea18d0c4.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris32d59e5114151f82170271daea18d0c4_128.png"},{"media_id":"192127","game_id":"7279","name":"ecopod logo large white background","file_name":"aris5fa6581fb44c44ecab99e5dfbab43ff5.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5fa6581fb44c44ecab99e5dfbab43ff5.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris5fa6581fb44c44ecab99e5dfbab43ff5_128.png"},{"media_id":"192451","game_id":"7279","name":"BlueLaptop","file_name":"aris59b0ec75ffd1dc52b70d8fd46219e241.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris59b0ec75ffd1dc52b70d8fd46219e241.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris59b0ec75ffd1dc52b70d8fd46219e241_128.png"},{"media_id":"192453","game_id":"7279","name":"BlueBatteries","file_name":"aris0c1df54f7f879409771e354769f0f912.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0c1df54f7f879409771e354769f0f912.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0c1df54f7f879409771e354769f0f912_128.png"},{"media_id":"192456","game_id":"7279","name":"BlueCellPhone","file_name":"aris6fbcfd5366a4ce6892783cfb976c52d9.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6fbcfd5366a4ce6892783cfb976c52d9.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6fbcfd5366a4ce6892783cfb976c52d9_128.png"},{"media_id":"192458","game_id":"7279","name":"BlueClothes","file_name":"aris7a6a015d22d2cc91d2b18dbda7fbc12a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris7a6a015d22d2cc91d2b18dbda7fbc12a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris7a6a015d22d2cc91d2b18dbda7fbc12a_128.png"},{"media_id":"192461","game_id":"7279","name":"BlueFirestarter","file_name":"aris32dce2b9b2158a9811e8738f3f911d6c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris32dce2b9b2158a9811e8738f3f911d6c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris32dce2b9b2158a9811e8738f3f911d6c_128.png"},{"media_id":"192463","game_id":"7279","name":"BlueFlashlight","file_name":"arisf3df8a8ca4b9c15952b18e1424ae1ce4.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf3df8a8ca4b9c15952b18e1424ae1ce4.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf3df8a8ca4b9c15952b18e1424ae1ce4_128.png"},{"media_id":"192466","game_id":"7279","name":"BlueGraphicNovel","file_name":"aris745707cfc77806df6dca2b21a681a089.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris745707cfc77806df6dca2b21a681a089.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris745707cfc77806df6dca2b21a681a089_128.png"},{"media_id":"192468","game_id":"7279","name":"BlueKnife","file_name":"aris59bf78b1239a7abb2a9446ff9983c780.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris59bf78b1239a7abb2a9446ff9983c780.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris59bf78b1239a7abb2a9446ff9983c780_128.png"},{"media_id":"192470","game_id":"7279","name":"BlueMatches","file_name":"arisf4aa31f17265b4237d05c5195a9bd26c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf4aa31f17265b4237d05c5195a9bd26c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf4aa31f17265b4237d05c5195a9bd26c_128.png"},{"media_id":"192471","game_id":"7279","name":"BluePhotos","file_name":"aris15bca312b3891332ff487db55c65c909.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris15bca312b3891332ff487db55c65c909.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris15bca312b3891332ff487db55c65c909_128.png"},{"media_id":"192473","game_id":"7279","name":"BlueWater","file_name":"arisbfb805d1fcaf77aa1c59124d4e1c163b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbfb805d1fcaf77aa1c59124d4e1c163b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisbfb805d1fcaf77aa1c59124d4e1c163b_128.png"},{"media_id":"192474","game_id":"7279","name":"Dufflebag","file_name":"arisd4c7ea711c5b7db0fbb226194cd74037.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd4c7ea711c5b7db0fbb226194cd74037.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisd4c7ea711c5b7db0fbb226194cd74037_128.png"},{"media_id":"192477","game_id":"7279","name":"BlueMatchesFirestarter","file_name":"aris9e360fb5de71ac6921893ee94bdb8d95.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9e360fb5de71ac6921893ee94bdb8d95.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris9e360fb5de71ac6921893ee94bdb8d95_128.png"},{"media_id":"192631","game_id":"7279","name":"Lost Cell Phone Plaque","file_name":"aris0c44ee316c1d33ac71783aa8c6a3ba51.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0c44ee316c1d33ac71783aa8c6a3ba51.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0c44ee316c1d33ac71783aa8c6a3ba51_128.png"},{"media_id":"192634","game_id":"7279","name":"Used Flashlight Plaque","file_name":"arise571b6f5ac9ca9e0dc0821f1245b3f76.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise571b6f5ac9ca9e0dc0821f1245b3f76.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise571b6f5ac9ca9e0dc0821f1245b3f76_128.png"},{"media_id":"192635","game_id":"7279","name":"Used Graphic Novel Plaque","file_name":"arisb2c02a605d15137ead6f19c5dcbfa384.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb2c02a605d15137ead6f19c5dcbfa384.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb2c02a605d15137ead6f19c5dcbfa384_128.png"},{"media_id":"192638","game_id":"7279","name":"Used Laptop Plaque","file_name":"aris0534d6a7caa0b5b876b2069b592cc83d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0534d6a7caa0b5b876b2069b592cc83d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris0534d6a7caa0b5b876b2069b592cc83d_128.png"},{"media_id":"192641","game_id":"7279","name":"Used Matches Plaque","file_name":"aris56b80935b58a34605f3054bf5bd18b6f.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris56b80935b58a34605f3054bf5bd18b6f.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris56b80935b58a34605f3054bf5bd18b6f_128.png"},{"media_id":"192643","game_id":"7279","name":"Used Photos Plaque","file_name":"arisc1c69664332daaa1f9b40bdcf6e11b3b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc1c69664332daaa1f9b40bdcf6e11b3b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisc1c69664332daaa1f9b40bdcf6e11b3b_128.png"},{"media_id":"192644","game_id":"7279","name":"Used Solar Cell Phone Charger Plaque","file_name":"arisa7e2120b7abc9a24cdf296f889f72e12.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa7e2120b7abc9a24cdf296f889f72e12.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa7e2120b7abc9a24cdf296f889f72e12_128.png"},{"media_id":"194840","game_id":"7279","name":"Scene-Sunset","file_name":"aris2ac5883f7937bb0a0b1b3b0b971fba99.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2ac5883f7937bb0a0b1b3b0b971fba99.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris2ac5883f7937bb0a0b1b3b0b971fba99_128.png"},{"media_id":"194843","game_id":"7279","name":"Scene-PresTrail","file_name":"ariscfd0a9a83a2c248ca346ec6bc239152a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscfd0a9a83a2c248ca346ec6bc239152a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/ariscfd0a9a83a2c248ca346ec6bc239152a_128.png"},{"media_id":"194846","game_id":"7279","name":"Character-Hazmat-Distance","file_name":"aris20a4c2eae1d90064f0bd7273af83b916.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris20a4c2eae1d90064f0bd7273af83b916.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris20a4c2eae1d90064f0bd7273af83b916_128.png"},{"media_id":"194847","game_id":"7279","name":"Character-Hazmat-Neutral","file_name":"aris81a1d44ce82d6ed64b41d902f25c4d6b.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris81a1d44ce82d6ed64b41d902f25c4d6b.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris81a1d44ce82d6ed64b41d902f25c4d6b_128.png"},{"media_id":"194850","game_id":"7279","name":"Character-JeremyMap","file_name":"arisa2c6ac86b27d9dfc8c4f8642600684cc.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa2c6ac86b27d9dfc8c4f8642600684cc.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa2c6ac86b27d9dfc8c4f8642600684cc_128.png"},{"media_id":"194853","game_id":"7279","name":"Character-JeremyNeutral","file_name":"aris12db8461e6cf8bca91cba1c051b6b6a8.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris12db8461e6cf8bca91cba1c051b6b6a8.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris12db8461e6cf8bca91cba1c051b6b6a8_128.png"},{"media_id":"194854","game_id":"7279","name":"Character-JeremywithItems","file_name":"aris3fedd31c6c6d22d678e67bd96670604e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3fedd31c6c6d22d678e67bd96670604e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3fedd31c6c6d22d678e67bd96670604e_128.png"},{"media_id":"194857","game_id":"7279","name":"Scene-StealingBackpacks","file_name":"arise7d20ff771e7bbd9bde866e4b262e82a.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise7d20ff771e7bbd9bde866e4b262e82a.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arise7d20ff771e7bbd9bde866e4b262e82a_128.png"},{"media_id":"194860","game_id":"7279","name":"Scene-WoodedPath","file_name":"aris62686bab4fc321cf9fc775c1a19585ee.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris62686bab4fc321cf9fc775c1a19585ee.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris62686bab4fc321cf9fc775c1a19585ee_128.png"},{"media_id":"194862","game_id":"7279","name":"Scene-RifleShot","file_name":"arisa7f571ee57d7e4170ba6fb5f460e86ee.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa7f571ee57d7e4170ba6fb5f460e86ee.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa7f571ee57d7e4170ba6fb5f460e86ee_128.png"},{"media_id":"194864","game_id":"7279","name":"Scene-RifleBarrel","file_name":"arisb6f7cabceae81e7306c8220a1521b59c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb6f7cabceae81e7306c8220a1521b59c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb6f7cabceae81e7306c8220a1521b59c_128.png"},{"media_id":"194866","game_id":"7279","name":"Scene-HandsUp","file_name":"aris48b87c42e5af4eb2e0157a146ff6007d.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris48b87c42e5af4eb2e0157a146ff6007d.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris48b87c42e5af4eb2e0157a146ff6007d_128.png"},{"media_id":"195182","game_id":"7279","name":"Wooded Path","file_name":"aris41a6507c03681f302ed2f5bbf73bb998.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris41a6507c03681f302ed2f5bbf73bb998.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris41a6507c03681f302ed2f5bbf73bb998_128.png"},{"media_id":"195200","game_id":"7279","name":"Starry Sky","file_name":"aris6557f6cfc1f01a9e69f9d4af0323fe98.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6557f6cfc1f01a9e69f9d4af0323fe98.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris6557f6cfc1f01a9e69f9d4af0323fe98_128.png"},{"media_id":"195245","game_id":"7279","name":"Scene-InBushes","file_name":"arisa3d4a2882d74e937b57cbe1f55025dd7.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa3d4a2882d74e937b57cbe1f55025dd7.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa3d4a2882d74e937b57cbe1f55025dd7_128.png"},{"media_id":"195250","game_id":"7279","name":"Scene-Duffle","file_name":"aris74ee60447c2925e9b3329b71c9b2b547.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris74ee60447c2925e9b3329b71c9b2b547.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris74ee60447c2925e9b3329b71c9b2b547_128.png"},{"media_id":"195252","game_id":"7279","name":"Scene-Duffle-open","file_name":"arisab9201dd1d2c368a4a68ae8bf9067bd3.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisab9201dd1d2c368a4a68ae8bf9067bd3.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisab9201dd1d2c368a4a68ae8bf9067bd3_128.png"},{"media_id":"195260","game_id":"7279","name":"","file_name":"aris3b506f7fa7844b47172aa08827f21731.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3b506f7fa7844b47172aa08827f21731.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris3b506f7fa7844b47172aa08827f21731_128.png"},{"media_id":"195262","game_id":"7279","name":"Character-Charlie","file_name":"arisf5188d922e0af7ea7dfc41e666249a3c.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf5188d922e0af7ea7dfc41e666249a3c.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisf5188d922e0af7ea7dfc41e666249a3c_128.png"},{"media_id":"195263","game_id":"7279","name":"Charlie-2","file_name":"arisb09a94abd3f8554138a46570519c759e.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb09a94abd3f8554138a46570519c759e.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb09a94abd3f8554138a46570519c759e_128.png"},{"media_id":"195265","game_id":"7279","name":"Charlie-3","file_name":"aris858bf43b3cdaa1841446806af45997ac.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris858bf43b3cdaa1841446806af45997ac.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris858bf43b3cdaa1841446806af45997ac_128.png"},{"media_id":"195432","game_id":"7279","name":"640-Congratulations-animated","file_name":"aris01d6310ce96276805d587c2aef8d536a.gif","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01d6310ce96276805d587c2aef8d536a.gif","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris01d6310ce96276805d587c2aef8d536a_128.gif"},{"media_id":"195435","game_id":"7279","name":"Scene-Novel","file_name":"arisa636a65547ed0ce689876410fd4740d3.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa636a65547ed0ce689876410fd4740d3.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisa636a65547ed0ce689876410fd4740d3_128.png"},{"media_id":"195444","game_id":"7279","name":"Scene-Family-looking","file_name":"aris69eb748c8de96aea15e3d55142ce6e76.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris69eb748c8de96aea15e3d55142ce6e76.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/aris69eb748c8de96aea15e3d55142ce6e76_128.png"},{"media_id":"203269","game_id":"7279","name":"AudioPlaque","file_name":"arisb1871eb00465baebec1823e5fe3d61f9.png","url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb1871eb00465baebec1823e5fe3d61f9.png","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/7279\/arisb1871eb00465baebec1823e5fe3d61f9_128.png"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.208 ARIS[4136:2437780] NSNotification: SERVICES_MEDIAS_RECEIVED
2015-11-19 10:17:37.267 ARIS[4136:2437780] NSNotification: MODEL_MEDIA_AVAILABLE
2015-11-19 10:17:37.269 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:17:37.270 ARIS[4136:2437780] NSNotification: GAME_PERCENT_LOADED
2015-11-19 10:17:37.272 ARIS[4136:2437780] NSNotification: GAME_DATA_LOADED
2015-11-19 10:17:37.274 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.touchSceneForPlayer/
2015-11-19 10:17:37.275 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.278 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.touchGroupForPlayer/
2015-11-19 10:17:37.279 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.281 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.touchItemsForPlayer/
2015-11-19 10:17:37.282 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.284 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.touchItemsForGame/
2015-11-19 10:17:37.286 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.288 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.touchItemsForGroups/
2015-11-19 10:17:37.289 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.302 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:17:37.323 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:17:37.414 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.touchSceneForPlayer/ (0.477718)
2015-11-19 10:17:37.415 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.417 ARIS[4136:2437780] NSNotification: SERVICES_SCENE_TOUCHED
2015-11-19 10:17:37.418 ARIS[4136:2437780] NSNotification: MODEL_SCENE_TOUCHED
2015-11-19 10:17:37.419 ARIS[4136:2437780] NSNotification: MAINTENANCE_PIECE_AVAILABLE
2015-11-19 10:17:37.420 ARIS[4136:2437780] NSNotification: MAINTENANCE_PERCENT_LOADED
2015-11-19 10:17:37.426 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.touchGroupForPlayer/ (0.485405)
2015-11-19 10:17:37.427 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.428 ARIS[4136:2437780] NSNotification: SERVICES_GROUP_TOUCHED
2015-11-19 10:17:37.429 ARIS[4136:2437780] NSNotification: MODEL_GROUP_TOUCHED
2015-11-19 10:17:37.430 ARIS[4136:2437780] NSNotification: MAINTENANCE_PIECE_AVAILABLE
2015-11-19 10:17:37.431 ARIS[4136:2437780] NSNotification: MAINTENANCE_PERCENT_LOADED
2015-11-19 10:17:37.434 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForPlayer/ (0.488418)
2015-11-19 10:17:37.435 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.437 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_INSTANCES_TOUCHED
2015-11-19 10:17:37.437 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_INSTANCES_TOUCHED
2015-11-19 10:17:37.438 ARIS[4136:2437780] NSNotification: MAINTENANCE_PIECE_AVAILABLE
2015-11-19 10:17:37.439 ARIS[4136:2437780] NSNotification: MAINTENANCE_PERCENT_LOADED
2015-11-19 10:17:37.442 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForGame/ (0.490796)
2015-11-19 10:17:37.443 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.444 ARIS[4136:2437780] NSNotification: SERVICES_GAME_INSTANCES_TOUCHED
2015-11-19 10:17:37.445 ARIS[4136:2437780] NSNotification: MODEL_GAME_INSTANCES_TOUCHED
2015-11-19 10:17:37.447 ARIS[4136:2437780] NSNotification: MAINTENANCE_PIECE_AVAILABLE
2015-11-19 10:17:37.447 ARIS[4136:2437780] NSNotification: MAINTENANCE_PERCENT_LOADED
2015-11-19 10:17:37.510 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.touchItemsForGroups/ (0.553793)
2015-11-19 10:17:37.511 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.515 ARIS[4136:2437780] NSNotification: SERVICES_GROUP_INSTANCES_TOUCHED
2015-11-19 10:17:37.517 ARIS[4136:2437780] NSNotification: MODEL_GROUP_INSTANCES_TOUCHED
2015-11-19 10:17:37.517 ARIS[4136:2437780] NSNotification: MAINTENANCE_PIECE_AVAILABLE
2015-11-19 10:17:37.518 ARIS[4136:2437780] NSNotification: MAINTENANCE_PERCENT_LOADED
2015-11-19 10:17:37.519 ARIS[4136:2437780] NSNotification: MAINTENANCE_DATA_LOADED
2015-11-19 10:17:37.526 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/
2015-11-19 10:17:37.528 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.533 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/
2015-11-19 10:17:37.535 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.542 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/
2015-11-19 10:17:37.545 ARIS[4136:2437780] Req async data: {"tick_factories":1,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:17:37.549 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/
2015-11-19 10:17:37.553 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.555 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/
2015-11-19 10:17:37.556 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"owner_id":10269}
2015-11-19 10:17:37.559 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/
2015-11-19 10:17:37.559 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.561 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/
2015-11-19 10:17:37.562 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.565 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/
2015-11-19 10:17:37.566 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:17:37.660 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/ (0.127187)
2015-11-19 10:17:37.665 ARIS[4136:2437780] Fin async data:
{"data":{"scene_id":"15775","game_id":"7279","name":"Survival: Day 1","description":"","editor_x":"0","editor_y":"0","created":"2015-07-13 17:12:41","last_active":"2015-10-08 23:11:27"},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.671 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_SCENE_RECEIVED
2015-11-19 10:17:37.675 ARIS[4136:2437780] NSNotification: MODEL_SCENES_PLAYER_SCENE_AVAILABLE
2015-11-19 10:17:37.676 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.678 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:37.681 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/ (0.142145)
2015-11-19 10:17:37.682 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.684 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_GROUP_RECEIVED
2015-11-19 10:17:37.685 ARIS[4136:2437780] NSNotification: MODEL_GROUPS_PLAYER_GROUP_AVAILABLE
2015-11-19 10:17:37.686 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.687 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:37.691 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/ (0.136740)
2015-11-19 10:17:37.692 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.693 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_OVERLAYS_RECEIVED
2015-11-19 10:17:37.694 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.695 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:37.729 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/ (0.180496)
2015-11-19 10:17:37.730 ARIS[4136:2437780] Fin async data:
{"data":[{"trigger_id":"198907","game_id":"7279","instance_id":"1028196","scene_id":"15775","requirement_root_package_id":"169394","type":"IMMEDIATE","name":"","title":"Survival: Day 1","icon_media_id":"190343","latitude":"44.042801827631","longitude":"-123.06700009464","distance":"83","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440709212608","seconds":"0","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.735 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TRIGGERS_RECEIVED
2015-11-19 10:17:37.736 ARIS[4136:2437780] NSNotification: MODEL_TRIGGERS_NEW_AVAILABLE
2015-11-19 10:17:37.737 ARIS[4136:2437780] NSNotification: MODEL_DISPLAY_NEW_ENQUEUED
2015-11-19 10:17:37.739 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_TRIGGERS_AVAILABLE
2015-11-19 10:17:37.740 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.740 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:37.744 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/ (0.183326)
2015-11-19 10:17:37.745 ARIS[4136:2437780] Fin async data:
{"data":[{"tab_id":"66019","game_id":"7279","type":"MAP","name":"Map","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"0","user_id":10269},{"tab_id":"66022","game_id":"7279","type":"INVENTORY","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"1","user_id":10269},{"tab_id":"66025","game_id":"7279","type":"SCANNER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"4","user_id":10269},{"tab_id":"66028","game_id":"7279","type":"DECODER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"5","user_id":10269},{"tab_id":"66016","game_id":"7279","type":"QUESTS","name":"","icon_media_id":"0","content_id":"0","info":"grid","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66031","game_id":"7279","type":"PLAYER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66034","game_id":"7279","type":"NOTEBOOK","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"7","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.755 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TABS_RECEIVED
2015-11-19 10:17:37.756 ARIS[4136:2437780] NSNotification: MODEL_TABS_NEW_AVAILABLE
2015-11-19 10:17:37.757 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.758 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:37.760 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/ (0.203089)
2015-11-19 10:17:37.763 ARIS[4136:2437780] Fin async data:
{"data":[{"instance_id":"821185","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 19:59:38"},{"instance_id":"821211","game_id":"7279","object_type":"PLAQUE","object_id":"27842","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:18:16"},{"instance_id":"821221","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:28:04"},{"instance_id":"852790","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852793","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852796","game_id":"7279","object_type":"ITEM","object_id":"39788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852818","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 21:38:51"},{"instance_id":"852981","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-24 22:06:00"},{"instance_id":"859327","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 18:54:12"},{"instance_id":"859545","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:14:34"},{"instance_id":"859606","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:18:34"},{"instance_id":"863203","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"863206","game_id":"7279","object_type":"ITEM","object_id":"41028","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"891677","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-31 17:16:07"},{"instance_id":"911823","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 18:48:17"},{"instance_id":"911875","game_id":"7279","object_type":"ITEM","object_id":"41482","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"911878","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"912940","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 19:38:47"},{"instance_id":"925674","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-06 18:56:55"},{"instance_id":"926283","game_id":"7279","object_type":"FACTORY","object_id":"3758","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-06 19:57:45"},{"instance_id":"927767","game_id":"7279","object_type":"FACTORY","object_id":"3762","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:56:48"},{"instance_id":"927768","game_id":"7279","object_type":"FACTORY","object_id":"3763","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:57:08"},{"instance_id":"937768","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 00:17:08"},{"instance_id":"938468","game_id":"7279","object_type":"ITEM","object_id":"41543","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"938474","game_id":"7279","object_type":"ITEM","object_id":"41545","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"944119","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"70","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:49:58"},{"instance_id":"944134","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:54:39"},{"instance_id":"944157","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"54","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:56:31"},{"instance_id":"956276","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:23:13"},{"instance_id":"956278","game_id":"7279","object_type":"DIALOG","object_id":"28339","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:22"},{"instance_id":"956279","game_id":"7279","object_type":"DIALOG","object_id":"28345","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:26"},{"instance_id":"956280","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:32:24"},{"instance_id":"956290","game_id":"7279","object_type":"ITEM","object_id":"41788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956296","game_id":"7279","object_type":"ITEM","object_id":"41790","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956765","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:11:33"},{"instance_id":"956767","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:13:34"},{"instance_id":"956839","game_id":"7279","object_type":"SCENE","object_id":"17225","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:21"},{"instance_id":"956841","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:42"},{"instance_id":"957256","game_id":"7279","object_type":"DIALOG","object_id":"28803","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:22"},{"instance_id":"957258","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:34"},{"instance_id":"957259","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:36:33"},{"instance_id":"957263","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:40:27"},{"instance_id":"957338","game_id":"7279","object_type":"DIALOG","object_id":"28039","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:43:57"},{"instance_id":"957411","game_id":"7279","object_type":"DIALOG","object_id":"28041","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:48:03"},{"instance_id":"957414","game_id":"7279","object_type":"PLAQUE","object_id":"30731","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:53:17"},{"instance_id":"957558","game_id":"7279","object_type":"DIALOG","object_id":"28043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:11:45"},{"instance_id":"957561","game_id":"7279","object_type":"DIALOG","object_id":"28044","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:18:49"},{"instance_id":"957747","game_id":"7279","object_type":"DIALOG","object_id":"28046","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:34:30"},{"instance_id":"958107","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:24"},{"instance_id":"958110","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:47"},{"instance_id":"962350","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 16:46:28"},{"instance_id":"984477","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:35:46"},{"instance_id":"984503","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:44:47"},{"instance_id":"984506","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:45:29"},{"instance_id":"984517","game_id":"7279","object_type":"ITEM","object_id":"41997","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 01:46:43"},{"instance_id":"984982","game_id":"7279","object_type":"PLAQUE","object_id":"30537","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:07:13"},{"instance_id":"984983","game_id":"7279","object_type":"DIALOG","object_id":"28343","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:14:49"},{"instance_id":"985263","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:26:55"},{"instance_id":"985302","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"71","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:34:00"},{"instance_id":"985305","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"19","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:36:02"},{"instance_id":"985307","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:29"},{"instance_id":"985310","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:41"},{"instance_id":"985311","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"79","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:47"},{"instance_id":"985314","game_id":"7279","object_type":"PLAQUE","object_id":"31270","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:43:41"},{"instance_id":"985317","game_id":"7279","object_type":"PLAQUE","object_id":"33639","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:44:30"},{"instance_id":"985418","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985421","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985424","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985632","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:56:27"},{"instance_id":"985760","game_id":"7279","object_type":"DIALOG","object_id":"28350","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 03:17:34"},{"instance_id":"1027857","game_id":"7279","object_type":"ITEM","object_id":"42759","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027860","game_id":"7279","object_type":"ITEM","object_id":"42761","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027863","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1028196","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-27 21:00:06"},{"instance_id":"1042964","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:08"},{"instance_id":"1042965","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:35"},{"instance_id":"1042967","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:25:49"},{"instance_id":"1042969","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:19"},{"instance_id":"1042971","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:34"},{"instance_id":"1042973","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:06"},{"instance_id":"1042974","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:22"},{"instance_id":"1042975","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:35"},{"instance_id":"1042976","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:05"},{"instance_id":"1042977","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:54"},{"instance_id":"1042979","game_id":"7279","object_type":"SCENE","object_id":"17913","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:34:20"},{"instance_id":"1042981","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:40:24"},{"instance_id":"1042984","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:41:32"},{"instance_id":"1042988","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-29 01:45:59"},{"instance_id":"1043443","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:18:52"},{"instance_id":"1043446","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:19:12"},{"instance_id":"1058318","game_id":"7279","object_type":"DIALOG","object_id":"29228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 17:42:46"},{"instance_id":"1061349","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 18:49:44"},{"instance_id":"1066600","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 22:35:09"},{"instance_id":"1084986","game_id":"7279","object_type":"PLAQUE","object_id":"32169","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-02 23:34:00"},{"instance_id":"1113614","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113620","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113626","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113632","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113746","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:48"},{"instance_id":"1113749","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:54"},{"instance_id":"1113750","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:01"},{"instance_id":"1113753","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:06"},{"instance_id":"1113754","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:55"},{"instance_id":"1113756","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:35:55"},{"instance_id":"1113759","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:38:08"},{"instance_id":"1113887","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:43:39"},{"instance_id":"1114898","game_id":"7279","object_type":"PLAQUE","object_id":"33043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:12:22"},{"instance_id":"1115151","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:36"},{"instance_id":"1115154","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:46"},{"instance_id":"1116763","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:46:55"},{"instance_id":"1116891","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:48:31"},{"instance_id":"1117017","game_id":"7279","object_type":"PLAQUE","object_id":"33045","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:51:57"},{"instance_id":"1117144","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:58:29"},{"instance_id":"1117145","game_id":"7279","object_type":"PLAQUE","object_id":"33047","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 23:03:01"},{"instance_id":"1123198","game_id":"7279","object_type":"ITEM","object_id":"44845","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-09 16:46:23"},{"instance_id":"1131352","game_id":"7279","object_type":"DIALOG","object_id":"30829","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 17:48:44"},{"instance_id":"1133641","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 19:48:42"},{"instance_id":"1135978","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:47:27"},{"instance_id":"1136140","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:57:45"},{"instance_id":"1136141","game_id":"7279","object_type":"PLAQUE","object_id":"33642","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:58:35"},{"instance_id":"1138052","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:40:02"},{"instance_id":"1138312","game_id":"7279","object_type":"PLAQUE","object_id":"33647","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:48:44"},{"instance_id":"1138831","game_id":"7279","object_type":"PLAQUE","object_id":"33653","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:53:12"},{"instance_id":"1141249","game_id":"7279","object_type":"DIALOG","object_id":"31464","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 23:04:27"},{"instance_id":"1159289","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:05:44"},{"instance_id":"1159386","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:06:58"},{"instance_id":"1161609","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"3","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:21:54"},{"instance_id":"1161802","game_id":"7279","object_type":"PLAQUE","object_id":"31262","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:26:30"},{"instance_id":"1390983","game_id":"7279","object_type":"PLAQUE","object_id":"35067","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:18:06"},{"instance_id":"1391067","game_id":"7279","object_type":"PLAQUE","object_id":"35055","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:45"},{"instance_id":"1391068","game_id":"7279","object_type":"PLAQUE","object_id":"35056","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:52"},{"instance_id":"1391070","game_id":"7279","object_type":"PLAQUE","object_id":"35057","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:58"},{"instance_id":"1391071","game_id":"7279","object_type":"PLAQUE","object_id":"35059","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:03"},{"instance_id":"1391073","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:08"},{"instance_id":"1391074","game_id":"7279","object_type":"PLAQUE","object_id":"35062","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:13"},{"instance_id":"1391075","game_id":"7279","object_type":"PLAQUE","object_id":"35063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:19"},{"instance_id":"1391076","game_id":"7279","object_type":"PLAQUE","object_id":"35065","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:25"},{"instance_id":"1391271","game_id":"7279","object_type":"PLAQUE","object_id":"35087","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:54"},{"instance_id":"1391273","game_id":"7279","object_type":"PLAQUE","object_id":"35089","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:59"},{"instance_id":"1391276","game_id":"7279","object_type":"PLAQUE","object_id":"35090","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:05"},{"instance_id":"1391278","game_id":"7279","object_type":"PLAQUE","object_id":"35093","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:10"},{"instance_id":"1392561","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:41:36"},{"instance_id":"1392564","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:43:14"},{"instance_id":"1394272","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 03:43:41"},{"instance_id":"1400163","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:14"},{"instance_id":"1400166","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:38"},{"instance_id":"1412104","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-17 23:21:42"},{"instance_id":"1431011","game_id":"7279","object_type":"PLAQUE","object_id":"36471","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:14"},{"instance_id":"1431012","game_id":"7279","object_type":"PLAQUE","object_id":"36474","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:20"},{"instance_id":"1431054","game_id":"7279","object_type":"DIALOG","object_id":"33341","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:02:18"},{"instance_id":"1431055","game_id":"7279","object_type":"PLAQUE","object_id":"31966","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:03:51"},{"instance_id":"1431300","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:49"},{"instance_id":"1431303","game_id":"7279","object_type":"PLAQUE","object_id":"31972","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:54"},{"instance_id":"1431305","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:12:05"},{"instance_id":"1432292","game_id":"7279","object_type":"DIALOG","object_id":"33342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:24:16"},{"instance_id":"1433015","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:36:07"},{"instance_id":"1440914","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:10:13"},{"instance_id":"1441314","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:28:21"},{"instance_id":"1452238","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-24 23:48:30"},{"instance_id":"1452922","game_id":"7279","object_type":"PLAQUE","object_id":"36903","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:23:11"},{"instance_id":"1452924","game_id":"7279","object_type":"PLAQUE","object_id":"36906","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:29"},{"instance_id":"1452926","game_id":"7279","object_type":"PLAQUE","object_id":"36907","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:46"},{"instance_id":"1452928","game_id":"7279","object_type":"PLAQUE","object_id":"36909","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:25:13"},{"instance_id":"1452929","game_id":"7279","object_type":"DIALOG","object_id":"33550","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:34:06"},{"instance_id":"1452932","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:35:02"},{"instance_id":"1453177","game_id":"7279","object_type":"PLAQUE","object_id":"36911","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:13"},{"instance_id":"1453180","game_id":"7279","object_type":"PLAQUE","object_id":"36912","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:32"},{"instance_id":"1453502","game_id":"7279","object_type":"PLAQUE","object_id":"36914","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:44"},{"instance_id":"1453503","game_id":"7279","object_type":"PLAQUE","object_id":"36916","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:58"},{"instance_id":"1457720","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:55:44"},{"instance_id":"1457722","game_id":"7279","object_type":"PLAQUE","object_id":"36917","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:27"},{"instance_id":"1457724","game_id":"7279","object_type":"PLAQUE","object_id":"36920","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:48"},{"instance_id":"1457808","game_id":"7279","object_type":"PLAQUE","object_id":"36921","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:04"},{"instance_id":"1457968","game_id":"7279","object_type":"PLAQUE","object_id":"36922","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:28"},{"instance_id":"1457970","game_id":"7279","object_type":"PLAQUE","object_id":"36924","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:42"},{"instance_id":"1457971","game_id":"7279","object_type":"PLAQUE","object_id":"36925","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:59:08"},{"instance_id":"1457986","game_id":"7279","object_type":"ITEM","object_id":"49787","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1457989","game_id":"7279","object_type":"ITEM","object_id":"49788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1458829","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:19:48"},{"instance_id":"1458917","game_id":"7279","object_type":"PLAQUE","object_id":"36928","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:24"},{"instance_id":"1458918","game_id":"7279","object_type":"PLAQUE","object_id":"36931","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:39"},{"instance_id":"1458920","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:50"},{"instance_id":"1460817","game_id":"7279","object_type":"PLAQUE","object_id":"37268","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:32:55"},{"instance_id":"1460820","game_id":"7279","object_type":"PLAQUE","object_id":"37263","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:04"},{"instance_id":"1460822","game_id":"7279","object_type":"PLAQUE","object_id":"37276","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:10"},{"instance_id":"1461313","game_id":"7279","object_type":"PLAQUE","object_id":"37271","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:25"},{"instance_id":"1461315","game_id":"7279","object_type":"PLAQUE","object_id":"37510","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:57"},{"instance_id":"1461404","game_id":"7279","object_type":"PLAQUE","object_id":"37279","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:04:58"},{"instance_id":"1461406","game_id":"7279","object_type":"PLAQUE","object_id":"37264","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:11"},{"instance_id":"1461407","game_id":"7279","object_type":"PLAQUE","object_id":"37513","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:19"},{"instance_id":"1461496","game_id":"7279","object_type":"PLAQUE","object_id":"37274","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:19"},{"instance_id":"1461498","game_id":"7279","object_type":"PLAQUE","object_id":"37266","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:31"},{"instance_id":"1461499","game_id":"7279","object_type":"PLAQUE","object_id":"37280","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:23:20"},{"instance_id":"1461591","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:27:18"},{"instance_id":"1469198","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:36"},{"instance_id":"1469201","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:51"},{"instance_id":"1478620","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 21:30:39"},{"instance_id":"1492267","game_id":"7279","object_type":"WEB_PAGE","object_id":"8708","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:52:07"},{"instance_id":"1492288","game_id":"7279","object_type":"PLAQUE","object_id":"37200","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:53:14"},{"instance_id":"1504298","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 15:47:00"},{"instance_id":"1506066","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:39:50"},{"instance_id":"1506068","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:40:13"},{"instance_id":"1580783","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 01:17:24"},{"instance_id":"1585976","game_id":"7279","object_type":"PLAQUE","object_id":"41396","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:10:31"},{"instance_id":"1585978","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:11:14"},{"instance_id":"1621466","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-14 18:06:47"},{"instance_id":"1979653","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979656","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979659","game_id":"7279","object_type":"ITEM","object_id":"39788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979662","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979665","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979668","game_id":"7279","object_type":"ITEM","object_id":"41028","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979671","game_id":"7279","object_type":"ITEM","object_id":"41482","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979674","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979677","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979680","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979683","game_id":"7279","object_type":"ITEM","object_id":"41543","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979686","game_id":"7279","object_type":"ITEM","object_id":"41545","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979689","game_id":"7279","object_type":"ITEM","object_id":"41788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979692","game_id":"7279","object_type":"ITEM","object_id":"41790","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979695","game_id":"7279","object_type":"ITEM","object_id":"41997","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979698","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979701","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979704","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979707","game_id":"7279","object_type":"ITEM","object_id":"42759","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979710","game_id":"7279","object_type":"ITEM","object_id":"42761","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979713","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979716","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979719","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979722","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979725","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979728","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979731","game_id":"7279","object_type":"ITEM","object_id":"44845","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979734","game_id":"7279","object_type":"ITEM","object_id":"49787","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979737","game_id":"7279","object_type":"ITEM","object_id":"49788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:37.970 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_INSTANCES_RECEIVED
2015-11-19 10:17:37.981 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_PLAYER_AVAILABLE
2015-11-19 10:17:37.984 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_INSTANCES_AVAILABLE
2015-11-19 10:17:37.987 ARIS[4136:2437780] NSNotification: MODEL_GAME_INSTANCES_AVAILABLE
2015-11-19 10:17:37.989 ARIS[4136:2437780] NSNotification: MODEL_GROUP_INSTANCES_AVAILABLE
2015-11-19 10:17:37.990 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_AVAILABLE
2015-11-19 10:17:37.991 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:37.993 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:38.007 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/ (0.443377)
2015-11-19 10:17:38.010 ARIS[4136:2437780] Fin async data:
{"data":[{"user_log_id":"5542166","user_id":"10269","group_id":"0","game_id":"7279","event_type":"BEGIN_GAME","content_id":"0","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:16"},{"user_log_id":"5629548","user_id":"10269","group_id":"0","game_id":"7279","event_type":"BEGIN_GAME","content_id":"0","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:34"},{"user_log_id":"5542164","user_id":"10269","group_id":"0","game_id":"7279","event_type":"MOVE","content_id":"0","qty":"0","latitude":"43.073127861546","longitude":"-89.409259557724","deleted":"0","created":"2015-11-18 15:20:16"},{"user_log_id":"5629545","user_id":"10269","group_id":"0","game_id":"7279","event_type":"MOVE","content_id":"0","qty":"0","latitude":"43.073127861546","longitude":"-89.409259557724","deleted":"0","created":"2015-11-19 15:44:34"},{"user_log_id":"5542169","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585976","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:17"},{"user_log_id":"5629549","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585976","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:35"},{"user_log_id":"5629588","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585978","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629593","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1028196","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:49"},{"user_log_id":"5629582","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_PLAQUE","content_id":"41396","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629597","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_DIALOG_SCRIPT","content_id":"173545","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:50"},{"user_log_id":"5542167","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239553","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:17"},{"user_log_id":"5629552","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239553","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:35"},{"user_log_id":"5629584","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239556","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629591","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"198907","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:49"},{"user_log_id":"5629586","user_id":"10269","group_id":"0","game_id":"7279","event_type":"CHANGE_SCENE","content_id":"15775","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629596","user_id":"10269","group_id":"0","game_id":"7279","event_type":"RUN_EVENT_PACKAGE","content_id":"38139","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:50"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:38.027 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_LOGS_RECEIVED
2015-11-19 10:17:38.029 ARIS[4136:2437780] NSNotification: MODEL_LOGS_AVAILABLE
2015-11-19 10:17:38.030 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:38.032 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:38.037 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/ (0.468770)
2015-11-19 10:17:38.040 ARIS[4136:2437780] Fin async data:
{"data":{"active":[],"complete":[]},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:17:38.042 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_QUESTS_RECEIVED
2015-11-19 10:17:38.045 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:17:38.048 ARIS[4136:2437780] NSNotification: PLAYER_PERCENT_LOADED
2015-11-19 10:17:38.052 ARIS[4136:2437780] NSNotification: PLAYER_DATA_LOADED
2015-11-19 10:17:40.060 ARIS[4136:2437780] Media loader : Media id:180101 loaded:http://arisgames.org/server/gamedatav2/7279/aris3e963eee550f097b34b0ac52e2719cdc.png
2015-11-19 10:17:40.118 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:40.121 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:40.561 ARIS[4136:2437780] Media loader : Media id:180108 loaded:http://arisgames.org/server/gamedatav2/7279/aris20a05bdd52bbb51263accc03108d7bce.png
2015-11-19 10:17:41.011 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:41.012 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:41.048 ARIS[4136:2437780] Media loader : Media id:190319 loaded:http://arisgames.org/server/gamedatav2/7279/aris33ab2204c523cddaf6ad38c04d189743.png
2015-11-19 10:17:41.307 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:41.314 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:41.351 ARIS[4136:2437780] Media loader : Media id:170627 loaded:http://arisgames.org/server/gamedatav2/7279/ariscf2242811f1abc7d4290ad679b906cf6.png
2015-11-19 10:17:41.621 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:41.622 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:41.668 ARIS[4136:2437780] Media loader : Media id:194864 loaded:http://arisgames.org/server/gamedatav2/7279/arisb6f7cabceae81e7306c8220a1521b59c.png
2015-11-19 10:17:42.011 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:42.011 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:42.041 ARIS[4136:2437780] Media loader : Media id:180131 loaded:http://arisgames.org/server/gamedatav2/7279/aris5b7108f25292b81b6101ccc04dbe4b37.png
2015-11-19 10:17:42.410 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:42.413 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:42.460 ARIS[4136:2437780] Media loader : Media id:194857 loaded:http://arisgames.org/server/gamedatav2/7279/arise7d20ff771e7bbd9bde866e4b262e82a.png
2015-11-19 10:17:42.830 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:42.835 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:42.879 ARIS[4136:2437780] Media loader : Media id:194862 loaded:http://arisgames.org/server/gamedatav2/7279/arisa7f571ee57d7e4170ba6fb5f460e86ee.png
2015-11-19 10:17:43.209 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:43.213 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:43.248 ARIS[4136:2437780] Media loader : Media id:180103 loaded:http://arisgames.org/server/gamedatav2/7279/aris55dfee02f8117f53a45bdf46006ac51d.png
2015-11-19 10:17:43.653 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:43.655 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:43.672 ARIS[4136:2437780] Media loader : Media id:176758 loaded:http://arisgames.org/server/gamedatav2/7279/aris8156c427acd11579498c31e191ff6856.png
2015-11-19 10:17:43.773 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:43.777 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:43.805 ARIS[4136:2437780] Media loader : Media id:190314 loaded:http://arisgames.org/server/gamedatav2/7279/arisb53d5b59dd29646becd47b02d4b975e9.png
2015-11-19 10:17:44.046 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:44.050 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:44.080 ARIS[4136:2437780] Media loader : Media id:160741 loaded:http://arisgames.org/server/gamedatav2/7279/aris9abee5fcf15b5b1e9724f1b6ba857441.png
2015-11-19 10:17:44.167 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:44.169 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:44.221 ARIS[4136:2437780] Media loader : Media id:194866 loaded:http://arisgames.org/server/gamedatav2/7279/aris48b87c42e5af4eb2e0157a146ff6007d.png
2015-11-19 10:17:44.590 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:44.593 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:44.636 ARIS[4136:2437780] Media loader : Media id:162239 loaded:http://arisgames.org/server/gamedatav2/7279/aris1d53048e57a1ecc0d64cec4437772b78.png
2015-11-19 10:17:45.227 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:45.231 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:45.279 ARIS[4136:2437780] Media loader : Media id:189344 loaded:http://arisgames.org/server/gamedatav2/7279/arisce3480deb50b8dbeb0dcdf0155ce9f7e.png
2015-11-19 10:17:45.760 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:45.763 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:45.790 ARIS[4136:2437780] Media loader : Media id:192477 loaded:http://arisgames.org/server/gamedatav2/7279/aris9e360fb5de71ac6921893ee94bdb8d95.png
2015-11-19 10:17:45.926 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:45.929 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:45.960 ARIS[4136:2437780] Media loader : Media id:192470 loaded:http://arisgames.org/server/gamedatav2/7279/arisf4aa31f17265b4237d05c5195a9bd26c.png
2015-11-19 10:17:46.090 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:46.092 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:46.137 ARIS[4136:2437780] Media loader : Media id:188225 loaded:http://arisgames.org/server/gamedatav2/7279/aris5306ae26e8db9d2de0cab7ed8f374b69.png
2015-11-19 10:17:46.643 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:46.645 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:46.662 ARIS[4136:2437780] Media loader : Media id:176753 loaded:http://arisgames.org/server/gamedatav2/7279/arisa42710d8d6de58157937d7b9b9929197.png
2015-11-19 10:17:46.729 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:46.730 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:46.755 ARIS[4136:2437780] Media loader : Media id:190316 loaded:http://arisgames.org/server/gamedatav2/7279/arisd95d8cd0c9de862a98d08eff4ef389c6.png
2015-11-19 10:17:47.005 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:47.006 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:47.029 ARIS[4136:2437780] Media loader : Media id:161699 loaded:http://arisgames.org/server/gamedatav2/7279/aris9e36c6a6b74d981918fbef36b55ceeaf.png
2015-11-19 10:17:47.308 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:47.310 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:47.332 ARIS[4136:2437780] Media loader : Media id:190309 loaded:http://arisgames.org/server/gamedatav2/7279/aris9192a26f6c678cb981535e9d69a13a5b.png
2015-11-19 10:17:47.575 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:47.578 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:47.609 ARIS[4136:2437780] Media loader : Media id:190302 loaded:http://arisgames.org/server/gamedatav2/7279/aris3ff48ea3c7707382071ac941da6f30e8.png
2015-11-19 10:17:47.819 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:47.821 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:47.835 ARIS[4136:2437780] Media loader : Media id:176746 loaded:http://arisgames.org/server/gamedatav2/7279/aris94149efdab05fe80cc1febe5a23a70be.png
2015-11-19 10:17:47.907 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:47.909 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:47.939 ARIS[4136:2437780] Media loader : Media id:194847 loaded:http://arisgames.org/server/gamedatav2/7279/aris81a1d44ce82d6ed64b41d902f25c4d6b.png
2015-11-19 10:17:48.254 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:48.257 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:48.295 ARIS[4136:2437780] Media loader : Media id:194854 loaded:http://arisgames.org/server/gamedatav2/7279/aris3fedd31c6c6d22d678e67bd96670604e.png
2015-11-19 10:17:48.631 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:48.636 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:48.682 ARIS[4136:2437780] Media loader : Media id:180000 loaded:http://arisgames.org/server/gamedatav2/7279/arisa58644d050b8716f0175baf33cc1e0a5.png
2015-11-19 10:17:49.010 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:49.012 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:49.065 ARIS[4136:2437780] Media loader : Media id:195182 loaded:http://arisgames.org/server/gamedatav2/7279/aris41a6507c03681f302ed2f5bbf73bb998.png
2015-11-19 10:17:49.312 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:49.314 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:49.388 ARIS[4136:2437780] Media loader : Media id:190139 loaded:http://arisgames.org/server/gamedatav2/7279/aris01c7d0cb10ad0d10ebc3f8934fba5dc7.png
2015-11-19 10:17:49.742 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:49.746 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:49.765 ARIS[4136:2437780] Media loader : Media id:160687 loaded:http://arisgames.org/server/gamedatav2/7279/aris3b3b81eab6434d7e06fc507c7db60ddf.png
2015-11-19 10:17:49.843 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:49.845 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:49.881 ARIS[4136:2437780] Media loader : Media id:170626 loaded:http://arisgames.org/server/gamedatav2/7279/arisc75b77245402ed6f973958811ad597da.png
2015-11-19 10:17:50.191 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:50.193 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:50.217 ARIS[4136:2437780] Media loader : Media id:176755 loaded:http://arisgames.org/server/gamedatav2/7279/aris6ee5c46ef3c49f23c44ba9a6d5909330.png
2015-11-19 10:17:50.281 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:50.282 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:50.314 ARIS[4136:2437780] Media loader : Media id:162236 loaded:http://arisgames.org/server/gamedatav2/7279/aris57002ec169bb1df1018ff22a93d7787b.png
2015-11-19 10:17:50.814 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:50.815 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:50.838 ARIS[4136:2437780] Media loader : Media id:190311 loaded:http://arisgames.org/server/gamedatav2/7279/aris8024643565744febadbcf2bd2c565208.png
2015-11-19 10:17:51.058 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:51.059 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:51.082 ARIS[4136:2437780] Media loader : Media id:190304 loaded:http://arisgames.org/server/gamedatav2/7279/aris857d7bc2d3654b97a3fa16e9bc48fb22.png
2015-11-19 10:17:51.323 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:51.325 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:51.364 ARIS[4136:2437780] Media loader : Media id:170612 loaded:http://arisgames.org/server/gamedatav2/7279/aris4e4cf54af0f491f1a24248996e416a88.png
2015-11-19 10:17:51.679 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:51.680 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:51.696 ARIS[4136:2437780] Media loader : Media id:180123 loaded:http://arisgames.org/server/gamedatav2/7279/arise3bc4415ba87a95701b0d2bd6bd3031b.png
2015-11-19 10:17:51.769 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:51.770 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:51.815 ARIS[4136:2437780] Media loader : Media id:189348 loaded:http://arisgames.org/server/gamedatav2/7279/arisad273af2684320c71734b1e2334b5ba2.png
2015-11-19 10:17:52.121 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:52.123 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:52.144 ARIS[4136:2437780] Media loader : Media id:192644 loaded:http://arisgames.org/server/gamedatav2/7279/arisa7e2120b7abc9a24cdf296f889f72e12.png
2015-11-19 10:17:52.349 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:52.350 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:52.382 ARIS[4136:2437780] Media loader : Media id:195263 loaded:http://arisgames.org/server/gamedatav2/7279/arisb09a94abd3f8554138a46570519c759e.png
2015-11-19 10:17:52.922 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:52.923 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:52.950 ARIS[4136:2437780] Media loader : Media id:192474 loaded:http://arisgames.org/server/gamedatav2/7279/arisd4c7ea711c5b7db0fbb226194cd74037.png
2015-11-19 10:17:53.088 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:53.089 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:53.121 ARIS[4136:2437780] Media loader : Media id:188229 loaded:http://arisgames.org/server/gamedatav2/7279/aris009e14fe4b5ce87cd915f109edad2938.png
2015-11-19 10:17:53.641 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:53.645 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:53.683 ARIS[4136:2437780] Media loader : Media id:195435 loaded:http://arisgames.org/server/gamedatav2/7279/arisa636a65547ed0ce689876410fd4740d3.png
2015-11-19 10:17:54.018 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:54.019 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:54.058 ARIS[4136:2437780] Media loader : Media id:203269 loaded:http://arisgames.org/server/gamedatav2/7279/arisb1871eb00465baebec1823e5fe3d61f9.png
2015-11-19 10:17:54.385 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:54.386 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:54.400 ARIS[4136:2437780] Media loader : Media id:176757 loaded:http://arisgames.org/server/gamedatav2/7279/aris0e3c7118f8744892d2e6df9c3a7dcba6.png
2015-11-19 10:17:54.451 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:54.453 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:54.477 ARIS[4136:2437780] Media loader : Media id:190313 loaded:http://arisgames.org/server/gamedatav2/7279/arisc1c82b7dade9dfadb66b361af92bc8d4.png
2015-11-19 10:17:54.707 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:54.708 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:54.736 ARIS[4136:2437780] Media loader : Media id:190306 loaded:http://arisgames.org/server/gamedatav2/7279/aris86a59c717e99419212bead1092a86d25.png
2015-11-19 10:17:54.965 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:54.966 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:54.987 ARIS[4136:2437780] Media loader : Media id:190299 loaded:http://arisgames.org/server/gamedatav2/7279/arisf771f917c8213e2dab51556e982c2464.png
2015-11-19 10:17:55.221 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:55.225 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:55.256 ARIS[4136:2437780] Media loader : Media id:160940 loaded:http://arisgames.org/server/gamedatav2/7279/aris52cb51bf037eb2b3d3a954aba9502d93.png
2015-11-19 10:17:55.374 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:55.375 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:55.422 ARIS[4136:2437780] Media loader : Media id:180004 loaded:http://arisgames.org/server/gamedatav2/7279/aris818e428b9305c9523c04e247328bb9a5.png
2015-11-19 10:17:55.828 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:55.830 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:55.857 ARIS[4136:2437780] Media loader : Media id:159228 loaded:http://arisgames.org/server/gamedatav2/7279/arise09e520784322401f9f9bf972bdef3db.png
2015-11-19 10:17:55.954 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:55.958 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:56.005 ARIS[4136:2437780] Media loader : Media id:195265 loaded:http://arisgames.org/server/gamedatav2/7279/aris858bf43b3cdaa1841446806af45997ac.png
2015-11-19 10:17:56.480 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:56.481 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:56.524 ARIS[4136:2437780] Media loader : Media id:188224 loaded:http://arisgames.org/server/gamedatav2/7279/aris5b69e59ca7c030624e45643c8c071385.png
2015-11-19 10:17:56.779 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:56.780 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:56.827 ARIS[4136:2437780] Media loader : Media id:190136 loaded:http://arisgames.org/server/gamedatav2/7279/arisdad7ac9d5faad9208248c3cf17baa0b5.png
2015-11-19 10:17:57.128 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:57.131 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:57.148 ARIS[4136:2437780] Media loader : Media id:160684 loaded:http://arisgames.org/server/gamedatav2/7279/aris8e6c73ba5f9c3fc07fd8c061e8242124.png
2015-11-19 10:17:57.219 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:57.221 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:57.249 ARIS[4136:2437780] Media loader : Media id:192127 loaded:http://arisgames.org/server/gamedatav2/7279/aris5fa6581fb44c44ecab99e5dfbab43ff5.png
2015-11-19 10:17:57.610 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:57.612 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:57.634 ARIS[4136:2437780] Media loader : Media id:170609 loaded:http://arisgames.org/server/gamedatav2/7279/aris24c2d42391aaf63195edb123ca739baf.png
2015-11-19 10:17:57.865 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:57.867 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:57.893 ARIS[4136:2437780] Media loader : Media id:180134 loaded:http://arisgames.org/server/gamedatav2/7279/aris4b1514a5c2f80181ef4dd0b2f7f1e35e.png
2015-11-19 10:17:58.229 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:58.230 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:58.291 ARIS[4136:2437780] Media loader : Media id:189345 loaded:http://arisgames.org/server/gamedatav2/7279/aris31facd45920077f593b5af236785f4aa.png
2015-11-19 10:17:58.542 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:58.543 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:58.572 ARIS[4136:2437780] Media loader : Media id:162233 loaded:http://arisgames.org/server/gamedatav2/7279/arisded8b64811f11c2b5bb90be513b4df8d.png
2015-11-19 10:17:59.148 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:59.149 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:59.174 ARIS[4136:2437780] Media loader : Media id:190836 loaded:http://arisgames.org/server/gamedatav2/7279/aris2b6aa32c5f1532bf233c02c35f7c00ea.png
2015-11-19 10:17:59.415 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:59.417 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:59.441 ARIS[4136:2437780] Media loader : Media id:176752 loaded:http://arisgames.org/server/gamedatav2/7279/aris4087151dd1b802ac6e2882e7b388bbe7.png
2015-11-19 10:17:59.520 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:59.521 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:59.534 ARIS[4136:2437780] Media loader : Media id:176745 loaded:http://arisgames.org/server/gamedatav2/7279/aris9ed65e3619ee5751a82e62fe743c7e1b.png
2015-11-19 10:17:59.604 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:59.605 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:59.636 ARIS[4136:2437780] Media loader : Media id:192634 loaded:http://arisgames.org/server/gamedatav2/7279/arise571b6f5ac9ca9e0dc0821f1245b3f76.png
2015-11-19 10:17:59.887 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:17:59.890 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:17:59.913 ARIS[4136:2437780] Media loader : Media id:192641 loaded:http://arisgames.org/server/gamedatav2/7279/aris56b80935b58a34605f3054bf5bd18b6f.png
2015-11-19 10:18:00.173 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:00.175 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:00.207 ARIS[4136:2437780] Media loader : Media id:194846 loaded:http://arisgames.org/server/gamedatav2/7279/aris20a4c2eae1d90064f0bd7273af83b916.png
2015-11-19 10:18:00.561 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:00.563 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:00.593 ARIS[4136:2437780] Media loader : Media id:194853 loaded:http://arisgames.org/server/gamedatav2/7279/aris12db8461e6cf8bca91cba1c051b6b6a8.png
2015-11-19 10:18:00.925 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:00.926 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:00.941 ARIS[4136:2437780] Media loader : Media id:160686 loaded:http://arisgames.org/server/gamedatav2/7279/aris44341acd56e4f52ce3cc48789ac43686.png
2015-11-19 10:18:01.002 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:01.003 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:01.026 ARIS[4136:2437780] Media loader : Media id:192471 loaded:http://arisgames.org/server/gamedatav2/7279/aris15bca312b3891332ff487db55c65c909.png
2015-11-19 10:18:01.144 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:01.146 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:01.177 ARIS[4136:2437780] Media loader : Media id:195260 loaded:http://arisgames.org/server/gamedatav2/7279/aris3b506f7fa7844b47172aa08827f21731.png
2015-11-19 10:18:01.757 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:01.758 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:01.797 ARIS[4136:2437780] Media loader : Media id:161949 loaded:http://arisgames.org/server/gamedatav2/7279/aris0f72170a7b9fc4dc57011479f2bb5c42.png
2015-11-19 10:18:02.090 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:02.092 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:02.132 ARIS[4136:2437780] Media loader : Media id:195432 loaded:http://arisgames.org/server/gamedatav2/7279/aris01d6310ce96276805d587c2aef8d536a.gif
2015-11-19 10:18:02.321 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:02.321 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:02.360 ARIS[4136:2437780] Media loader : Media id:170611 loaded:http://arisgames.org/server/gamedatav2/7279/arisbbc4feee0337bcce8d6fc2546ba16666.png
2015-11-19 10:18:02.655 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:02.657 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:02.687 ARIS[4136:2437780] Media loader : Media id:192643 loaded:http://arisgames.org/server/gamedatav2/7279/arisc1c69664332daaa1f9b40bdcf6e11b3b.png
2015-11-19 10:18:02.953 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:02.955 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:02.999 ARIS[4136:2437780] Media loader : Media id:177489 loaded:http://arisgames.org/server/gamedatav2/7279/aris9d9627ad681ef3f6696f66982b1d57b3.png
2015-11-19 10:18:03.262 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:03.263 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:03.310 ARIS[4136:2437780] Media loader : Media id:180129 loaded:http://arisgames.org/server/gamedatav2/7279/aris1342e0298eaf1cd7c216cad63a6b9c2f.png
2015-11-19 10:18:03.781 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:03.782 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:03.818 ARIS[4136:2437780] Media loader : Media id:189340 loaded:http://arisgames.org/server/gamedatav2/7279/arisbd5150501711c232be0f3de63740e2f3.png
2015-11-19 10:18:04.064 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:04.065 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:04.096 ARIS[4136:2437780] Media loader : Media id:190303 loaded:http://arisgames.org/server/gamedatav2/7279/aris6e0940468b427b163bb5a820891ab7a7.png
2015-11-19 10:18:04.256 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:04.257 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:04.300 ARIS[4136:2437780] Media loader : Media id:190175 loaded:http://arisgames.org/server/gamedatav2/7279/aris912c993d442e1f1b1cb9365c61a585e5.png
2015-11-19 10:18:04.607 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:04.609 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:04.648 ARIS[4136:2437780] Media loader : Media id:188912 loaded:http://arisgames.org/server/gamedatav2/7279/arisa62a8fa6e4bee902613d0c4ff2c5dac8.png
2015-11-19 10:18:04.987 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:04.988 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.014 ARIS[4136:2437780] Media loader : Media id:195262 loaded:http://arisgames.org/server/gamedatav2/7279/arisf5188d922e0af7ea7dfc41e666249a3c.png
2015-11-19 10:18:05.328 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:05.329 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.348 ARIS[4136:2437780] Media loader : Media id:192473 loaded:http://arisgames.org/server/gamedatav2/7279/arisbfb805d1fcaf77aa1c59124d4e1c163b.png
2015-11-19 10:18:05.439 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:05.440 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.469 ARIS[4136:2437780] Media loader : Media id:190140 loaded:http://arisgames.org/server/gamedatav2/7279/arisf05c72276890ce222db4db5b53b6a3d6.png
2015-11-19 10:18:05.666 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:05.667 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.684 ARIS[4136:2437780] Media loader : Media id:192466 loaded:http://arisgames.org/server/gamedatav2/7279/aris745707cfc77806df6dca2b21a681a089.png
2015-11-19 10:18:05.777 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:05.779 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.802 ARIS[4136:2437780] Media loader : Media id:190333 loaded:http://arisgames.org/server/gamedatav2/7279/aris3117047f6ebc1fbeb040d436be2e623f.png
2015-11-19 10:18:05.951 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:05.951 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:05.964 ARIS[4136:2437780] Media loader : Media id:192124 loaded:http://arisgames.org/server/gamedatav2/7279/aris32d59e5114151f82170271daea18d0c4.png
2015-11-19 10:18:06.025 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:06.026 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:06.042 ARIS[4136:2437780] Media loader : Media id:176749 loaded:http://arisgames.org/server/gamedatav2/7279/aris79bb50dc0479e3a35067e4a6a7680a61.png
2015-11-19 10:18:06.097 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:06.098 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:06.122 ARIS[4136:2437780] Media loader : Media id:161802 loaded:http://arisgames.org/server/gamedatav2/7279/aris2defd9b741e25b5923481af323446230.png
2015-11-19 10:18:06.282 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:06.283 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:06.295 ARIS[4136:2437780] Media loader : Media id:176742 loaded:http://arisgames.org/server/gamedatav2/7279/aris331a8d1a2e45253bf19931c8418f75da.png
2015-11-19 10:18:06.350 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:06.351 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:06.374 ARIS[4136:2437780] Media loader : Media id:189342 loaded:http://arisgames.org/server/gamedatav2/7279/aris574bd289f07ec500d4be13efb138e7f8.png
2015-11-19 10:18:06.669 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:06.670 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:06.704 ARIS[4136:2437780] Media loader : Media id:180003 loaded:http://arisgames.org/server/gamedatav2/7279/aris5a14d54124dc8ab2afc811c11e3b471f.png
2015-11-19 10:18:07.035 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:07.036 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:07.071 ARIS[4136:2437780] Media loader : Media id:177484 loaded:http://arisgames.org/server/gamedatav2/7279/aris39e61a069e6f232ba04943407c58159c.png
2015-11-19 10:18:07.397 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:07.398 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:07.420 ARIS[4136:2437780] Media loader : Media id:171027 loaded:http://arisgames.org/server/gamedatav2/7279/aris725fac433f7372c913fd165fa4b2ce1e.png
2015-11-19 10:18:07.725 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:07.726 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:07.756 ARIS[4136:2437780] Media loader : Media id:189000 loaded:http://arisgames.org/server/gamedatav2/7279/aris5a0cb452435805d2d67afbd3eed3a9b8.png
2015-11-19 10:18:07.938 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:07.939 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:07.958 ARIS[4136:2437780] Media loader : Media id:190833 loaded:http://arisgames.org/server/gamedatav2/7279/aris5cffc8796d7b394a8ea4359dbf632c0e.png
2015-11-19 10:18:08.105 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:08.106 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:08.144 ARIS[4136:2437780] Media loader : Media id:188879 loaded:http://arisgames.org/server/gamedatav2/7279/aris7495bca283668e20345d328ec7746f0f.png
2015-11-19 10:18:08.341 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:08.343 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:08.361 ARIS[4136:2437780] Media loader : Media id:192631 loaded:http://arisgames.org/server/gamedatav2/7279/aris0c44ee316c1d33ac71783aa8c6a3ba51.png
2015-11-19 10:18:08.512 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:08.513 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:08.534 ARIS[4136:2437780] Media loader : Media id:192638 loaded:http://arisgames.org/server/gamedatav2/7279/aris0534d6a7caa0b5b876b2069b592cc83d.png
2015-11-19 10:18:08.689 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:08.691 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:08.722 ARIS[4136:2437780] Media loader : Media id:192461 loaded:http://arisgames.org/server/gamedatav2/7279/aris32dce2b9b2158a9811e8738f3f911d6c.png
2015-11-19 10:18:08.814 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:08.814 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:08.844 ARIS[4136:2437780] Media loader : Media id:194843 loaded:http://arisgames.org/server/gamedatav2/7279/ariscfd0a9a83a2c248ca346ec6bc239152a.png
2015-11-19 10:18:09.037 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:09.038 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:09.058 ARIS[4136:2437780] Media loader : Media id:194850 loaded:http://arisgames.org/server/gamedatav2/7279/arisa2c6ac86b27d9dfc8c4f8642600684cc.png
2015-11-19 10:18:09.274 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:09.275 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:09.310 ARIS[4136:2437780] Media loader : Media id:195250 loaded:http://arisgames.org/server/gamedatav2/7279/aris74ee60447c2925e9b3329b71c9b2b547.png
2015-11-19 10:18:09.580 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:09.581 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:09.605 ARIS[4136:2437780] Media loader : Media id:190300 loaded:http://arisgames.org/server/gamedatav2/7279/aris01264c27f41ebeeaccea7890e67253f6.png
2015-11-19 10:18:09.758 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:09.759 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:09.772 ARIS[4136:2437780] Media loader : Media id:180126 loaded:http://arisgames.org/server/gamedatav2/7279/aris588982e80eea200a0627a4d16f9d05a1.png
2015-11-19 10:18:09.829 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:09.830 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:09.860 ARIS[4136:2437780] Media loader : Media id:179998 loaded:http://arisgames.org/server/gamedatav2/7279/arisd515aa50ab7316f15db16a836fc04426.png
2015-11-19 10:18:10.042 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.043 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.072 ARIS[4136:2437780] Media loader : Media id:195245 loaded:http://arisgames.org/server/gamedatav2/7279/arisa3d4a2882d74e937b57cbe1f55025dd7.png
2015-11-19 10:18:10.261 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.262 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.280 ARIS[4136:2437780] Media loader : Media id:192468 loaded:http://arisgames.org/server/gamedatav2/7279/aris59bf78b1239a7abb2a9446ff9983c780.png
2015-11-19 10:18:10.374 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.375 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.386 ARIS[4136:2437780] Media loader : Media id:160685 loaded:http://arisgames.org/server/gamedatav2/7279/arisd4f4cd83964a4dae69556a2c775974f2.png
2015-11-19 10:18:10.440 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.441 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.462 ARIS[4136:2437780] Media loader : Media id:192463 loaded:http://arisgames.org/server/gamedatav2/7279/arisf3df8a8ca4b9c15952b18e1424ae1ce4.png
2015-11-19 10:18:10.552 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.553 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.570 ARIS[4136:2437780] Media loader : Media id:192456 loaded:http://arisgames.org/server/gamedatav2/7279/aris6fbcfd5366a4ce6892783cfb976c52d9.png
2015-11-19 10:18:10.661 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.662 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.686 ARIS[4136:2437780] Media loader : Media id:190330 loaded:http://arisgames.org/server/gamedatav2/7279/aris4204640d28defee6cc848b25c0e2ced6.png
2015-11-19 10:18:10.836 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:10.837 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:10.859 ARIS[4136:2437780] Media loader : Media id:190837 loaded:http://arisgames.org/server/gamedatav2/7279/aris8fbabdf060fdfa96ca2ba197ce40aefd.png
2015-11-19 10:18:11.009 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.010 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:11.023 ARIS[4136:2437780] Media loader : Media id:176739 loaded:http://arisgames.org/server/gamedatav2/7279/aris385b6a1f1bdfbc001605a71aa305b7d9.png
2015-11-19 10:18:11.074 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.075 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:11.097 ARIS[4136:2437780] Media loader : Media id:190830 loaded:http://arisgames.org/server/gamedatav2/7279/arisca0fc9e4e25a93579ca51e8bee4b1baa.png
2015-11-19 10:18:11.246 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.247 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:11.288 ARIS[4136:2437780] Media loader : Media id:192635 loaded:http://arisgames.org/server/gamedatav2/7279/arisb2c02a605d15137ead6f19c5dcbfa384.png
2015-11-19 10:18:11.447 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.449 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:11.497 ARIS[4136:2437780] Media loader : Media id:194840 loaded:http://arisgames.org/server/gamedatav2/7279/aris2ac5883f7937bb0a0b1b3b0b971fba99.png
2015-11-19 10:18:11.772 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.773 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:11.832 ARIS[4136:2437780] Media loader : Media id:192458 loaded:http://arisgames.org/server/gamedatav2/7279/aris7a6a015d22d2cc91d2b18dbda7fbc12a.png
2015-11-19 10:18:11.973 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:11.974 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:12.014 ARIS[4136:2437780] Media loader : Media id:195252 loaded:http://arisgames.org/server/gamedatav2/7279/arisab9201dd1d2c368a4a68ae8bf9067bd3.png
2015-11-19 10:18:12.386 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:12.387 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:12.404 ARIS[4136:2437780] Media loader : Media id:192451 loaded:http://arisgames.org/server/gamedatav2/7279/aris59b0ec75ffd1dc52b70d8fd46219e241.png
2015-11-19 10:18:12.495 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:12.496 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:12.516 ARIS[4136:2437780] Media loader : Media id:190325 loaded:http://arisgames.org/server/gamedatav2/7279/aris09aea72009ef546d60bc02690dcefd8a.png
2015-11-19 10:18:12.668 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:12.669 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:12.689 ARIS[4136:2437780] Media loader : Media id:161801 loaded:http://arisgames.org/server/gamedatav2/7279/arisbb92ef0e36f6d8ca88340e5a7ad1eb29.png
2015-11-19 10:18:12.892 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:12.893 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:12.909 ARIS[4136:2437780] Media loader : Media id:190825 loaded:http://arisgames.org/server/gamedatav2/7279/arise42836d2cfec1e09938ac7c294c9514e.png
2015-11-19 10:18:13.060 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:13.061 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:13.089 ARIS[4136:2437780] Media loader : Media id:180109 loaded:http://arisgames.org/server/gamedatav2/7279/arisf642a533f69f094631bcf1d7d7a32590.png
2015-11-19 10:18:13.369 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:13.370 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:13.392 ARIS[4136:2437780] Media loader : Media id:180102 loaded:http://arisgames.org/server/gamedatav2/7279/ariscf9daa3300bed2c90ec78265318f41a1.png
2015-11-19 10:18:13.660 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:13.661 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:13.677 ARIS[4136:2437780] Media loader : Media id:160682 loaded:http://arisgames.org/server/gamedatav2/7279/aris6c802c1bd3e34e16472943c7a1e8183d.png
2015-11-19 10:18:13.730 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:13.731 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:13.748 ARIS[4136:2437780] Media loader : Media id:192453 loaded:http://arisgames.org/server/gamedatav2/7279/aris0c1df54f7f879409771e354769f0f912.png
2015-11-19 10:18:13.839 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:13.840 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:13.865 ARIS[4136:2437780] Media loader : Media id:190327 loaded:http://arisgames.org/server/gamedatav2/7279/aris5f3bed37b175bd35b562b6a2b946ef8a.png
2015-11-19 10:18:14.018 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.020 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.052 ARIS[4136:2437780] Media loader : Media id:195200 loaded:http://arisgames.org/server/gamedatav2/7279/aris6557f6cfc1f01a9e69f9d4af0323fe98.png
2015-11-19 10:18:14.377 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.378 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.395 ARIS[4136:2437780] Media loader : Media id:190320 loaded:http://arisgames.org/server/gamedatav2/7279/arisce48f285ebc13d113bdf714ca223e0b4.png
2015-11-19 10:18:14.543 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.544 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.558 ARIS[4136:2437780] Media loader : Media id:180104 loaded:http://arisgames.org/server/gamedatav2/7279/aris2c7cbff31fba77ce66958ce5034d605d.png
2015-11-19 10:18:14.614 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.615 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.645 ARIS[4136:2437780] Media loader : Media id:195444 loaded:http://arisgames.org/server/gamedatav2/7279/aris69eb748c8de96aea15e3d55142ce6e76.png
2015-11-19 10:18:14.840 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.841 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.855 ARIS[4136:2437780] Media loader : Media id:161954 loaded:http://arisgames.org/server/gamedatav2/7279/arise359e3c36b7e9f60d7d4cfa4ab8e1776.png
2015-11-19 10:18:14.905 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:14.906 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:14.939 ARIS[4136:2437780] Media loader : Media id:188231 loaded:http://arisgames.org/server/gamedatav2/7279/aris38a916cee51fa1bb68a6ac29b3a45971.png
2015-11-19 10:18:15.260 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:15.261 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:15.282 ARIS[4136:2437780] Media loader : Media id:190322 loaded:http://arisgames.org/server/gamedatav2/7279/aris759823d9c1baa229b336db2d81efbfc8.png
2015-11-19 10:18:15.433 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:15.436 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:15.466 ARIS[4136:2437780] Media loader : Media id:177487 loaded:http://arisgames.org/server/gamedatav2/7279/aris350c6795c07ef32e2d7f6bc42976e854.png
2015-11-19 10:18:15.644 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:15.645 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:15.660 ARIS[4136:2437780] Media loader : Media id:176966 loaded:http://arisgames.org/server/gamedatav2/7279/aris1fd69ca42e8c17919767f8afb08e197b.png
2015-11-19 10:18:15.726 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:15.728 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:15.759 ARIS[4136:2437780] Media loader : Media id:177480 loaded:http://arisgames.org/server/gamedatav2/7279/arise61e6d5d906880e7d49e12ea45ef76ae.png
2015-11-19 10:18:16.073 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:16.075 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:16.113 ARIS[4136:2437780] Media loader : Media id:194860 loaded:http://arisgames.org/server/gamedatav2/7279/aris62686bab4fc321cf9fc775c1a19585ee.png
2015-11-19 10:18:16.322 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:16.323 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:16.348 ARIS[4136:2437780] Media loader : Media id:180106 loaded:http://arisgames.org/server/gamedatav2/7279/aris71636694e3302c6585cf6384f689548e.png
2015-11-19 10:18:16.622 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:16.624 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:16.655 ARIS[4136:2437780] Media loader : Media id:188233 loaded:http://arisgames.org/server/gamedatav2/7279/aris899d3a223c43646adfb498791158f4a5.png
2015-11-19 10:18:16.969 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:16.970 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:17.003 ARIS[4136:2437780] Media loader : Media id:188226 loaded:http://arisgames.org/server/gamedatav2/7279/aris45089a5125e6e450bbaea33031d99f0c.png
2015-11-19 10:18:17.324 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:17.325 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:17.353 ARIS[4136:2437780] Media loader : Media id:170625 loaded:http://arisgames.org/server/gamedatav2/7279/arisa09d74634f702f844e464d4a16eb7e9a.png
2015-11-19 10:18:17.549 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:17.550 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:17.562 ARIS[4136:2437780] Media loader : Media id:176761 loaded:http://arisgames.org/server/gamedatav2/7279/aris5855f8cffda6344598b7d8e41dcdd454.png
2015-11-19 10:18:17.625 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:17.625 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:17.647 ARIS[4136:2437780] Media loader : Media id:176975 loaded:http://arisgames.org/server/gamedatav2/7279/aris136123c341edd24dbab5f1b0b071a45a.png
2015-11-19 10:18:17.923 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:17.924 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:17.954 ARIS[4136:2437780] Media loader : Media id:177482 loaded:http://arisgames.org/server/gamedatav2/7279/ariscc2e1294375dbd03f0753c8e49c3062f.png
2015-11-19 10:18:18.271 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:18.272 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:18.294 ARIS[4136:2437780] Media loader : Media id:180136 loaded:http://arisgames.org/server/gamedatav2/7279/aris16947006367c55477fd97843d06e55c7.png
2015-11-19 10:18:18.547 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:18.547 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:19.829 ARIS[4136:2437780] Media loader : Media id:171075 loaded:http://arisgames.org/server/gamedatav2/7279/aris0481f349aa0a9af26554498587e9d27f.mov
2015-11-19 10:18:20.201 ARIS[4136:2437780] NSNotification: MEDIA_PIECE_AVAILABLE
2015-11-19 10:18:20.202 ARIS[4136:2437780] NSNotification: MEDIA_PERCENT_LOADED
2015-11-19 10:18:20.203 ARIS[4136:2437780] NSNotification: MEDIA_DATA_LOADED
2015-11-19 10:18:20.206 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerBeganGame/
2015-11-19 10:18:20.207 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:20.210 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerMoved/
2015-11-19 10:18:20.211 ARIS[4136:2437780] Req async data: {"game_id":7279,"longitude":-89.409259557723999,"latitude":43.073127861546048,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:20.212 ARIS[4136:2437780] NSNotification: USER_MOVED
2015-11-19 10:18:20.213 ARIS[4136:2437780] NSNotification: MODEL_DISPLAY_NEW_ENQUEUED
2015-11-19 10:18:20.214 ARIS[4136:2437780] NSNotification: MODEL_GAME_BEGAN
2015-11-19 10:18:20.488 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:18:21.239 ARIS[4136:2437780] NSNotification: GAME_PLAY_DISPLAYED_TRIGGER
2015-11-19 10:18:21.245 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerViewedInstance/
2015-11-19 10:18:21.246 ARIS[4136:2437780] Req async data: {"instance_id":1028196,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:21.248 ARIS[4136:2437780] NSNotification: GAME_PLAY_DISPLAYED_INSTANCE
2015-11-19 10:18:21.282 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerTriggeredTrigger/
2015-11-19 10:18:21.283 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"trigger_id":198907}
2015-11-19 10:18:21.298 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/
2015-11-19 10:18:21.299 ARIS[4136:2437780] Req async data: {"tick_factories":1,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:21.301 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/
2015-11-19 10:18:21.302 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:21.342 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerBeganGame/ (1.132912)
2015-11-19 10:18:21.344 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:21.355 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerMoved/ (1.142856)
2015-11-19 10:18:21.356 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:21.396 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:18:21.774 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerRanEventPackage/
2015-11-19 10:18:21.776 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"event_package_id":38139}
2015-11-19 10:18:21.780 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerViewedContent/
2015-11-19 10:18:21.781 ARIS[4136:2437780] Req async data: {"content_type":"DIALOG_SCRIPT","game_id":7279,"content_id":173545,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:21.790 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getOptionsForPlayerForDialogScript/
2015-11-19 10:18:21.791 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"dialog_script_id":173545,"dialog_id":28801}
2015-11-19 10:18:22.108 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerViewedInstance/ (0.860584)
2015-11-19 10:18:22.156 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.163 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/
2015-11-19 10:18:22.174 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.179 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/
2015-11-19 10:18:22.181 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.193 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/
2015-11-19 10:18:22.196 ARIS[4136:2437780] Dup req data : {"tick_factories":1,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:22.202 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/
2015-11-19 10:18:22.206 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.209 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/
2015-11-19 10:18:22.212 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"owner_id":10269}
2015-11-19 10:18:22.219 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/
2015-11-19 10:18:22.223 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.236 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/
2015-11-19 10:18:22.239 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.245 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/
2015-11-19 10:18:22.253 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.263 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerTriggeredTrigger/ (0.978754)
2015-11-19 10:18:22.268 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.274 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/
2015-11-19 10:18:22.277 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.282 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/
2015-11-19 10:18:22.285 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.287 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/
2015-11-19 10:18:22.288 ARIS[4136:2437780] Dup req data : {"tick_factories":1,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:22.290 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/
2015-11-19 10:18:22.302 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.320 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/
2015-11-19 10:18:22.323 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"owner_id":10269}
2015-11-19 10:18:22.330 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/
2015-11-19 10:18:22.334 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.339 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/
2015-11-19 10:18:22.342 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.345 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/
2015-11-19 10:18:22.348 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.354 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/ (1.051404)
2015-11-19 10:18:22.359 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.361 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_OVERLAYS_RECEIVED
2015-11-19 10:18:22.363 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:22.367 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/ (1.066688)
2015-11-19 10:18:22.368 ARIS[4136:2437780] Fin async data:
{"data":[{"trigger_id":"198907","game_id":"7279","instance_id":"1028196","scene_id":"15775","requirement_root_package_id":"169394","type":"IMMEDIATE","name":"","title":"Survival: Day 1","icon_media_id":"190343","latitude":"44.042801827631","longitude":"-123.06700009464","distance":"83","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440709212608","seconds":"0","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.374 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TRIGGERS_RECEIVED
2015-11-19 10:18:22.375 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_TRIGGERS_AVAILABLE
2015-11-19 10:18:22.379 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:22.412 ARIS[4136:2437780] NSNotification: CONNECTION_LAG
2015-11-19 10:18:22.518 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerRanEventPackage/ (0.734719)
2015-11-19 10:18:22.519 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.541 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getOptionsForPlayerForDialogScript/ (0.748193)
2015-11-19 10:18:22.542 ARIS[4136:2437780] Fin async data:
{"data":[{"dialog_option_id":"267956","game_id":"7279","dialog_id":"28801","parent_dialog_script_id":"173545","prompt":"<b>What do you do?<\/b> ","link_type":"DIALOG_SCRIPT","link_id":"192294","link_info":"","requirement_root_package_id":"0","sort_index":"0","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.547 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_SCRIPT_OPTIONS_RECEIVED
2015-11-19 10:18:22.551 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_SCRIPT_OPTIONS_AVAILABLE
2015-11-19 10:18:22.605 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/ (0.372727)
2015-11-19 10:18:22.609 ARIS[4136:2437780] Fin async data:
{"data":[{"tab_id":"66019","game_id":"7279","type":"MAP","name":"Map","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"0","user_id":10269},{"tab_id":"66022","game_id":"7279","type":"INVENTORY","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"1","user_id":10269},{"tab_id":"66025","game_id":"7279","type":"SCANNER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"4","user_id":10269},{"tab_id":"66028","game_id":"7279","type":"DECODER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"5","user_id":10269},{"tab_id":"66016","game_id":"7279","type":"QUESTS","name":"","icon_media_id":"0","content_id":"0","info":"grid","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66031","game_id":"7279","type":"PLAYER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66034","game_id":"7279","type":"NOTEBOOK","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"7","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.628 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TABS_RECEIVED
2015-11-19 10:18:22.631 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:22.638 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.logPlayerViewedContent/ (0.855646)
2015-11-19 10:18:22.642 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.646 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/
2015-11-19 10:18:22.649 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.654 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/
2015-11-19 10:18:22.656 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.657 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/
2015-11-19 10:18:22.658 ARIS[4136:2437780] Req async data: {"tick_factories":1,"game_id":7279,"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"}}
2015-11-19 10:18:22.660 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/
2015-11-19 10:18:22.661 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.665 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/
2015-11-19 10:18:22.666 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279,"owner_id":10269}
2015-11-19 10:18:22.668 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/
2015-11-19 10:18:22.669 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.673 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/
2015-11-19 10:18:22.674 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.676 ARIS[4136:2437780] Dup req abort : http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/
2015-11-19 10:18:22.676 ARIS[4136:2437780] Dup req data : {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"game_id":7279}
2015-11-19 10:18:22.680 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getInstancesForPlayer/ (0.461473)
2015-11-19 10:18:22.682 ARIS[4136:2437780] Fin async data:
{"data":[{"instance_id":"821185","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 19:59:38"},{"instance_id":"821211","game_id":"7279","object_type":"PLAQUE","object_id":"27842","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:18:16"},{"instance_id":"821221","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-13 21:28:04"},{"instance_id":"852790","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852793","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852796","game_id":"7279","object_type":"ITEM","object_id":"39788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 20:51:36"},{"instance_id":"852818","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-24 21:38:51"},{"instance_id":"852981","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-24 22:06:00"},{"instance_id":"859327","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 18:54:12"},{"instance_id":"859545","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:14:34"},{"instance_id":"859606","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-27 19:18:34"},{"instance_id":"863203","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"863206","game_id":"7279","object_type":"ITEM","object_id":"41028","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-07-27 20:36:40"},{"instance_id":"891677","game_id":"7279","object_type":"PLAQUE","object_id":"29063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-07-31 17:16:07"},{"instance_id":"911823","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 18:48:17"},{"instance_id":"911875","game_id":"7279","object_type":"ITEM","object_id":"41482","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"911878","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-04 18:48:46"},{"instance_id":"912940","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-04 19:38:47"},{"instance_id":"925674","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-06 18:56:55"},{"instance_id":"926283","game_id":"7279","object_type":"FACTORY","object_id":"3758","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-06 19:57:45"},{"instance_id":"927767","game_id":"7279","object_type":"FACTORY","object_id":"3762","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:56:48"},{"instance_id":"927768","game_id":"7279","object_type":"FACTORY","object_id":"3763","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-07 16:57:08"},{"instance_id":"937768","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 00:17:08"},{"instance_id":"938468","game_id":"7279","object_type":"ITEM","object_id":"41543","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"938474","game_id":"7279","object_type":"ITEM","object_id":"41545","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-11 18:14:16"},{"instance_id":"944119","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"70","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:49:58"},{"instance_id":"944134","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:54:39"},{"instance_id":"944157","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"54","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-11 21:56:31"},{"instance_id":"956276","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:23:13"},{"instance_id":"956278","game_id":"7279","object_type":"DIALOG","object_id":"28339","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:22"},{"instance_id":"956279","game_id":"7279","object_type":"DIALOG","object_id":"28345","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:26:26"},{"instance_id":"956280","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 19:32:24"},{"instance_id":"956290","game_id":"7279","object_type":"ITEM","object_id":"41788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956296","game_id":"7279","object_type":"ITEM","object_id":"41790","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-13 19:47:27"},{"instance_id":"956765","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:11:33"},{"instance_id":"956767","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:13:34"},{"instance_id":"956839","game_id":"7279","object_type":"SCENE","object_id":"17225","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:21"},{"instance_id":"956841","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-13 20:19:42"},{"instance_id":"957256","game_id":"7279","object_type":"DIALOG","object_id":"28803","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:22"},{"instance_id":"957258","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:26:34"},{"instance_id":"957259","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:36:33"},{"instance_id":"957263","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:40:27"},{"instance_id":"957338","game_id":"7279","object_type":"DIALOG","object_id":"28039","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:43:57"},{"instance_id":"957411","game_id":"7279","object_type":"DIALOG","object_id":"28041","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:48:03"},{"instance_id":"957414","game_id":"7279","object_type":"PLAQUE","object_id":"30731","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 01:53:17"},{"instance_id":"957558","game_id":"7279","object_type":"DIALOG","object_id":"28043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:11:45"},{"instance_id":"957561","game_id":"7279","object_type":"DIALOG","object_id":"28044","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:18:49"},{"instance_id":"957747","game_id":"7279","object_type":"DIALOG","object_id":"28046","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 02:34:30"},{"instance_id":"958107","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:24"},{"instance_id":"958110","game_id":"7279","object_type":"DIALOG","object_id":"28049","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 03:20:47"},{"instance_id":"962350","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-14 16:46:28"},{"instance_id":"984477","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:35:46"},{"instance_id":"984503","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:44:47"},{"instance_id":"984506","game_id":"7279","object_type":"DIALOG","object_id":"28342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 01:45:29"},{"instance_id":"984517","game_id":"7279","object_type":"ITEM","object_id":"41997","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 01:46:43"},{"instance_id":"984982","game_id":"7279","object_type":"PLAQUE","object_id":"30537","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:07:13"},{"instance_id":"984983","game_id":"7279","object_type":"DIALOG","object_id":"28343","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:14:49"},{"instance_id":"985263","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"1","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:26:55"},{"instance_id":"985302","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"71","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:34:00"},{"instance_id":"985305","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"19","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:36:02"},{"instance_id":"985307","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:29"},{"instance_id":"985310","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"84","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:41"},{"instance_id":"985311","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"79","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:38:47"},{"instance_id":"985314","game_id":"7279","object_type":"PLAQUE","object_id":"31270","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:43:41"},{"instance_id":"985317","game_id":"7279","object_type":"PLAQUE","object_id":"33639","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:44:30"},{"instance_id":"985418","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985421","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985424","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-21 02:44:59"},{"instance_id":"985632","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 02:56:27"},{"instance_id":"985760","game_id":"7279","object_type":"DIALOG","object_id":"28350","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-21 03:17:34"},{"instance_id":"1027857","game_id":"7279","object_type":"ITEM","object_id":"42759","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027860","game_id":"7279","object_type":"ITEM","object_id":"42761","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1027863","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-27 20:56:33"},{"instance_id":"1028196","game_id":"7279","object_type":"DIALOG","object_id":"28801","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-27 21:00:06"},{"instance_id":"1042964","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:08"},{"instance_id":"1042965","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:24:35"},{"instance_id":"1042967","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:25:49"},{"instance_id":"1042969","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:19"},{"instance_id":"1042971","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:26:34"},{"instance_id":"1042973","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:06"},{"instance_id":"1042974","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:22"},{"instance_id":"1042975","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:27:35"},{"instance_id":"1042976","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:05"},{"instance_id":"1042977","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:28:54"},{"instance_id":"1042979","game_id":"7279","object_type":"SCENE","object_id":"17913","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:34:20"},{"instance_id":"1042981","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:40:24"},{"instance_id":"1042984","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 01:41:32"},{"instance_id":"1042988","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-08-29 01:45:59"},{"instance_id":"1043443","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:18:52"},{"instance_id":"1043446","game_id":"7279","object_type":"DIALOG","object_id":"29022","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-08-29 02:19:12"},{"instance_id":"1058318","game_id":"7279","object_type":"DIALOG","object_id":"29228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 17:42:46"},{"instance_id":"1061349","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 18:49:44"},{"instance_id":"1066600","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-01 22:35:09"},{"instance_id":"1084986","game_id":"7279","object_type":"PLAQUE","object_id":"32169","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-02 23:34:00"},{"instance_id":"1113614","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113620","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113626","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113632","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-08 19:31:20"},{"instance_id":"1113746","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:48"},{"instance_id":"1113749","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:32:54"},{"instance_id":"1113750","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:01"},{"instance_id":"1113753","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:06"},{"instance_id":"1113754","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:33:55"},{"instance_id":"1113756","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:35:55"},{"instance_id":"1113759","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:38:08"},{"instance_id":"1113887","game_id":"7279","object_type":"PLAQUE","object_id":"30713","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 19:43:39"},{"instance_id":"1114898","game_id":"7279","object_type":"PLAQUE","object_id":"33043","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:12:22"},{"instance_id":"1115151","game_id":"7279","object_type":"PLAQUE","object_id":"30538","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:36"},{"instance_id":"1115154","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 20:19:46"},{"instance_id":"1116763","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:46:55"},{"instance_id":"1116891","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:48:31"},{"instance_id":"1117017","game_id":"7279","object_type":"PLAQUE","object_id":"33045","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:51:57"},{"instance_id":"1117144","game_id":"7279","object_type":"DIALOG","object_id":"30424","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 22:58:29"},{"instance_id":"1117145","game_id":"7279","object_type":"PLAQUE","object_id":"33047","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-08 23:03:01"},{"instance_id":"1123198","game_id":"7279","object_type":"ITEM","object_id":"44845","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-09 16:46:23"},{"instance_id":"1131352","game_id":"7279","object_type":"DIALOG","object_id":"30829","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 17:48:44"},{"instance_id":"1133641","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 19:48:42"},{"instance_id":"1135978","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:47:27"},{"instance_id":"1136140","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:57:45"},{"instance_id":"1136141","game_id":"7279","object_type":"PLAQUE","object_id":"33642","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 20:58:35"},{"instance_id":"1138052","game_id":"7279","object_type":"PLAQUE","object_id":"33644","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:40:02"},{"instance_id":"1138312","game_id":"7279","object_type":"PLAQUE","object_id":"33647","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:48:44"},{"instance_id":"1138831","game_id":"7279","object_type":"PLAQUE","object_id":"33653","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 21:53:12"},{"instance_id":"1141249","game_id":"7279","object_type":"DIALOG","object_id":"31464","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-09 23:04:27"},{"instance_id":"1159289","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:05:44"},{"instance_id":"1159386","game_id":"7279","object_type":"PLAQUE","object_id":"34105","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-10 20:06:58"},{"instance_id":"1161609","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"3","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:21:54"},{"instance_id":"1161802","game_id":"7279","object_type":"PLAQUE","object_id":"31262","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-11 00:26:30"},{"instance_id":"1390983","game_id":"7279","object_type":"PLAQUE","object_id":"35067","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:18:06"},{"instance_id":"1391067","game_id":"7279","object_type":"PLAQUE","object_id":"35055","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:45"},{"instance_id":"1391068","game_id":"7279","object_type":"PLAQUE","object_id":"35056","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:52"},{"instance_id":"1391070","game_id":"7279","object_type":"PLAQUE","object_id":"35057","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:22:58"},{"instance_id":"1391071","game_id":"7279","object_type":"PLAQUE","object_id":"35059","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:03"},{"instance_id":"1391073","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:08"},{"instance_id":"1391074","game_id":"7279","object_type":"PLAQUE","object_id":"35062","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:13"},{"instance_id":"1391075","game_id":"7279","object_type":"PLAQUE","object_id":"35063","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:19"},{"instance_id":"1391076","game_id":"7279","object_type":"PLAQUE","object_id":"35065","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:23:25"},{"instance_id":"1391271","game_id":"7279","object_type":"PLAQUE","object_id":"35087","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:54"},{"instance_id":"1391273","game_id":"7279","object_type":"PLAQUE","object_id":"35089","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:41:59"},{"instance_id":"1391276","game_id":"7279","object_type":"PLAQUE","object_id":"35090","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:05"},{"instance_id":"1391278","game_id":"7279","object_type":"PLAQUE","object_id":"35093","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-15 22:42:10"},{"instance_id":"1392561","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:41:36"},{"instance_id":"1392564","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 01:43:14"},{"instance_id":"1394272","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 03:43:41"},{"instance_id":"1400163","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:14"},{"instance_id":"1400166","game_id":"7279","object_type":"PLAQUE","object_id":"27833","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-16 18:54:38"},{"instance_id":"1412104","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-17 23:21:42"},{"instance_id":"1431011","game_id":"7279","object_type":"PLAQUE","object_id":"36471","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:14"},{"instance_id":"1431012","game_id":"7279","object_type":"PLAQUE","object_id":"36474","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:00:20"},{"instance_id":"1431054","game_id":"7279","object_type":"DIALOG","object_id":"33341","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:02:18"},{"instance_id":"1431055","game_id":"7279","object_type":"PLAQUE","object_id":"31966","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:03:51"},{"instance_id":"1431300","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:49"},{"instance_id":"1431303","game_id":"7279","object_type":"PLAQUE","object_id":"31972","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:11:54"},{"instance_id":"1431305","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:12:05"},{"instance_id":"1432292","game_id":"7279","object_type":"DIALOG","object_id":"33342","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:24:16"},{"instance_id":"1433015","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-22 17:36:07"},{"instance_id":"1440914","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:10:13"},{"instance_id":"1441314","game_id":"7279","object_type":"DIALOG","object_id":"28035","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-23 01:28:21"},{"instance_id":"1452238","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-24 23:48:30"},{"instance_id":"1452922","game_id":"7279","object_type":"PLAQUE","object_id":"36903","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:23:11"},{"instance_id":"1452924","game_id":"7279","object_type":"PLAQUE","object_id":"36906","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:29"},{"instance_id":"1452926","game_id":"7279","object_type":"PLAQUE","object_id":"36907","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:24:46"},{"instance_id":"1452928","game_id":"7279","object_type":"PLAQUE","object_id":"36909","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:25:13"},{"instance_id":"1452929","game_id":"7279","object_type":"DIALOG","object_id":"33550","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:34:06"},{"instance_id":"1452932","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:35:02"},{"instance_id":"1453177","game_id":"7279","object_type":"PLAQUE","object_id":"36911","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:13"},{"instance_id":"1453180","game_id":"7279","object_type":"PLAQUE","object_id":"36912","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 03:48:32"},{"instance_id":"1453502","game_id":"7279","object_type":"PLAQUE","object_id":"36914","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:44"},{"instance_id":"1453503","game_id":"7279","object_type":"PLAQUE","object_id":"36916","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:11:58"},{"instance_id":"1457720","game_id":"7279","object_type":"PLAQUE","object_id":"30712","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:55:44"},{"instance_id":"1457722","game_id":"7279","object_type":"PLAQUE","object_id":"36917","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:27"},{"instance_id":"1457724","game_id":"7279","object_type":"PLAQUE","object_id":"36920","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:57:48"},{"instance_id":"1457808","game_id":"7279","object_type":"PLAQUE","object_id":"36921","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:04"},{"instance_id":"1457968","game_id":"7279","object_type":"PLAQUE","object_id":"36922","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:28"},{"instance_id":"1457970","game_id":"7279","object_type":"PLAQUE","object_id":"36924","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:58:42"},{"instance_id":"1457971","game_id":"7279","object_type":"PLAQUE","object_id":"36925","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 04:59:08"},{"instance_id":"1457986","game_id":"7279","object_type":"ITEM","object_id":"49787","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1457989","game_id":"7279","object_type":"ITEM","object_id":"49788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME","owner_id":"0","created":"2015-09-25 05:06:40"},{"instance_id":"1458829","game_id":"7279","object_type":"PLAQUE","object_id":"30709","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:19:48"},{"instance_id":"1458917","game_id":"7279","object_type":"PLAQUE","object_id":"36928","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:24"},{"instance_id":"1458918","game_id":"7279","object_type":"PLAQUE","object_id":"36931","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:39"},{"instance_id":"1458920","game_id":"7279","object_type":"PLAQUE","object_id":"36933","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 05:21:50"},{"instance_id":"1460817","game_id":"7279","object_type":"PLAQUE","object_id":"37268","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:32:55"},{"instance_id":"1460820","game_id":"7279","object_type":"PLAQUE","object_id":"37263","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:04"},{"instance_id":"1460822","game_id":"7279","object_type":"PLAQUE","object_id":"37276","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:33:10"},{"instance_id":"1461313","game_id":"7279","object_type":"PLAQUE","object_id":"37271","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:25"},{"instance_id":"1461315","game_id":"7279","object_type":"PLAQUE","object_id":"37510","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 17:55:57"},{"instance_id":"1461404","game_id":"7279","object_type":"PLAQUE","object_id":"37279","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:04:58"},{"instance_id":"1461406","game_id":"7279","object_type":"PLAQUE","object_id":"37264","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:11"},{"instance_id":"1461407","game_id":"7279","object_type":"PLAQUE","object_id":"37513","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:05:19"},{"instance_id":"1461496","game_id":"7279","object_type":"PLAQUE","object_id":"37274","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:19"},{"instance_id":"1461498","game_id":"7279","object_type":"PLAQUE","object_id":"37266","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:21:31"},{"instance_id":"1461499","game_id":"7279","object_type":"PLAQUE","object_id":"37280","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:23:20"},{"instance_id":"1461591","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:27:18"},{"instance_id":"1469198","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:36"},{"instance_id":"1469201","game_id":"7279","object_type":"SCENE","object_id":"17228","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 18:29:51"},{"instance_id":"1478620","game_id":"7279","object_type":"PLAQUE","object_id":"35061","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-25 21:30:39"},{"instance_id":"1492267","game_id":"7279","object_type":"WEB_PAGE","object_id":"8708","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:52:07"},{"instance_id":"1492288","game_id":"7279","object_type":"PLAQUE","object_id":"37200","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-09-29 22:53:14"},{"instance_id":"1504298","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 15:47:00"},{"instance_id":"1506066","game_id":"7279","object_type":"PLAQUE","object_id":"35099","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:39:50"},{"instance_id":"1506068","game_id":"7279","object_type":"SCENE","object_id":"17231","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-01 19:40:13"},{"instance_id":"1580783","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 01:17:24"},{"instance_id":"1585976","game_id":"7279","object_type":"PLAQUE","object_id":"41396","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:10:31"},{"instance_id":"1585978","game_id":"7279","object_type":"SCENE","object_id":"15775","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-08 23:11:14"},{"instance_id":"1621466","game_id":"7279","object_type":"SCENE","object_id":"17222","qty":"1","infinite_qty":"1","factory_id":"0","owner_type":"GAME_CONTENT","owner_id":"0","created":"2015-10-14 18:06:47"},{"instance_id":"1979653","game_id":"7279","object_type":"ITEM","object_id":"39784","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979656","game_id":"7279","object_type":"ITEM","object_id":"39786","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979659","game_id":"7279","object_type":"ITEM","object_id":"39788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979662","game_id":"7279","object_type":"ITEM","object_id":"40936","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979665","game_id":"7279","object_type":"ITEM","object_id":"41026","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979668","game_id":"7279","object_type":"ITEM","object_id":"41028","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979671","game_id":"7279","object_type":"ITEM","object_id":"41482","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979674","game_id":"7279","object_type":"ITEM","object_id":"41484","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979677","game_id":"7279","object_type":"ITEM","object_id":"41493","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979680","game_id":"7279","object_type":"ITEM","object_id":"41540","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979683","game_id":"7279","object_type":"ITEM","object_id":"41543","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979686","game_id":"7279","object_type":"ITEM","object_id":"41545","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979689","game_id":"7279","object_type":"ITEM","object_id":"41788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979692","game_id":"7279","object_type":"ITEM","object_id":"41790","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979695","game_id":"7279","object_type":"ITEM","object_id":"41997","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979698","game_id":"7279","object_type":"ITEM","object_id":"42093","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979701","game_id":"7279","object_type":"ITEM","object_id":"42095","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979704","game_id":"7279","object_type":"ITEM","object_id":"42096","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979707","game_id":"7279","object_type":"ITEM","object_id":"42759","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979710","game_id":"7279","object_type":"ITEM","object_id":"42761","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979713","game_id":"7279","object_type":"ITEM","object_id":"42764","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979716","game_id":"7279","object_type":"ITEM","object_id":"42948","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979719","game_id":"7279","object_type":"ITEM","object_id":"44713","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979722","game_id":"7279","object_type":"ITEM","object_id":"44714","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979725","game_id":"7279","object_type":"ITEM","object_id":"44715","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979728","game_id":"7279","object_type":"ITEM","object_id":"44717","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979731","game_id":"7279","object_type":"ITEM","object_id":"44845","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979734","game_id":"7279","object_type":"ITEM","object_id":"49787","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"},{"instance_id":"1979737","game_id":"7279","object_type":"ITEM","object_id":"49788","qty":"0","infinite_qty":"0","factory_id":"0","owner_type":"USER","owner_id":"10269","created":"2015-11-18 15:20:14"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:22.898 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_INSTANCES_RECEIVED
2015-11-19 10:18:22.909 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_PLAYER_AVAILABLE
2015-11-19 10:18:22.912 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_INSTANCES_AVAILABLE
2015-11-19 10:18:22.950 ARIS[4136:2437780] Req asynch URL: http://arisgames.org/server/json.php/v2.media.getMedia/
2015-11-19 10:18:22.952 ARIS[4136:2437780] Req async data: {"auth":{"user_id":10269,"key":"WQ52ILlkxh1QIMCblMPptTE9n7XO1xyNduGM6RXtZPayrCACefSyZmyckmRcJgQN"},"media_id":164156}
2015-11-19 10:18:22.974 ARIS[4136:2437780] NSNotification: MODEL_GAME_INSTANCES_AVAILABLE
2015-11-19 10:18:22.977 ARIS[4136:2437780] NSNotification: MODEL_GROUP_INSTANCES_AVAILABLE
2015-11-19 10:18:22.978 ARIS[4136:2437780] NSNotification: MODEL_INSTANCES_AVAILABLE
2015-11-19 10:18:22.980 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:22.994 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getLogsForPlayer/ (0.750211)
2015-11-19 10:18:22.999 ARIS[4136:2437780] Fin async data:
{"data":[{"user_log_id":"5542166","user_id":"10269","group_id":"0","game_id":"7279","event_type":"BEGIN_GAME","content_id":"0","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:16"},{"user_log_id":"5629548","user_id":"10269","group_id":"0","game_id":"7279","event_type":"BEGIN_GAME","content_id":"0","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:34"},{"user_log_id":"5630509","user_id":"10269","group_id":"0","game_id":"7279","event_type":"BEGIN_GAME","content_id":"0","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 16:18:53"},{"user_log_id":"5542164","user_id":"10269","group_id":"0","game_id":"7279","event_type":"MOVE","content_id":"0","qty":"0","latitude":"43.073127861546","longitude":"-89.409259557724","deleted":"0","created":"2015-11-18 15:20:16"},{"user_log_id":"5629545","user_id":"10269","group_id":"0","game_id":"7279","event_type":"MOVE","content_id":"0","qty":"0","latitude":"43.073127861546","longitude":"-89.409259557724","deleted":"0","created":"2015-11-19 15:44:34"},{"user_log_id":"5630511","user_id":"10269","group_id":"0","game_id":"7279","event_type":"MOVE","content_id":"0","qty":"0","latitude":"43.073127861546","longitude":"-89.409259557724","deleted":"0","created":"2015-11-19 16:18:53"},{"user_log_id":"5542169","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585976","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:17"},{"user_log_id":"5629549","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585976","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:35"},{"user_log_id":"5629588","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1585978","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629593","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1028196","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:49"},{"user_log_id":"5630512","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_INSTANCE","content_id":"1028196","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 16:18:54"},{"user_log_id":"5629582","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_PLAQUE","content_id":"41396","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629597","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_DIALOG_SCRIPT","content_id":"173545","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:50"},{"user_log_id":"5630514","user_id":"10269","group_id":"0","game_id":"7279","event_type":"VIEW_DIALOG_SCRIPT","content_id":"173545","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 16:18:55"},{"user_log_id":"5542167","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239553","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-18 15:20:17"},{"user_log_id":"5629552","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239553","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:35"},{"user_log_id":"5629584","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"239556","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629591","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"198907","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:49"},{"user_log_id":"5630513","user_id":"10269","group_id":"0","game_id":"7279","event_type":"TRIGGER_TRIGGER","content_id":"198907","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 16:18:54"},{"user_log_id":"5629586","user_id":"10269","group_id":"0","game_id":"7279","event_type":"CHANGE_SCENE","content_id":"15775","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:48"},{"user_log_id":"5629596","user_id":"10269","group_id":"0","game_id":"7279","event_type":"RUN_EVENT_PACKAGE","content_id":"38139","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 15:44:50"},{"user_log_id":"5630515","user_id":"10269","group_id":"0","game_id":"7279","event_type":"RUN_EVENT_PACKAGE","content_id":"38139","qty":"0","latitude":"0","longitude":"0","deleted":"0","created":"2015-11-19 16:18:55"}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.021 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_LOGS_RECEIVED
2015-11-19 10:18:23.023 ARIS[4136:2437780] NSNotification: MODEL_LOGS_AVAILABLE
2015-11-19 10:18:23.024 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.029 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getQuestsForPlayer/ (0.770235)
2015-11-19 10:18:23.030 ARIS[4136:2437780] Fin async data:
{"data":{"active":[],"complete":[]},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.031 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_QUESTS_RECEIVED
2015-11-19 10:18:23.032 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.035 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getSceneForPlayer/ (0.857890)
2015-11-19 10:18:23.036 ARIS[4136:2437780] Fin async data:
{"data":{"scene_id":"15775","game_id":"7279","name":"Survival: Day 1","description":"","editor_x":"0","editor_y":"0","created":"2015-07-13 17:12:41","last_active":"2015-10-08 23:11:27"},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.039 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_SCENE_RECEIVED
2015-11-19 10:18:23.041 ARIS[4136:2437780] NSNotification: MODEL_SCENES_PLAYER_SCENE_AVAILABLE
2015-11-19 10:18:23.041 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.043 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getGroupForPlayer/ (0.856616)
2015-11-19 10:18:23.044 ARIS[4136:2437780] Fin async data:
{"data":null,"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.046 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_GROUP_RECEIVED
2015-11-19 10:18:23.047 ARIS[4136:2437780] NSNotification: MODEL_GROUPS_PLAYER_GROUP_AVAILABLE
2015-11-19 10:18:23.048 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.174 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTabsForPlayer/ (0.502849)
2015-11-19 10:18:23.175 ARIS[4136:2437780] Fin async data:
{"data":[{"tab_id":"66019","game_id":"7279","type":"MAP","name":"Map","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"0","user_id":10269},{"tab_id":"66022","game_id":"7279","type":"INVENTORY","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"1","user_id":10269},{"tab_id":"66025","game_id":"7279","type":"SCANNER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"4","user_id":10269},{"tab_id":"66028","game_id":"7279","type":"DECODER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"5","user_id":10269},{"tab_id":"66016","game_id":"7279","type":"QUESTS","name":"","icon_media_id":"0","content_id":"0","info":"grid","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66031","game_id":"7279","type":"PLAYER","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"6","user_id":10269},{"tab_id":"66034","game_id":"7279","type":"NOTEBOOK","name":"","icon_media_id":"0","content_id":"0","info":"","requirement_root_package_id":"0","sort_index":"7","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.186 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TABS_RECEIVED
2015-11-19 10:18:23.188 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.192 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.media.getMedia/ (0.238677)
2015-11-19 10:18:23.193 ARIS[4136:2437780] Fin async data:
{"data":{"media_id":"164156","game_id":"0","name":"","file_name":"aris6805d25fe4a573b2cef44b83ed775110.jpg","url":"http:\/\/arisgames.org\/server\/gamedatav2\/players\/aris6805d25fe4a573b2cef44b83ed775110.jpg","thumb_url":"http:\/\/arisgames.org\/server\/gamedatav2\/players\/aris6805d25fe4a573b2cef44b83ed775110_128.jpg"},"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.196 ARIS[4136:2437780] NSNotification: SERVICES_MEDIA_RECEIVED
2015-11-19 10:18:23.211 ARIS[4136:2437780] NSNotification: MODEL_MEDIA_AVAILABLE
2015-11-19 10:18:23.214 ARIS[4136:2437780] NSNotification: GAME_PIECE_AVAILABLE
2015-11-19 10:18:23.217 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getOverlaysForPlayer/ (0.553425)
2015-11-19 10:18:23.219 ARIS[4136:2437780] Fin async data:
{"data":[],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.222 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_OVERLAYS_RECEIVED
2015-11-19 10:18:23.223 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE
2015-11-19 10:18:23.231 ARIS[4136:2437780] Fin asynch URL: http://arisgames.org/server/json.php/v2.client.getTriggersForPlayer/ (0.571491)
2015-11-19 10:18:23.232 ARIS[4136:2437780] Fin async data:
{"data":[{"trigger_id":"198907","game_id":"7279","instance_id":"1028196","scene_id":"15775","requirement_root_package_id":"169394","type":"IMMEDIATE","name":"","title":"Survival: Day 1","icon_media_id":"190343","latitude":"44.042801827631","longitude":"-123.06700009464","distance":"83","infinite_distance":"0","wiggle":"0","show_title":"1","hidden":"0","trigger_on_enter":"0","qr_code":"1440709212608","seconds":"0","user_id":10269}],"returnCode":0,"returnCodeDescription":null}
2015-11-19 10:18:23.237 ARIS[4136:2437780] NSNotification: SERVICES_PLAYER_TRIGGERS_RECEIVED
2015-11-19 10:18:23.254 ARIS[4136:2437780] NSNotification: MODEL_PLAYER_TRIGGERS_AVAILABLE
2015-11-19 10:18:23.257 ARIS[4136:2437780] NSNotification: PLAYER_PIECE_AVAILABLE