-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttpserver.log
executable file
·6385 lines (6385 loc) · 536 KB
/
httpserver.log
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
127.0.0.1, 2013-01-03 20:14:43, GET, /, HTTP/1.1, 303, 0.000837
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/default/index, HTTP/1.1, 200, 0.794349
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/css/calendar.css, HTTP/1.1, 200, 0.000862
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.001568
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.000408
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/css/web2py.css, HTTP/1.1, 200, 0.000343
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/web2py.js, HTTP/1.1, 200, 0.003083
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.000448
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.000431
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/calendar.js, HTTP/1.1, 200, 0.003106
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.000534
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/jquery.js, HTTP/1.1, 200, 0.000982
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/share.js, HTTP/1.1, 200, 0.000626
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.002210
127.0.0.1, 2013-01-03 20:14:44, GET, /welcome/static/images/favicon.ico, HTTP/1.1, 200, 0.002180
127.0.0.1, 2013-01-03 20:14:45, GET, /welcome/static/images/facebook.png, HTTP/1.1, 200, 0.000570
127.0.0.1, 2013-01-03 20:14:45, GET, /welcome/static/images/twitter.png, HTTP/1.1, 200, 0.002225
127.0.0.1, 2013-01-03 20:14:45, GET, /welcome/static/images/gplus-32.png, HTTP/1.1, 200, 0.002221
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/default/index, HTTP/1.1, 200, 0.077336
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/css/calendar.css, HTTP/1.1, 200, 0.001075
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.000436
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.000569
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.000407
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/css/web2py.css, HTTP/1.1, 200, 0.004647
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.002738
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/jquery.js, HTTP/1.1, 200, 0.000329
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/web2py.js, HTTP/1.1, 200, 0.000844
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.000813
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.000631
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/share.js, HTTP/1.1, 200, 0.000264
127.0.0.1, 2013-01-03 20:14:59, GET, /welcome/static/js/calendar.js, HTTP/1.1, 200, 0.004131
127.0.0.1, 2013-01-03 20:15:00, GET, /welcome/static/images/facebook.png, HTTP/1.1, 200, 0.000742
127.0.0.1, 2013-01-03 20:15:00, GET, /welcome/static/images/gplus-32.png, HTTP/1.1, 200, 0.000602
127.0.0.1, 2013-01-03 20:15:00, GET, /welcome/static/images/twitter.png, HTTP/1.1, 200, 0.001039
127.0.0.1, 2013-01-03 20:15:00, GET, /welcome/static/images/favicon.ico, HTTP/1.1, 200, 0.000366
127.0.0.1, 2013-01-03 20:51:00, GET, /welcome/default/index, HTTP/1.1, 200, 0.031465
127.0.0.1, 2013-01-03 20:51:03, GET, /admin/default/site, HTTP/1.1, 303, 0.099252
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/default/index, HTTP/1.1, 200, 0.065625
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/plugin_multiselect/multi-select.css, HTTP/1.1, 200, 0.001450
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/js/jquery.js, HTTP/1.1, 200, 0.002111
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/js/web2py.js, HTTP/1.1, 200, 0.000931
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/css/styles.css, HTTP/1.1, 200, 0.003602
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/js/calendar.js, HTTP/1.1, 200, 0.001466
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/css/calendar.css, HTTP/1.1, 200, 0.005302
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/plugin_multiselect/jquery.multi-select.js, HTTP/1.1, 200, 0.000501
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/plugin_multiselect/start.js, HTTP/1.1, 200, 0.000728
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/header_shadow.png, HTTP/1.1, 200, 0.001960
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/sidebar_bullet.gif, HTTP/1.1, 200, 0.002230
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/header_bg.png, HTTP/1.1, 200, 0.001385
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/start.png, HTTP/1.1, 200, 0.003984
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/section_bullet.png, HTTP/1.1, 200, 0.005126
127.0.0.1, 2013-01-03 20:51:04, GET, /admin/static/images/menu.png, HTTP/1.1, 200, 0.005134
127.0.0.1, 2013-01-03 20:51:04, GET, /favicon.ico, HTTP/1.1, 400, 0.000622
127.0.0.1, 2013-01-03 20:51:07, POST, /admin/default/index, HTTP/1.1, 303, 0.082584
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/default/site, HTTP/1.1, 200, 0.148578
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/static/images/small_special_button.png, HTTP/1.1, 200, 0.001913
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/static/images/small_button.png, HTTP/1.1, 200, 0.002274
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/static/images/folder_locked.png, HTTP/1.1, 200, 0.001371
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/static/images/folder.png, HTTP/1.1, 200, 0.000807
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/static/images/sidebar_background.jpg, HTTP/1.1, 200, 0.002104
127.0.0.1, 2013-01-03 20:51:07, GET, /favicon.ico, HTTP/1.1, 400, 0.000381
127.0.0.1, 2013-01-03 20:51:07, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.482676
127.0.0.1, 2013-01-03 20:51:08, POST, /admin/default/check_version, HTTP/1.1, 200, 0.702746
127.0.0.1, 2013-01-03 20:54:09, POST, /admin/default/site, HTTP/1.1, 303, 0.351919
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/default/design/home, HTTP/1.1, 200, 0.269188
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/static/images/search.png, HTTP/1.1, 200, 0.000567
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/static/images/delete_icon.png, HTTP/1.1, 200, 0.000462
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/static/images/test_icon.png, HTTP/1.1, 200, 0.000487
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/static/images/folder_sm.png, HTTP/1.1, 200, 0.002987
127.0.0.1, 2013-01-03 20:54:09, GET, /admin/static/images/help.png, HTTP/1.1, 200, 0.008239
127.0.0.1, 2013-01-03 20:54:09, GET, /favicon.ico, HTTP/1.1, 400, 0.000252
127.0.0.1, 2013-01-03 21:01:21, GET, /home/default/index, HTTP/1.1, 200, 0.656643
127.0.0.1, 2013-01-03 21:01:21, GET, /favicon.ico, HTTP/1.1, 400, 0.000301
127.0.0.1, 2013-01-03 21:04:36, GET, /home/default/index, HTTP/1.1, 200, 0.040204
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/css/web2py.css, HTTP/1.1, 200, 0.003233
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.001388
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.001700
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.002221
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/css/calendar.css, HTTP/1.1, 200, 0.004426
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.003195
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/jquery.js, HTTP/1.1, 200, 0.002196
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.001010
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.001252
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/web2py.js, HTTP/1.1, 200, 0.002448
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/calendar.js, HTTP/1.1, 200, 0.000933
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/js/share.js, HTTP/1.1, 200, 0.000499
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/images/twitter.png, HTTP/1.1, 200, 0.001057
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/images/gplus-32.png, HTTP/1.1, 200, 0.000405
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/images/facebook.png, HTTP/1.1, 200, 0.002063
127.0.0.1, 2013-01-03 21:04:37, GET, /home/static/images/favicon.ico, HTTP/1.1, 200, 0.000622
127.0.0.1, 2013-01-03 21:16:32, POST, /admin/default/design/home, HTTP/1.1, 303, 0.054418
127.0.0.1, 2013-01-03 21:16:32, GET, /admin/default/design, HTTP/1.1, 303, 0.042764
127.0.0.1, 2013-01-03 21:16:32, GET, /admin/default/site, HTTP/1.1, 200, 0.066741
127.0.0.1, 2013-01-03 21:16:32, GET, /favicon.ico, HTTP/1.1, 400, 0.000353
127.0.0.1, 2013-01-03 21:16:33, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.488702
127.0.0.1, 2013-01-03 21:20:01, GET, /admin/default/design/home, HTTP/1.1, 200, 0.102425
127.0.0.1, 2013-01-03 21:20:01, GET, /favicon.ico, HTTP/1.1, 400, 0.000631
127.0.0.1, 2013-01-03 21:21:46, POST, /admin/default/design/home, HTTP/1.1, 303, 0.059930
127.0.0.1, 2013-01-03 21:21:46, GET, /admin/default/design/home, HTTP/1.1, 200, 0.093949
127.0.0.1, 2013-01-03 21:21:46, GET, /favicon.ico, HTTP/1.1, 400, 0.000371
127.0.0.1, 2013-01-03 21:23:29, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.054559
127.0.0.1, 2013-01-03 21:23:29, GET, /favicon.ico, HTTP/1.1, 400, 0.000372
127.0.0.1, 2013-01-03 21:25:16, GET, /home/default/index, HTTP/1.1, 200, 0.024098
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000540
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/superfish.js, HTTP/1.1, 200, 0.000505
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000596
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/layouts/Emporium/images/img03.jpg, HTTP/1.1, 200, 0.003120
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/layouts/Emporium/images/img02.jpg, HTTP/1.1, 200, 0.002503
127.0.0.1, 2013-01-03 21:25:16, GET, /home/static/plugin_layouts/layouts/Emporium/images/img01.jpg, HTTP/1.1, 200, 0.006394
127.0.0.1, 2013-01-03 21:25:16, GET, /favicon.ico, HTTP/1.1, 400, 0.000433
127.0.0.1, 2013-01-03 21:25:29, GET, /home/default/index, HTTP/1.1, 200, 0.020217
127.0.0.1, 2013-01-03 21:25:30, GET, /home/default/index, HTTP/1.1, 200, 0.018330
127.0.0.1, 2013-01-03 21:25:34, GET, /admin/default/site, HTTP/1.1, 200, 0.049787
127.0.0.1, 2013-01-03 21:25:34, GET, /favicon.ico, HTTP/1.1, 400, 0.000247
127.0.0.1, 2013-01-03 21:25:35, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.475083
127.0.0.1, 2013-01-03 21:25:36, GET, /home/default/index, HTTP/1.1, 200, 0.021782
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.172887
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/codemirror.css, HTTP/1.1, 200, 0.001530
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/theme/web2py.css, HTTP/1.1, 200, 0.001006
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/clike/clike.js, HTTP/1.1, 200, 0.001221
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/python/python.js, HTTP/1.1, 200, 0.001034
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/util/dialog.css, HTTP/1.1, 200, 0.001459
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/codemirror.js, HTTP/1.1, 200, 0.000776
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/xml/xml.js, HTTP/1.1, 200, 0.001466
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/htmlmixed/htmlmixed.js, HTTP/1.1, 200, 0.001825
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/javascript/javascript.js, HTTP/1.1, 200, 0.001275
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/mode/css/css.js, HTTP/1.1, 200, 0.000810
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/util/search.js, HTTP/1.1, 200, 0.000837
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/util/searchcursor.js, HTTP/1.1, 200, 0.000964
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/lib/util/dialog.js, HTTP/1.1, 200, 0.001522
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/images/save_icon.png, HTTP/1.1, 200, 0.001016
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/codemirror/emmet.min.js, HTTP/1.1, 200, 0.000639
127.0.0.1, 2013-01-03 21:26:39, GET, /admin/static/js/ajax_editor.js, HTTP/1.1, 200, 0.001605
127.0.0.1, 2013-01-03 21:26:39, GET, /favicon.ico, HTTP/1.1, 400, 0.000262
127.0.0.1, 2013-01-03 21:27:38, GET, /favicon.ico, HTTP/1.1, 400, 0.000503
127.0.0.1, 2013-01-03 21:29:10, POST, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.035876
127.0.0.1, 2013-01-03 21:29:14, GET, /home/default/index, HTTP/1.1, 200, 0.025406
127.0.0.1, 2013-01-03 21:29:15, GET, /favicon.ico, HTTP/1.1, 400, 0.000285
127.0.0.1, 2013-01-03 21:30:42, POST, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.032029
127.0.0.1, 2013-01-03 21:30:46, GET, /home/default/index, HTTP/1.1, 200, 0.027654
127.0.0.1, 2013-01-03 21:30:46, GET, /favicon.ico, HTTP/1.1, 400, 0.000631
127.0.0.1, 2013-01-03 21:31:10, GET, /home/default/index, HTTP/1.1, 200, 0.020409
127.0.0.1, 2013-01-03 21:31:10, GET, /favicon.ico, HTTP/1.1, 400, 0.000383
127.0.0.1, 2013-01-03 21:31:13, GET, /home/default/index, HTTP/1.1, 200, 0.017907
127.0.0.1, 2013-01-03 21:31:13, GET, /favicon.ico, HTTP/1.1, 400, 0.000468
127.0.0.1, 2013-01-03 21:31:24, GET, /home/default/index, HTTP/1.1, 200, 0.030473
127.0.0.1, 2013-01-03 21:31:24, GET, /favicon.ico, HTTP/1.1, 400, 0.000299
127.0.0.1, 2013-01-03 21:31:53, GET, /home/default/index, HTTP/1.1, 200, 0.022643
127.0.0.1, 2013-01-03 21:31:53, GET, /favicon.ico, HTTP/1.1, 400, 0.000257
127.0.0.1, 2013-01-03 21:39:39, GET, /home/default/index, HTTP/1.1, 500, 0.513566
127.0.0.1, 2013-01-03 21:39:39, GET, /favicon.ico, HTTP/1.1, 400, 0.000366
127.0.0.1, 2013-01-03 21:39:45, GET, /admin/default/ticket/home/127.0.0.1.2013-01-03.21-39-39.a2ba5f4a-ed47-4dd3-afa0-c01c5e196800, HTTP/1.1, 200, 0.096478
127.0.0.1, 2013-01-03 21:39:45, GET, /admin/static/images/ticket_section.png, HTTP/1.1, 200, 0.000494
127.0.0.1, 2013-01-03 21:39:45, GET, /favicon.ico, HTTP/1.1, 400, 0.000271
127.0.0.1, 2013-01-03 21:40:24, GET, /home/default/index, HTTP/1.1, 200, 0.089039
127.0.0.1, 2013-01-03 21:40:29, POST, /home/default/index, HTTP/1.1, 200, 0.046811
127.0.0.1, 2013-01-03 21:40:30, GET, /favicon.ico, HTTP/1.1, 400, 0.000306
127.0.0.1, 2013-01-03 21:40:33, GET, /home/default/index, HTTP/1.1, 200, 0.037136
127.0.0.1, 2013-01-03 21:40:46, POST, /home/default/index, HTTP/1.1, 200, 0.220293
127.0.0.1, 2013-01-03 21:40:46, GET, /favicon.ico, HTTP/1.1, 400, 0.000381
127.0.0.1, 2013-01-03 21:41:28, GET, /home/default/index, HTTP/1.1, 200, 0.026573
127.0.0.1, 2013-01-03 21:42:17, GET, /home/default/index/all_records, HTTP/1.1, 200, 0.030358
127.0.0.1, 2013-01-03 21:42:17, GET, /favicon.ico, HTTP/1.1, 400, 0.000803
127.0.0.1, 2013-01-03 21:42:23, GET, /home/default/index/all_records, HTTP/1.1, 200, 0.026909
127.0.0.1, 2013-01-03 21:42:23, GET, /favicon.ico, HTTP/1.1, 400, 0.000560
127.0.0.1, 2013-01-03 21:42:29, GET, /home/default/index/all_records, HTTP/1.1, 200, 0.028547
127.0.0.1, 2013-01-03 21:42:29, GET, /favicon.ico, HTTP/1.1, 400, 0.000370
127.0.0.1, 2013-01-03 21:42:35, GET, /home/default/index/, HTTP/1.1, 200, 0.028223
127.0.0.1, 2013-01-03 21:42:35, GET, /favicon.ico, HTTP/1.1, 400, 0.000320
127.0.0.1, 2013-01-03 21:42:45, GET, /home/default/all_records, HTTP/1.1, 200, 0.251734
127.0.0.1, 2013-01-03 21:42:45, GET, /favicon.ico, HTTP/1.1, 400, 0.000396
127.0.0.1, 2013-01-03 21:43:02, GET, /home/default/index/, HTTP/1.1, 200, 0.034163
127.0.0.1, 2013-01-03 21:43:02, GET, /favicon.ico, HTTP/1.1, 400, 0.000420
127.0.0.1, 2013-01-03 21:45:38, GET, /admin/default/site, HTTP/1.1, 200, 0.052291
127.0.0.1, 2013-01-03 21:45:38, GET, /favicon.ico, HTTP/1.1, 400, 0.005008
127.0.0.1, 2013-01-03 21:45:39, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.507536
127.0.0.1, 2013-01-03 21:50:52, GET, /admin/default/design/home, HTTP/1.1, 200, 0.101910
127.0.0.1, 2013-01-03 21:50:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000503
127.0.0.1, 2013-01-03 21:51:18, GET, /admin/default/edit/home/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.069854
127.0.0.1, 2013-01-03 21:51:18, GET, /favicon.ico, HTTP/1.1, 400, 0.000291
127.0.0.1, 2013-01-03 21:51:46, POST, /admin/default/edit/home/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.037905
127.0.0.1, 2013-01-03 21:51:52, GET, /home/default/index/, HTTP/1.1, 200, 0.026326
127.0.0.1, 2013-01-03 21:51:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000389
127.0.0.1, 2013-01-03 21:51:55, GET, /home/default/index/, HTTP/1.1, 200, 0.021005
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.004369
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.004218
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.005868
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/plugin_layouts/superfish.js, HTTP/1.1, 304, 0.001569
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.001544
127.0.0.1, 2013-01-03 21:51:55, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.006054
127.0.0.1, 2013-01-03 21:51:55, GET, /favicon.ico, HTTP/1.1, 400, 0.000313
127.0.0.1, 2013-01-03 21:52:07, GET, /home/default/index/, HTTP/1.1, 200, 0.026692
127.0.0.1, 2013-01-03 21:52:07, GET, /favicon.ico, HTTP/1.1, 400, 0.000325
127.0.0.1, 2013-01-03 21:52:30, GET, /admin/default/design/home, HTTP/1.1, 200, 0.107800
127.0.0.1, 2013-01-03 21:52:31, GET, /favicon.ico, HTTP/1.1, 400, 0.000503
127.0.0.1, 2013-01-03 21:53:19, GET, /home/default/index/, HTTP/1.1, 200, 0.030199
127.0.0.1, 2013-01-03 21:53:19, GET, /favicon.ico, HTTP/1.1, 400, 0.000372
127.0.0.1, 2013-01-03 21:53:48, GET, /home/default/index/, HTTP/1.1, 200, 0.029906
127.0.0.1, 2013-01-03 21:53:48, GET, /favicon.ico, HTTP/1.1, 400, 0.000374
127.0.0.1, 2013-01-03 21:54:36, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.058945
127.0.0.1, 2013-01-03 21:54:36, GET, /favicon.ico, HTTP/1.1, 400, 0.000272
127.0.0.1, 2013-01-03 21:54:41, GET, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.072791
127.0.0.1, 2013-01-03 21:54:42, GET, /favicon.ico, HTTP/1.1, 400, 0.000261
127.0.0.1, 2013-01-03 21:54:51, POST, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.032800
127.0.0.1, 2013-01-03 21:54:54, GET, /home/default/index/, HTTP/1.1, 200, 0.027561
127.0.0.1, 2013-01-03 21:54:54, GET, /favicon.ico, HTTP/1.1, 400, 0.000370
127.0.0.1, 2013-01-03 21:57:09, GET, /home/default/index/, HTTP/1.1, 200, 0.027604
127.0.0.1, 2013-01-03 21:57:09, GET, /favicon.ico, HTTP/1.1, 400, 0.000311
127.0.0.1, 2013-01-03 21:58:03, GET, /home/default/index/, HTTP/1.1, 200, 0.027132
127.0.0.1, 2013-01-03 21:58:03, GET, /favicon.ico, HTTP/1.1, 400, 0.000355
127.0.0.1, 2013-01-03 21:59:17, GET, /home/default/index/, HTTP/1.1, 200, 0.030769
127.0.0.1, 2013-01-03 21:59:17, GET, /favicon.ico, HTTP/1.1, 400, 0.000322
127.0.0.1, 2013-01-03 22:01:43, GET, /home/default/index/, HTTP/1.1, 200, 0.028267
127.0.0.1, 2013-01-03 22:01:44, GET, /favicon.ico, HTTP/1.1, 400, 0.000366
127.0.0.1, 2013-01-03 22:03:00, GET, /home/default/index/, HTTP/1.1, 200, 0.034884
127.0.0.1, 2013-01-03 22:03:00, GET, /favicon.ico, HTTP/1.1, 400, 0.000294
127.0.0.1, 2013-01-03 22:04:07, GET, /home/default/index/, HTTP/1.1, 200, 0.031134
127.0.0.1, 2013-01-03 22:04:07, GET, /favicon.ico, HTTP/1.1, 400, 0.000314
127.0.0.1, 2013-01-03 22:09:20, GET, /home/default/index/, HTTP/1.1, 200, 0.028691
127.0.0.1, 2013-01-03 22:09:20, GET, /favicon.ico, HTTP/1.1, 400, 0.000374
127.0.0.1, 2013-01-03 22:10:49, GET, /home/default/index/, HTTP/1.1, 200, 0.029666
127.0.0.1, 2013-01-03 22:10:49, GET, /favicon.ico, HTTP/1.1, 400, 0.000293
127.0.0.1, 2013-01-03 22:11:05, GET, /home/default/index/, HTTP/1.1, 200, 0.032106
127.0.0.1, 2013-01-03 22:11:05, GET, /favicon.ico, HTTP/1.1, 400, 0.000377
127.0.0.1, 2013-01-03 22:12:27, GET, /home/default/index/, HTTP/1.1, 200, 0.030031
127.0.0.1, 2013-01-03 22:12:27, GET, /favicon.ico, HTTP/1.1, 400, 0.000367
127.0.0.1, 2013-01-03 22:15:00, GET, /admin/default/site, HTTP/1.1, 200, 0.051910
127.0.0.1, 2013-01-03 22:15:01, GET, /favicon.ico, HTTP/1.1, 400, 0.000250
127.0.0.1, 2013-01-03 22:15:01, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.491601
127.0.0.1, 2013-01-03 22:15:03, GET, /admin/default/design/home, HTTP/1.1, 200, 0.114855
127.0.0.1, 2013-01-03 22:15:04, GET, /favicon.ico, HTTP/1.1, 400, 0.000359
127.0.0.1, 2013-01-03 22:15:42, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.055620
127.0.0.1, 2013-01-03 22:15:42, GET, /favicon.ico, HTTP/1.1, 400, 0.000269
127.0.0.1, 2013-01-03 22:15:48, GET, /admin/default/edit/home/static/plugin_layouts/superfish.css, HTTP/1.1, 200, 0.046157
127.0.0.1, 2013-01-03 22:15:49, GET, /favicon.ico, HTTP/1.1, 400, 0.000262
127.0.0.1, 2013-01-03 22:15:57, GET, /admin/default/design/home, HTTP/1.1, 200, 0.097904
127.0.0.1, 2013-01-03 22:15:57, GET, /favicon.ico, HTTP/1.1, 400, 0.000279
127.0.0.1, 2013-01-03 22:16:39, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.058346
127.0.0.1, 2013-01-03 22:16:39, GET, /favicon.ico, HTTP/1.1, 400, 0.000258
127.0.0.1, 2013-01-03 22:16:51, GET, /admin/default/edit/home/static/plugin_layouts/superfish.css, HTTP/1.1, 200, 0.047891
127.0.0.1, 2013-01-03 22:16:51, GET, /favicon.ico, HTTP/1.1, 400, 0.000262
127.0.0.1, 2013-01-03 22:18:01, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.066331
127.0.0.1, 2013-01-03 22:18:01, GET, /favicon.ico, HTTP/1.1, 400, 0.000368
127.0.0.1, 2013-01-03 22:18:22, GET, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.049755
127.0.0.1, 2013-01-03 22:18:22, GET, /favicon.ico, HTTP/1.1, 400, 0.000328
127.0.0.1, 2013-01-03 22:19:06, GET, /admin/default/design/home, HTTP/1.1, 200, 0.095881
127.0.0.1, 2013-01-03 22:19:06, GET, /favicon.ico, HTTP/1.1, 400, 0.000255
127.0.0.1, 2013-01-03 22:20:53, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.045265
127.0.0.1, 2013-01-03 22:20:53, GET, /favicon.ico, HTTP/1.1, 400, 0.000359
127.0.0.1, 2013-01-03 22:21:14, GET, /favicon.ico, HTTP/1.1, 400, 0.000415
127.0.0.1, 2013-01-03 22:22:00, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.047691
127.0.0.1, 2013-01-03 22:22:00, GET, /favicon.ico, HTTP/1.1, 400, 0.000253
127.0.0.1, 2013-01-03 22:22:08, GET, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.046976
127.0.0.1, 2013-01-03 22:22:08, GET, /favicon.ico, HTTP/1.1, 400, 0.000271
127.0.0.1, 2013-01-03 22:23:44, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.030359
127.0.0.1, 2013-01-03 22:23:52, GET, /home/default/index/, HTTP/1.1, 200, 0.028804
127.0.0.1, 2013-01-03 22:23:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000300
127.0.0.1, 2013-01-03 22:23:56, GET, /home/default/index/, HTTP/1.1, 200, 0.029485
127.0.0.1, 2013-01-03 22:23:56, GET, /favicon.ico, HTTP/1.1, 400, 0.000357
127.0.0.1, 2013-01-03 22:24:01, GET, /home/default/index/, HTTP/1.1, 200, 0.026732
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000960
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.002235
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.001561
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.001188
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.002339
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/superfish.js, HTTP/1.1, 304, 0.003425
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.003394
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/layouts/Emporium/images/img01.jpg, HTTP/1.1, 304, 0.000315
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/layouts/Emporium/images/img02.jpg, HTTP/1.1, 304, 0.000832
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/layouts/Emporium/images/img03.jpg, HTTP/1.1, 304, 0.000313
127.0.0.1, 2013-01-03 22:24:01, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000333
127.0.0.1, 2013-01-03 22:24:01, GET, /favicon.ico, HTTP/1.1, 400, 0.000424
127.0.0.1, 2013-01-03 22:25:29, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.036022
127.0.0.1, 2013-01-03 22:25:35, GET, /home/default/index/, HTTP/1.1, 200, 0.030617
127.0.0.1, 2013-01-03 22:25:35, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000820
127.0.0.1, 2013-01-03 22:25:35, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000645
127.0.0.1, 2013-01-03 22:25:35, GET, /favicon.ico, HTTP/1.1, 400, 0.000368
127.0.0.1, 2013-01-03 22:27:34, GET, /home/default/index/, HTTP/1.1, 200, 0.028192
127.0.0.1, 2013-01-03 22:27:34, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000372
127.0.0.1, 2013-01-03 22:27:34, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001254
127.0.0.1, 2013-01-03 22:27:34, GET, /favicon.ico, HTTP/1.1, 400, 0.000362
127.0.0.1, 2013-01-03 22:31:05, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.031846
127.0.0.1, 2013-01-03 22:31:17, GET, /home/default/index/, HTTP/1.1, 200, 0.030433
127.0.0.1, 2013-01-03 22:31:17, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000536
127.0.0.1, 2013-01-03 22:31:17, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.001137
127.0.0.1, 2013-01-03 22:31:17, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000306
127.0.0.1, 2013-01-03 22:31:17, GET, /favicon.ico, HTTP/1.1, 400, 0.000275
127.0.0.1, 2013-01-03 22:32:33, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.037863
127.0.0.1, 2013-01-03 22:32:36, GET, /home/default/index/, HTTP/1.1, 200, 0.030291
127.0.0.1, 2013-01-03 22:32:36, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.001143
127.0.0.1, 2013-01-03 22:32:36, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000750
127.0.0.1, 2013-01-03 22:32:36, GET, /favicon.ico, HTTP/1.1, 400, 0.000397
127.0.0.1, 2013-01-03 22:33:17, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.039827
127.0.0.1, 2013-01-03 22:33:19, GET, /home/default/index/, HTTP/1.1, 200, 0.031298
127.0.0.1, 2013-01-03 22:33:19, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000555
127.0.0.1, 2013-01-03 22:33:19, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000345
127.0.0.1, 2013-01-03 22:33:19, GET, /favicon.ico, HTTP/1.1, 400, 0.000265
127.0.0.1, 2013-01-03 22:33:51, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.033137
127.0.0.1, 2013-01-03 22:33:56, GET, /home/default/index/, HTTP/1.1, 200, 0.037145
127.0.0.1, 2013-01-03 22:33:56, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000563
127.0.0.1, 2013-01-03 22:33:56, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000320
127.0.0.1, 2013-01-03 22:33:56, GET, /favicon.ico, HTTP/1.1, 400, 0.000385
127.0.0.1, 2013-01-03 22:33:59, GET, /home/default/index/, HTTP/1.1, 200, 0.028682
127.0.0.1, 2013-01-03 22:33:59, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.001104
127.0.0.1, 2013-01-03 22:33:59, GET, /favicon.ico, HTTP/1.1, 400, 0.000375
127.0.0.1, 2013-01-03 22:36:01, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.036582
127.0.0.1, 2013-01-03 22:36:04, GET, /home/default/index/, HTTP/1.1, 200, 0.029403
127.0.0.1, 2013-01-03 22:36:04, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000770
127.0.0.1, 2013-01-03 22:36:04, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000429
127.0.0.1, 2013-01-03 22:36:04, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000485
127.0.0.1, 2013-01-03 22:36:04, GET, /favicon.ico, HTTP/1.1, 400, 0.000360
127.0.0.1, 2013-01-03 22:36:55, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.048523
127.0.0.1, 2013-01-03 22:36:57, GET, /home/default/index/, HTTP/1.1, 200, 0.025782
127.0.0.1, 2013-01-03 22:36:57, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000975
127.0.0.1, 2013-01-03 22:36:57, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000430
127.0.0.1, 2013-01-03 22:36:57, GET, /favicon.ico, HTTP/1.1, 400, 0.000508
127.0.0.1, 2013-01-03 22:37:43, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.037146
127.0.0.1, 2013-01-03 22:38:16, GET, /home/default/index/, HTTP/1.1, 200, 0.028996
127.0.0.1, 2013-01-03 22:38:16, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000818
127.0.0.1, 2013-01-03 22:38:16, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000321
127.0.0.1, 2013-01-03 22:38:16, GET, /favicon.ico, HTTP/1.1, 400, 0.000504
127.0.0.1, 2013-01-03 22:39:45, POST, /admin/default/edit/home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.030071
127.0.0.1, 2013-01-03 22:39:53, GET, /home/default/index/, HTTP/1.1, 200, 0.031996
127.0.0.1, 2013-01-03 22:39:53, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000547
127.0.0.1, 2013-01-03 22:39:53, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000407
127.0.0.1, 2013-01-03 22:39:53, GET, /favicon.ico, HTTP/1.1, 400, 0.000248
127.0.0.1, 2013-01-03 22:40:56, GET, /home/default/index/, HTTP/1.1, 200, 0.036304
127.0.0.1, 2013-01-03 22:40:56, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001261
127.0.0.1, 2013-01-03 22:40:56, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.001277
127.0.0.1, 2013-01-03 22:40:56, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000867
127.0.0.1, 2013-01-03 22:40:56, GET, /favicon.ico, HTTP/1.1, 400, 0.000261
127.0.0.1, 2013-01-03 22:41:30, GET, /home/default/index/, HTTP/1.1, 200, 0.031594
127.0.0.1, 2013-01-03 22:41:30, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000549
127.0.0.1, 2013-01-03 22:41:30, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000313
127.0.0.1, 2013-01-03 22:41:30, GET, /favicon.ico, HTTP/1.1, 400, 0.000557
127.0.0.1, 2013-01-03 22:47:33, GET, /home/default/index/, HTTP/1.1, 200, 0.032990
127.0.0.1, 2013-01-03 22:47:34, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000393
127.0.0.1, 2013-01-03 22:47:34, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000400
127.0.0.1, 2013-01-03 22:47:34, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000392
127.0.0.1, 2013-01-03 22:47:34, GET, /favicon.ico, HTTP/1.1, 400, 0.000254
127.0.0.1, 2013-01-03 22:47:54, GET, /home/default/index/, HTTP/1.1, 200, 0.031286
127.0.0.1, 2013-01-03 22:47:54, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000608
127.0.0.1, 2013-01-03 22:47:54, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000401
127.0.0.1, 2013-01-03 22:47:54, GET, /favicon.ico, HTTP/1.1, 400, 0.000362
127.0.0.1, 2013-01-03 22:48:10, GET, /home/default/index/, HTTP/1.1, 200, 0.027053
127.0.0.1, 2013-01-03 22:48:10, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000358
127.0.0.1, 2013-01-03 22:48:10, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000300
127.0.0.1, 2013-01-03 22:48:10, GET, /favicon.ico, HTTP/1.1, 400, 0.000245
127.0.0.1, 2013-01-03 22:48:35, GET, /home/default/index/, HTTP/1.1, 200, 0.034582
127.0.0.1, 2013-01-03 22:48:35, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.001088
127.0.0.1, 2013-01-03 22:48:35, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000453
127.0.0.1, 2013-01-03 22:48:35, GET, /favicon.ico, HTTP/1.1, 400, 0.000306
127.0.0.1, 2013-01-03 23:01:57, GET, /home/default/index/, HTTP/1.1, 200, 0.025610
127.0.0.1, 2013-01-03 23:01:57, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 200, 0.000466
127.0.0.1, 2013-01-03 23:01:57, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001602
127.0.0.1, 2013-01-03 23:01:58, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.000286
127.0.0.1, 2013-01-03 23:01:58, GET, /favicon.ico, HTTP/1.1, 400, 0.000291
127.0.0.1, 2013-01-03 23:27:41, GET, /home/default/index/, HTTP/1.1, 200, 0.026774
127.0.0.1, 2013-01-03 23:27:41, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000896
127.0.0.1, 2013-01-03 23:27:41, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000764
127.0.0.1, 2013-01-03 23:27:42, GET, /home/static/img/glyphicons-halflings.png, HTTP/1.1, 404, 0.000402
127.0.0.1, 2013-01-03 23:27:42, GET, /favicon.ico, HTTP/1.1, 400, 0.000252
127.0.0.1, 2013-01-03 23:28:12, GET, /home/default/index/, HTTP/1.1, 200, 0.033749
127.0.0.1, 2013-01-03 23:28:12, GET, /home/static/img/glyphicons-halflings.png, HTTP/1.1, 404, 0.000396
127.0.0.1, 2013-01-03 23:28:12, GET, /favicon.ico, HTTP/1.1, 400, 0.000326
127.0.0.1, 2013-01-03 23:28:52, GET, /home/default/index/, HTTP/1.1, 200, 0.039429
127.0.0.1, 2013-01-03 23:28:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000350
127.0.0.1, 2013-01-03 23:29:12, GET, /favicon.ico, HTTP/1.1, 400, 0.000510
127.0.0.1, 2013-01-03 23:29:17, GET, /favicon.ico, HTTP/1.1, 400, 0.000385
127.0.0.1, 2013-01-03 23:29:20, GET, /favicon.ico, HTTP/1.1, 400, 0.000503
127.0.0.1, 2013-01-03 23:29:24, GET, /favicon.ico, HTTP/1.1, 400, 0.000513
127.0.0.1, 2013-01-03 23:30:16, GET, /admin/default/design/home, HTTP/1.1, 200, 0.102664
127.0.0.1, 2013-01-03 23:30:16, GET, /favicon.ico, HTTP/1.1, 400, 0.000254
127.0.0.1, 2013-01-03 23:30:55, GET, /admin/default/edit/home/models/menu.py, HTTP/1.1, 200, 0.077312
127.0.0.1, 2013-01-03 23:30:56, GET, /favicon.ico, HTTP/1.1, 400, 0.000295
127.0.0.1, 2013-01-03 23:31:46, POST, /admin/default/edit/home/models/menu.py, HTTP/1.1, 200, 0.057085
127.0.0.1, 2013-01-03 23:31:52, GET, /home/default/index/, HTTP/1.1, 500, 0.069677
127.0.0.1, 2013-01-03 23:31:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000674
127.0.0.1, 2013-01-03 23:32:10, POST, /admin/debug/toggle_breakpoint, HTTP/1.1, 200, 0.204200
127.0.0.1, 2013-01-03 23:32:13, GET, /admin/default/design/home, HTTP/1.1, 200, 0.109484
127.0.0.1, 2013-01-03 23:32:13, GET, /favicon.ico, HTTP/1.1, 400, 0.000372
127.0.0.1, 2013-01-03 23:32:15, GET, /admin/default/edit/home/models/menu.py, HTTP/1.1, 200, 0.050053
127.0.0.1, 2013-01-03 23:32:15, GET, /favicon.ico, HTTP/1.1, 400, 0.000367
127.0.0.1, 2013-01-03 23:32:38, GET, /admin/default/design/home, HTTP/1.1, 200, 0.103980
127.0.0.1, 2013-01-03 23:32:38, GET, /favicon.ico, HTTP/1.1, 400, 0.000260
127.0.0.1, 2013-01-03 23:32:45, GET, /admin/default/site, HTTP/1.1, 200, 0.050650
127.0.0.1, 2013-01-03 23:32:45, GET, /favicon.ico, HTTP/1.1, 400, 0.000255
127.0.0.1, 2013-01-03 23:32:45, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.460480
127.0.0.1, 2013-01-03 23:32:47, GET, /admin/default/design/welcome, HTTP/1.1, 200, 0.110485
127.0.0.1, 2013-01-03 23:32:47, GET, /favicon.ico, HTTP/1.1, 400, 0.000314
127.0.0.1, 2013-01-03 23:32:49, GET, /admin/default/edit/welcome/models/menu.py, HTTP/1.1, 200, 0.044893
127.0.0.1, 2013-01-03 23:32:49, GET, /favicon.ico, HTTP/1.1, 400, 0.000741
127.0.0.1, 2013-01-03 23:32:55, GET, /admin/default/design/welcome, HTTP/1.1, 200, 0.107075
127.0.0.1, 2013-01-03 23:32:55, GET, /favicon.ico, HTTP/1.1, 400, 0.000276
127.0.0.1, 2013-01-03 23:32:58, GET, /admin/default/site, HTTP/1.1, 200, 0.053657
127.0.0.1, 2013-01-03 23:32:58, GET, /favicon.ico, HTTP/1.1, 400, 0.000369
127.0.0.1, 2013-01-03 23:32:59, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.467372
127.0.0.1, 2013-01-03 23:33:01, GET, /admin/default/design/home, HTTP/1.1, 200, 0.106827
127.0.0.1, 2013-01-03 23:33:01, GET, /favicon.ico, HTTP/1.1, 400, 0.000282
127.0.0.1, 2013-01-03 23:33:03, GET, /admin/default/edit/home/models/menu.py, HTTP/1.1, 200, 0.049141
127.0.0.1, 2013-01-03 23:33:03, GET, /favicon.ico, HTTP/1.1, 400, 0.000845
127.0.0.1, 2013-01-03 23:33:12, POST, /admin/default/edit/home/models/menu.py, HTTP/1.1, 200, 0.032277
127.0.0.1, 2013-01-03 23:33:15, GET, /home/default/index/, HTTP/1.1, 200, 0.402813
127.0.0.1, 2013-01-03 23:33:15, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.002194
127.0.0.1, 2013-01-03 23:33:15, GET, /favicon.ico, HTTP/1.1, 400, 0.001412
127.0.0.1, 2013-01-03 23:38:45, GET, /home/default/index/, HTTP/1.1, 200, 0.562794
127.0.0.1, 2013-01-03 23:38:45, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000591
127.0.0.1, 2013-01-03 23:38:45, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001322
127.0.0.1, 2013-01-03 23:38:45, GET, /home/static/img/glyphicons-halflings-white.png, HTTP/1.1, 404, 0.002350
127.0.0.1, 2013-01-03 23:38:45, GET, /favicon.ico, HTTP/1.1, 400, 0.000919
127.0.0.1, 2013-01-03 23:38:52, GET, /favicon.ico, HTTP/1.1, 400, 0.000296
127.0.0.1, 2013-01-03 23:38:56, GET, /favicon.ico, HTTP/1.1, 400, 0.000302
127.0.0.1, 2013-01-03 23:38:59, GET, /favicon.ico, HTTP/1.1, 400, 0.000358
127.0.0.1, 2013-01-03 23:39:58, GET, /home/default/index/, HTTP/1.1, 200, 0.411794
127.0.0.1, 2013-01-03 23:39:58, GET, /home/static/img/glyphicons-halflings-white.png, HTTP/1.1, 404, 0.002518
127.0.0.1, 2013-01-03 23:39:58, GET, /favicon.ico, HTTP/1.1, 400, 0.001229
127.0.0.1, 2013-01-03 23:40:17, GET, /favicon.ico, HTTP/1.1, 400, 0.000889
127.0.0.1, 2013-01-03 23:41:08, GET, /home/default/index/, HTTP/1.1, 200, 0.393573
127.0.0.1, 2013-01-03 23:41:09, GET, /favicon.ico, HTTP/1.1, 400, 0.000710
127.0.0.1, 2013-01-03 23:41:17, GET, /home/default/index/, HTTP/1.1, 200, 0.398608
127.0.0.1, 2013-01-03 23:41:17, GET, /favicon.ico, HTTP/1.1, 400, 0.001180
127.0.0.1, 2013-01-03 23:42:48, GET, /home/default/index/, HTTP/1.1, 200, 0.474515
127.0.0.1, 2013-01-03 23:42:48, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000855
127.0.0.1, 2013-01-03 23:42:48, GET, /favicon.ico, HTTP/1.1, 400, 0.000926
127.0.0.1, 2013-01-03 23:44:20, GET, /home/default/index/, HTTP/1.1, 200, 0.396217
127.0.0.1, 2013-01-03 23:44:20, GET, /favicon.ico, HTTP/1.1, 400, 0.000876
127.0.0.1, 2013-01-03 23:44:28, GET, /home/default/index/, HTTP/1.1, 200, 0.407608
127.0.0.1, 2013-01-03 23:44:28, GET, /favicon.ico, HTTP/1.1, 400, 0.000730
127.0.0.1, 2013-01-03 23:45:26, GET, /home/default/index/, HTTP/1.1, 200, 0.094373
127.0.0.1, 2013-01-03 23:45:27, GET, /favicon.ico, HTTP/1.1, 400, 0.001070
127.0.0.1, 2013-01-03 23:49:57, GET, /home/default/index/, HTTP/1.1, 200, 0.100597
127.0.0.1, 2013-01-03 23:49:57, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001969
127.0.0.1, 2013-01-03 23:49:57, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000864
127.0.0.1, 2013-01-03 23:49:57, GET, /favicon.ico, HTTP/1.1, 400, 0.000618
127.0.0.1, 2013-01-03 23:51:44, GET, /home/default/index/, HTTP/1.1, 200, 0.091007
127.0.0.1, 2013-01-03 23:51:44, GET, /favicon.ico, HTTP/1.1, 400, 0.001044
127.0.0.1, 2013-01-03 23:52:48, GET, /home/default/index/, HTTP/1.1, 200, 0.101048
127.0.0.1, 2013-01-03 23:52:48, GET, /favicon.ico, HTTP/1.1, 400, 0.001143
127.0.0.1, 2013-01-03 23:53:28, GET, /home/default/index/, HTTP/1.1, 200, 0.100009
127.0.0.1, 2013-01-03 23:53:28, GET, /favicon.ico, HTTP/1.1, 400, 0.000803
127.0.0.1, 2013-01-03 23:53:58, GET, /home/default/index/, HTTP/1.1, 200, 0.389214
127.0.0.1, 2013-01-03 23:53:58, GET, /favicon.ico, HTTP/1.1, 400, 0.001209
127.0.0.1, 2013-01-03 23:54:18, GET, /home/default/index/, HTTP/1.1, 200, 0.096127
127.0.0.1, 2013-01-03 23:54:18, GET, /favicon.ico, HTTP/1.1, 400, 0.000703
127.0.0.1, 2013-01-03 23:56:10, GET, /home/default/index/, HTTP/1.1, 200, 0.096054
127.0.0.1, 2013-01-03 23:56:10, GET, /favicon.ico, HTTP/1.1, 400, 0.000848
127.0.0.1, 2013-01-03 23:56:50, GET, /home/default/index/, HTTP/1.1, 200, 0.106806
127.0.0.1, 2013-01-03 23:56:50, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.001818
127.0.0.1, 2013-01-03 23:56:51, GET, /favicon.ico, HTTP/1.1, 400, 0.001033
127.0.0.1, 2013-01-04 18:59:31, GET, /, HTTP/1.1, 303, 0.000830
127.0.0.1, 2013-01-04 18:59:31, GET, /welcome/default/index, HTTP/1.1, 200, 0.418752
127.0.0.1, 2013-01-04 18:59:31, GET, /welcome/static/js/share.js, HTTP/1.1, 304, 0.108636
127.0.0.1, 2013-01-04 18:59:39, GET, /app1/default/home, HTTP/1.1, 404, 0.000642
127.0.0.1, 2013-01-04 18:59:39, GET, /favicon.ico, HTTP/1.1, 400, 0.000515
127.0.0.1, 2013-01-04 18:59:43, GET, /app1/, HTTP/1.1, 404, 0.001085
127.0.0.1, 2013-01-04 18:59:43, GET, /favicon.ico, HTTP/1.1, 400, 0.000378
127.0.0.1, 2013-01-04 18:59:47, GET, /app1/home, HTTP/1.1, 404, 0.001945
127.0.0.1, 2013-01-04 18:59:47, GET, /favicon.ico, HTTP/1.1, 400, 0.000322
127.0.0.1, 2013-01-04 18:59:54, GET, /, HTTP/1.1, 303, 0.000568
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/default/index, HTTP/1.1, 200, 0.027423
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.000468
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.011884
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/css/web2py.css, HTTP/1.1, 200, 0.014336
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/css/calendar.css, HTTP/1.1, 200, 0.015205
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.013610
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.013263
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/jquery.js, HTTP/1.1, 200, 0.000306
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/calendar.js, HTTP/1.1, 200, 0.003759
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/share.js, HTTP/1.1, 200, 0.002294
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.000939
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/web2py.js, HTTP/1.1, 200, 0.003532
127.0.0.1, 2013-01-04 18:59:54, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.002012
127.0.0.1, 2013-01-04 18:59:55, GET, /welcome/static/images/gplus-32.png, HTTP/1.1, 200, 0.102408
127.0.0.1, 2013-01-04 18:59:55, GET, /welcome/static/images/twitter.png, HTTP/1.1, 200, 0.103954
127.0.0.1, 2013-01-04 18:59:55, GET, /welcome/static/images/facebook.png, HTTP/1.1, 200, 0.103209
127.0.0.1, 2013-01-04 18:59:58, GET, /admin/default/site, HTTP/1.1, 303, 0.243273
127.0.0.1, 2013-01-04 18:59:58, GET, /admin/default/index, HTTP/1.1, 200, 0.096054
127.0.0.1, 2013-01-04 18:59:58, GET, /favicon.ico, HTTP/1.1, 400, 0.000486
127.0.0.1, 2013-01-04 19:00:02, POST, /admin/default/index, HTTP/1.1, 303, 0.092988
127.0.0.1, 2013-01-04 19:00:02, GET, /admin/default/site, HTTP/1.1, 200, 0.061800
127.0.0.1, 2013-01-04 19:00:02, GET, /favicon.ico, HTTP/1.1, 400, 0.000457
127.0.0.1, 2013-01-04 19:00:03, GET, /admin/default/twitter.load, HTTP/1.1, 200, 1.194018
127.0.0.1, 2013-01-04 19:00:03, POST, /admin/default/check_version, HTTP/1.1, 200, 1.730863
127.0.0.1, 2013-01-04 19:00:04, GET, /home/default/index, HTTP/1.1, 200, 0.235942
127.0.0.1, 2013-01-04 19:00:04, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.039470
127.0.0.1, 2013-01-04 19:00:05, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000294
127.0.0.1, 2013-01-04 19:00:05, GET, /home/static/plugin_layouts/layouts/Emporium/images/img07.jpg, HTTP/1.1, 404, 0.025246
127.0.0.1, 2013-01-04 19:00:05, GET, /favicon.ico, HTTP/1.1, 400, 0.000343
127.0.0.1, 2013-01-04 19:00:46, GET, /, HTTP/1.1, 303, 0.000462
127.0.0.1, 2013-01-04 19:00:46, GET, /welcome/default/index, HTTP/1.1, 200, 0.036224
127.0.0.1, 2013-01-04 19:00:49, GET, /admin/default/site, HTTP/1.1, 200, 0.069155
127.0.0.1, 2013-01-04 19:00:50, GET, /favicon.ico, HTTP/1.1, 400, 0.000623
127.0.0.1, 2013-01-04 19:00:50, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.523075
127.0.0.1, 2013-01-04 19:01:05, GET, /admin/default/design/home, HTTP/1.1, 200, 0.186911
127.0.0.1, 2013-01-04 19:01:05, GET, /favicon.ico, HTTP/1.1, 400, 0.000544
127.0.0.1, 2013-01-04 19:01:13, GET, /admin/default/edit/home/views/default/user.html, HTTP/1.1, 200, 0.074309
127.0.0.1, 2013-01-04 19:01:14, GET, /favicon.ico, HTTP/1.1, 400, 0.000254
127.0.0.1, 2013-01-04 19:01:18, GET, /admin/default/design/home, HTTP/1.1, 200, 0.100105
127.0.0.1, 2013-01-04 19:01:19, GET, /favicon.ico, HTTP/1.1, 400, 0.000419
127.0.0.1, 2013-01-04 19:01:21, GET, /admin/default/edit/home/views/default/index.html, HTTP/1.1, 200, 0.049074
127.0.0.1, 2013-01-04 19:01:21, GET, /favicon.ico, HTTP/1.1, 400, 0.000262
127.0.0.1, 2013-01-04 19:01:37, POST, /admin/default/edit/home/views/default/index.html, HTTP/1.1, 200, 0.089274
127.0.0.1, 2013-01-04 19:01:39, GET, /home/default/index, HTTP/1.1, 200, 0.026790
127.0.0.1, 2013-01-04 19:01:47, GET, /admin/default/design/home, HTTP/1.1, 200, 0.099326
127.0.0.1, 2013-01-04 19:01:47, GET, /favicon.ico, HTTP/1.1, 400, 0.000274
127.0.0.1, 2013-01-04 19:01:58, GET, /home/default/index, HTTP/1.1, 200, 0.026729
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000518
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/plugin_layouts/layouts/Emporium/default.css, HTTP/1.1, 304, 0.000458
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000577
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.001565
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/plugin_layouts/superfish.js, HTTP/1.1, 304, 0.000657
127.0.0.1, 2013-01-04 19:01:58, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.001384
127.0.0.1, 2013-01-04 19:01:58, GET, /favicon.ico, HTTP/1.1, 400, 0.000250
127.0.0.1, 2013-01-04 19:02:29, GET, /admin/default/edit/home/views/generic.html, HTTP/1.1, 200, 0.055031
127.0.0.1, 2013-01-04 19:02:29, GET, /favicon.ico, HTTP/1.1, 400, 0.000337
127.0.0.1, 2013-01-04 19:02:31, GET, /admin/default/design/home, HTTP/1.1, 200, 0.113083
127.0.0.1, 2013-01-04 19:02:31, GET, /favicon.ico, HTTP/1.1, 400, 0.000379
127.0.0.1, 2013-01-04 19:02:33, GET, /admin/default/edit/home/views/default/user.html, HTTP/1.1, 200, 0.043441
127.0.0.1, 2013-01-04 19:02:33, GET, /favicon.ico, HTTP/1.1, 400, 0.000365
127.0.0.1, 2013-01-04 19:02:35, GET, /admin/default/design/home, HTTP/1.1, 200, 0.104585
127.0.0.1, 2013-01-04 19:02:35, GET, /favicon.ico, HTTP/1.1, 400, 0.000252
127.0.0.1, 2013-01-04 19:02:37, GET, /admin/default/edit/home/views/appadmin.html, HTTP/1.1, 200, 0.039123
127.0.0.1, 2013-01-04 19:02:37, GET, /favicon.ico, HTTP/1.1, 400, 0.000489
127.0.0.1, 2013-01-04 19:02:40, GET, /admin/default/design/home, HTTP/1.1, 200, 0.098068
127.0.0.1, 2013-01-04 19:02:40, GET, /favicon.ico, HTTP/1.1, 400, 0.000351
127.0.0.1, 2013-01-04 19:02:44, GET, /admin/default/edit/home/views/default/index.html, HTTP/1.1, 200, 0.043570
127.0.0.1, 2013-01-04 19:02:44, GET, /favicon.ico, HTTP/1.1, 400, 0.000259
127.0.0.1, 2013-01-04 19:02:48, GET, /admin/default/design/home, HTTP/1.1, 200, 0.097896
127.0.0.1, 2013-01-04 19:02:48, GET, /favicon.ico, HTTP/1.1, 400, 0.000293
127.0.0.1, 2013-01-04 19:03:47, GET, /home/default/index, HTTP/1.1, 200, 0.031014
127.0.0.1, 2013-01-04 19:03:47, GET, /favicon.ico, HTTP/1.1, 400, 0.000512
127.0.0.1, 2013-01-04 19:03:50, GET, /admin/default/edit/home/views/layout.html, HTTP/1.1, 200, 0.048751
127.0.0.1, 2013-01-04 19:03:51, GET, /favicon.ico, HTTP/1.1, 400, 0.000372
127.0.0.1, 2013-01-04 19:04:15, GET, /admin/default/design/home, HTTP/1.1, 200, 0.107569
127.0.0.1, 2013-01-04 19:04:15, GET, /favicon.ico, HTTP/1.1, 400, 0.000259
127.0.0.1, 2013-01-04 19:04:36, GET, /admin/default/edit/home/views/default/index.html, HTTP/1.1, 200, 0.046931
127.0.0.1, 2013-01-04 19:04:36, GET, /favicon.ico, HTTP/1.1, 400, 0.000254
127.0.0.1, 2013-01-04 19:04:38, GET, /admin/default/site, HTTP/1.1, 200, 0.047449
127.0.0.1, 2013-01-04 19:04:38, GET, /favicon.ico, HTTP/1.1, 400, 0.000416
127.0.0.1, 2013-01-04 19:04:40, GET, /admin/default/twitter.load, HTTP/1.1, 200, 1.426529
127.0.0.1, 2013-01-04 19:04:47, POST, /admin/default/site, HTTP/1.1, 303, 0.278660
127.0.0.1, 2013-01-04 19:04:47, GET, /admin/default/design/teste, HTTP/1.1, 200, 0.116917
127.0.0.1, 2013-01-04 19:04:47, GET, /favicon.ico, HTTP/1.1, 400, 0.000367
127.0.0.1, 2013-01-04 19:04:59, GET, /admin/default/edit/teste/views/layout.html, HTTP/1.1, 200, 0.044442
127.0.0.1, 2013-01-04 19:04:59, GET, /favicon.ico, HTTP/1.1, 400, 0.000757
127.0.0.1, 2013-01-04 19:05:05, GET, /admin/default/design/teste, HTTP/1.1, 200, 0.097378
127.0.0.1, 2013-01-04 19:05:05, GET, /favicon.ico, HTTP/1.1, 400, 0.000259
127.0.0.1, 2013-01-04 19:05:06, GET, /admin/default/site, HTTP/1.1, 200, 0.050051
127.0.0.1, 2013-01-04 19:05:06, GET, /favicon.ico, HTTP/1.1, 400, 0.000365
127.0.0.1, 2013-01-04 19:05:08, GET, /admin/default/design/home, HTTP/1.1, 200, 0.098561
127.0.0.1, 2013-01-04 19:05:08, GET, /favicon.ico, HTTP/1.1, 400, 0.000358
127.0.0.1, 2013-01-04 19:05:13, GET, /admin/default/edit/home/views/layout.html, HTTP/1.1, 200, 0.042396
127.0.0.1, 2013-01-04 19:05:14, GET, /favicon.ico, HTTP/1.1, 400, 0.000360
127.0.0.1, 2013-01-04 19:05:21, POST, /admin/default/edit/home/views/layout.html, HTTP/1.1, 200, 0.046452
127.0.0.1, 2013-01-04 19:05:26, GET, /home/default/index, HTTP/1.1, 200, 0.033784
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.002337
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/css/web2py.css, HTTP/1.1, 200, 0.001485
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.002205
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.001759
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.001499
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.000549
127.0.0.1, 2013-01-04 19:05:26, GET, /home/static/js/share.js, HTTP/1.1, 200, 0.000316
127.0.0.1, 2013-01-04 19:05:27, GET, /home/static/images/twitter.png, HTTP/1.1, 200, 0.001068
127.0.0.1, 2013-01-04 19:05:27, GET, /home/static/images/facebook.png, HTTP/1.1, 200, 0.000533
127.0.0.1, 2013-01-04 19:05:27, GET, /home/static/images/gplus-32.png, HTTP/1.1, 200, 0.000706
127.0.0.1, 2013-01-04 19:05:27, GET, /home/static/images/favicon.ico, HTTP/1.1, 200, 0.000652
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/default/index, HTTP/1.1, 200, 0.752822
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/css/bootstrap-responsive.min.css, HTTP/1.1, 200, 0.002233
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/css/calendar.css, HTTP/1.1, 200, 0.002957
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/modernizr.custom.js, HTTP/1.1, 200, 0.000801
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.000963
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/css/bootstrap.min.css, HTTP/1.1, 200, 0.003729
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/css/web2py.css, HTTP/1.1, 200, 0.003005
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/jquery.js, HTTP/1.1, 200, 0.001095
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/calendar.js, HTTP/1.1, 200, 0.002307
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/web2py.js, HTTP/1.1, 200, 0.001127
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/bootstrap.min.js, HTTP/1.1, 200, 0.000520
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/share.js, HTTP/1.1, 200, 0.000335
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/js/web2py_bootstrap.js, HTTP/1.1, 200, 0.000258
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/images/gplus-32.png, HTTP/1.1, 200, 0.000897
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/images/twitter.png, HTTP/1.1, 200, 0.000856
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/images/facebook.png, HTTP/1.1, 200, 0.001467
127.0.0.1, 2013-01-04 19:06:12, GET, /teste/static/images/favicon.ico, HTTP/1.1, 200, 0.001026
127.0.0.1, 2013-01-04 19:06:39, GET, /home/default/all_records, HTTP/1.1, 200, 0.065709
127.0.0.1, 2013-01-04 19:06:39, GET, /home/static/images/glyphicons-halflings.png, HTTP/1.1, 200, 0.000594
127.0.0.1, 2013-01-04 19:07:36, GET, /home/default/all_records, HTTP/1.1, 200, 0.061250
127.0.0.1, 2013-01-04 19:07:45, GET, /home/default/index, HTTP/1.1, 200, 0.029945
127.0.0.1, 2013-01-04 19:08:34, POST, /home/default/index, HTTP/1.1, 200, 0.028692
127.0.0.1, 2013-01-04 19:08:36, POST, /home/default/index, HTTP/1.1, 200, 0.027133
127.0.0.1, 2013-01-04 19:08:41, POST, /home/default/index, HTTP/1.1, 200, 0.028664
127.0.0.1, 2013-01-04 19:08:56, POST, /home/default/index, HTTP/1.1, 200, 0.029994
127.0.0.1, 2013-01-04 19:08:58, POST, /home/default/index, HTTP/1.1, 200, 0.035178
127.0.0.1, 2013-01-04 19:09:00, POST, /home/default/index, HTTP/1.1, 200, 0.028107
127.0.0.1, 2013-01-04 19:09:01, POST, /home/default/index, HTTP/1.1, 200, 0.029383
127.0.0.1, 2013-01-04 19:09:03, POST, /home/default/index, HTTP/1.1, 200, 0.024135
127.0.0.1, 2013-01-04 19:09:40, POST, /home/default/index, HTTP/1.1, 200, 0.036880
127.0.0.1, 2013-01-04 19:09:52, POST, /home/default/index, HTTP/1.1, 200, 0.024534
127.0.0.1, 2013-01-04 19:09:53, POST, /home/default/index, HTTP/1.1, 200, 0.033547
127.0.0.1, 2013-01-04 19:09:55, POST, /home/default/index, HTTP/1.1, 200, 0.032238
127.0.0.1, 2013-01-04 19:10:09, POST, /home/default/index, HTTP/1.1, 200, 0.213406
127.0.0.1, 2013-01-04 19:10:47, POST, /home/default/index, HTTP/1.1, 200, 0.031740
127.0.0.1, 2013-01-04 19:10:55, POST, /home/default/index, HTTP/1.1, 200, 0.033016
127.0.0.1, 2013-01-04 19:11:42, GET, /home/default/index, HTTP/1.1, 200, 0.022879
127.0.0.1, 2013-01-04 19:11:45, GET, /home/default/index, HTTP/1.1, 200, 0.029300
127.0.0.1, 2013-01-04 19:12:17, GET, /home/default/index, HTTP/1.1, 200, 0.032676
127.0.0.1, 2013-01-04 19:14:43, GET, /home/default/index, HTTP/1.1, 200, 0.036338
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000534
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000755
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.003106
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001992
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.002395
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.000641
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000421
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000410
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000678
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.000728
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.001589
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001793
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000450
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000428
127.0.0.1, 2013-01-04 19:14:43, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000346
127.0.0.1, 2013-01-04 19:15:57, GET, /home/default/index, HTTP/1.1, 200, 0.030561
127.0.0.1, 2013-01-04 19:17:22, GET, /admin/default/design/home, HTTP/1.1, 200, 0.099268
127.0.0.1, 2013-01-04 19:17:22, GET, /favicon.ico, HTTP/1.1, 400, 0.000367
127.0.0.1, 2013-01-04 19:17:33, GET, /admin/default/plugin/home/layouts, HTTP/1.1, 200, 0.062549
127.0.0.1, 2013-01-04 19:17:33, GET, /favicon.ico, HTTP/1.1, 400, 0.000385
127.0.0.1, 2013-01-04 19:17:36, GET, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.047489
127.0.0.1, 2013-01-04 19:17:36, GET, /favicon.ico, HTTP/1.1, 400, 0.000678
127.0.0.1, 2013-01-04 19:18:19, POST, /admin/default/edit/home/views/plugin_layouts/layouts/Emporium.html, HTTP/1.1, 200, 0.043123
127.0.0.1, 2013-01-04 19:18:23, GET, /home/default/index, HTTP/1.1, 200, 0.033119
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000799
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000443
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.000695
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000992
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.003558
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.003330
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001035
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000660
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001297
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.001566
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000648
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001220
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000636
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000416
127.0.0.1, 2013-01-04 19:18:23, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000295
127.0.0.1, 2013-01-04 19:20:38, GET, /home/default/index, HTTP/1.1, 200, 0.028163
127.0.0.1, 2013-01-04 19:21:05, GET, /admin/default/design/home, HTTP/1.1, 200, 0.091333
127.0.0.1, 2013-01-04 19:21:05, GET, /favicon.ico, HTTP/1.1, 400, 0.000447
127.0.0.1, 2013-01-04 19:21:13, GET, /admin/default/edit/home/views/layout.html, HTTP/1.1, 200, 0.045096
127.0.0.1, 2013-01-04 19:21:13, GET, /favicon.ico, HTTP/1.1, 400, 0.000624
127.0.0.1, 2013-01-04 19:21:24, POST, /admin/default/edit/home/views/layout.html, HTTP/1.1, 200, 0.033826
127.0.0.1, 2013-01-04 19:21:27, GET, /home/default/index, HTTP/1.1, 200, 0.032827
127.0.0.1, 2013-01-04 19:23:05, GET, /home/default/index, HTTP/1.1, 200, 0.030117
127.0.0.1, 2013-01-04 19:23:54, GET, /home/default/index, HTTP/1.1, 200, 0.035382
127.0.0.1, 2013-01-04 19:26:12, GET, /home/default/index, HTTP/1.1, 200, 0.031120
127.0.0.1, 2013-01-04 19:27:11, GET, /home/default/index, HTTP/1.1, 200, 0.033601
127.0.0.1, 2013-01-04 19:27:20, GET, /home/default/all_records, HTTP/1.1, 200, 0.064360
127.0.0.1, 2013-01-04 19:27:26, GET, /home/default/index, HTTP/1.1, 200, 0.033213
127.0.0.1, 2013-01-04 19:28:51, GET, /home/static/images/glyphicons-halflings-white.png, HTTP/1.1, 200, 0.001217
127.0.0.1, 2013-01-04 19:28:58, GET, /home/default/user/register, HTTP/1.1, 200, 0.076172
127.0.0.1, 2013-01-04 19:29:06, GET, /home/default/index, HTTP/1.1, 200, 0.048441
127.0.0.1, 2013-01-04 19:29:20, GET, /home/default/user/register, HTTP/1.1, 200, 0.025079
127.0.0.1, 2013-01-04 19:29:26, GET, /home/default/index, HTTP/1.1, 200, 0.035640
127.0.0.1, 2013-01-04 19:32:16, GET, /home/default/index, HTTP/1.1, 200, 0.030339
127.0.0.1, 2013-01-04 19:32:41, GET, /home/default/index, HTTP/1.1, 200, 0.028871
127.0.0.1, 2013-01-04 19:33:56, GET, /home/default/index, HTTP/1.1, 200, 0.028933
127.0.0.1, 2013-01-04 19:34:10, GET, /home/default/index, HTTP/1.1, 200, 0.027429
127.0.0.1, 2013-01-04 19:34:16, GET, /home/default/index, HTTP/1.1, 200, 0.029463
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000299
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.001327
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001866
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000881
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.001473
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000823
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.001208
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000610
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.004193
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001597
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.000499
127.0.0.1, 2013-01-04 19:34:16, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000395
127.0.0.1, 2013-01-04 19:34:17, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000312
127.0.0.1, 2013-01-04 19:34:17, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.001619
127.0.0.1, 2013-01-04 19:34:17, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.001077
127.0.0.1, 2013-01-04 19:34:27, GET, /home/default/index, HTTP/1.1, 200, 0.037269
127.0.0.1, 2013-01-04 19:34:30, GET, /home/default/index, HTTP/1.1, 200, 0.027146
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000595
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000919
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.001091
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.001407
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000641
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.000799
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000879
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001471
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.001137
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.001221
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001648
127.0.0.1, 2013-01-04 19:34:30, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000278
127.0.0.1, 2013-01-04 19:34:31, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000319
127.0.0.1, 2013-01-04 19:34:31, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000770
127.0.0.1, 2013-01-04 19:34:31, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000472
127.0.0.1, 2013-01-04 19:35:56, GET, /home/default/all_records, HTTP/1.1, 200, 0.060359
127.0.0.1, 2013-01-04 19:36:46, GET, /home/default/all_records, HTTP/1.1, 200, 0.062000
127.0.0.1, 2013-01-04 19:36:46, GET, /favicon.ico, HTTP/1.1, 400, 0.000434
127.0.0.1, 2013-01-04 19:38:21, GET, /admin/default/design/home, HTTP/1.1, 200, 0.104124
127.0.0.1, 2013-01-04 19:38:21, GET, /favicon.ico, HTTP/1.1, 400, 0.000323
127.0.0.1, 2013-01-04 19:38:33, GET, /home/default/index, HTTP/1.1, 200, 0.038819
127.0.0.1, 2013-01-04 19:39:44, GET, /home/default/index, HTTP/1.1, 500, 0.133357
127.0.0.1, 2013-01-04 19:39:44, GET, /favicon.ico, HTTP/1.1, 400, 0.000284
127.0.0.1, 2013-01-04 19:41:23, GET, /home/default/index, HTTP/1.1, 500, 0.025745
127.0.0.1, 2013-01-04 19:41:31, GET, /home/default/index, HTTP/1.1, 200, 0.029298
127.0.0.1, 2013-01-04 19:41:48, GET, /home/default/index, HTTP/1.1, 200, 0.035449
127.0.0.1, 2013-01-04 19:43:15, GET, /home/default/index, HTTP/1.1, 500, 0.026674
127.0.0.1, 2013-01-04 19:43:15, GET, /favicon.ico, HTTP/1.1, 400, 0.000295
127.0.0.1, 2013-01-04 19:43:41, GET, /home/default/index, HTTP/1.1, 200, 0.032638
127.0.0.1, 2013-01-04 19:45:35, GET, /home/default/index, HTTP/1.1, 200, 0.028510
127.0.0.1, 2013-01-04 19:45:42, POST, /home/default/index, HTTP/1.1, 200, 0.078392
127.0.0.1, 2013-01-04 19:46:31, GET, /home/default/index, HTTP/1.1, 200, 0.030383
127.0.0.1, 2013-01-04 19:47:24, GET, /home/default/index, HTTP/1.1, 200, 0.031305
127.0.0.1, 2013-01-04 19:47:47, GET, /home/default/index, HTTP/1.1, 200, 0.028679
127.0.0.1, 2013-01-04 19:47:51, GET, /home/default/index, HTTP/1.1, 200, 0.028906
127.0.0.1, 2013-01-04 19:48:04, GET, /home/default/index, HTTP/1.1, 200, 0.028551
127.0.0.1, 2013-01-04 19:48:32, GET, /home/default/index, HTTP/1.1, 200, 0.028772
127.0.0.1, 2013-01-04 19:48:48, GET, /home/default/index, HTTP/1.1, 200, 0.036926
127.0.0.1, 2013-01-04 19:49:09, GET, /home/default/index, HTTP/1.1, 200, 0.026657
127.0.0.1, 2013-01-04 19:49:51, GET, /home/default/index, HTTP/1.1, 200, 0.030085
127.0.0.1, 2013-01-04 19:49:56, GET, /home/default/index, HTTP/1.1, 200, 0.027321
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000963
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000643
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.002369
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.001107
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.002383
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.001002
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001005
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.004282
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000934
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000603
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.000801
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000485
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000316
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000350
127.0.0.1, 2013-01-04 19:49:56, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000255
127.0.0.1, 2013-01-04 19:50:48, GET, /home/default/index, HTTP/1.1, 200, 0.031007
127.0.0.1, 2013-01-04 19:51:33, GET, /home/default/index, HTTP/1.1, 200, 0.028207
127.0.0.1, 2013-01-04 19:52:03, GET, /home/default/index, HTTP/1.1, 200, 0.036548
127.0.0.1, 2013-01-04 19:52:40, GET, /home/default/index, HTTP/1.1, 200, 0.029452
127.0.0.1, 2013-01-04 19:52:55, GET, /home/default/index, HTTP/1.1, 200, 0.028846
127.0.0.1, 2013-01-04 19:52:59, GET, /home/default/index, HTTP/1.1, 200, 0.031116
127.0.0.1, 2013-01-04 19:53:14, GET, /home/default/index, HTTP/1.1, 200, 0.028539
127.0.0.1, 2013-01-04 19:54:27, GET, /home/default/index, HTTP/1.1, 200, 0.029482
127.0.0.1, 2013-01-04 19:54:45, GET, /home/default/index, HTTP/1.1, 200, 0.034265
127.0.0.1, 2013-01-04 19:55:43, GET, /home/default/index, HTTP/1.1, 200, 0.031689
127.0.0.1, 2013-01-04 19:57:06, GET, /home/default/index, HTTP/1.1, 200, 0.030228
127.0.0.1, 2013-01-04 19:59:42, GET, /home/default/index, HTTP/1.1, 200, 0.028305
127.0.0.1, 2013-01-04 20:05:48, GET, /home/default/index, HTTP/1.1, 200, 0.030998
127.0.0.1, 2013-01-04 20:06:13, GET, /home/default/index, HTTP/1.1, 200, 0.028162
127.0.0.1, 2013-01-04 20:06:38, GET, /home/default/index, HTTP/1.1, 200, 0.033751
127.0.0.1, 2013-01-04 20:06:54, GET, /home/default/index, HTTP/1.1, 200, 0.030532
127.0.0.1, 2013-01-04 20:07:05, GET, /home/default/index, HTTP/1.1, 200, 0.028843
127.0.0.1, 2013-01-04 20:07:07, GET, /home/default/index, HTTP/1.1, 200, 0.030194
127.0.0.1, 2013-01-04 20:07:14, GET, /home/default/index, HTTP/1.1, 200, 0.029408
127.0.0.1, 2013-01-04 20:09:03, GET, /home/default/index, HTTP/1.1, 200, 0.028083
127.0.0.1, 2013-01-04 20:09:32, GET, /home/default/index, HTTP/1.1, 200, 0.032995
127.0.0.1, 2013-01-04 20:12:25, GET, /home/default/index, HTTP/1.1, 200, 0.028307
127.0.0.1, 2013-01-04 20:12:51, GET, /home/default/index, HTTP/1.1, 200, 0.032403
127.0.0.1, 2013-01-04 20:13:00, GET, /home/default/index, HTTP/1.1, 200, 0.028002
127.0.0.1, 2013-01-04 20:13:16, GET, /home/default/index, HTTP/1.1, 200, 0.031325
127.0.0.1, 2013-01-04 20:13:43, GET, /home/default/index, HTTP/1.1, 200, 0.033240
127.0.0.1, 2013-01-04 20:13:51, GET, /home/default/index, HTTP/1.1, 200, 0.035112
127.0.0.1, 2013-01-04 20:14:02, GET, /home/default/index, HTTP/1.1, 200, 0.029243
127.0.0.1, 2013-01-04 20:14:17, GET, /home/default/index, HTTP/1.1, 200, 0.029504
127.0.0.1, 2013-01-04 20:14:30, GET, /home/default/index, HTTP/1.1, 200, 0.027807
127.0.0.1, 2013-01-04 20:14:44, GET, /home/default/index, HTTP/1.1, 200, 0.024812
127.0.0.1, 2013-01-04 20:14:44, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.001306
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000689
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000474
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.002399
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000854
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000544
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.003262
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.001879
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.001649
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001408
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001107
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000760
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000309
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000853
127.0.0.1, 2013-01-04 20:14:45, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000492
127.0.0.1, 2013-01-04 20:15:07, GET, /home/default/index, HTTP/1.1, 200, 0.032988
127.0.0.1, 2013-01-04 20:15:19, GET, /home/default/index, HTTP/1.1, 200, 0.033473
127.0.0.1, 2013-01-04 20:15:48, GET, /home/default/all_records, HTTP/1.1, 200, 0.047433
127.0.0.1, 2013-01-04 20:16:46, GET, /home/default/index, HTTP/1.1, 200, 0.030716
127.0.0.1, 2013-01-04 20:21:47, GET, /home/default/user/login, HTTP/1.1, 200, 0.053145
127.0.0.1, 2013-01-04 20:21:49, GET, /home/default/index, HTTP/1.1, 200, 0.037716
127.0.0.1, 2013-01-04 20:24:55, GET, /home/default/index, HTTP/1.1, 200, 0.031100
127.0.0.1, 2013-01-04 20:26:52, GET, /home/default/index, HTTP/1.1, 200, 0.030664
127.0.0.1, 2013-01-04 20:27:17, GET, /home/default/index, HTTP/1.1, 200, 0.031284
127.0.0.1, 2013-01-04 20:28:59, GET, /home/default/all_records, HTTP/1.1, 200, 0.050889
127.0.0.1, 2013-01-04 20:29:14, GET, /home/default/index, HTTP/1.1, 200, 0.028694
127.0.0.1, 2013-01-04 20:53:16, GET, /home/default/index, HTTP/1.1, 200, 0.033419
127.0.0.1, 2013-01-04 20:53:46, GET, /home/default/index, HTTP/1.1, 200, 0.027959
127.0.0.1, 2013-01-04 20:54:18, GET, /home/default/index, HTTP/1.1, 200, 0.030563
127.0.0.1, 2013-01-04 20:55:00, GET, /home/default/index, HTTP/1.1, 200, 0.037139
127.0.0.1, 2013-01-04 20:55:57, GET, /home/default/index, HTTP/1.1, 200, 0.028867
127.0.0.1, 2013-01-04 20:56:16, GET, /home/default/index, HTTP/1.1, 200, 0.027701
127.0.0.1, 2013-01-04 20:56:29, GET, /home/default/index, HTTP/1.1, 200, 0.030574
127.0.0.1, 2013-01-04 20:56:36, POST, /home/default/index, HTTP/1.1, 200, 0.098180
127.0.0.1, 2013-01-04 21:08:15, GET, /home/default/index, HTTP/1.1, 200, 0.031951
127.0.0.1, 2013-01-04 21:08:20, POST, /home/default/index, HTTP/1.1, 200, 0.026359
127.0.0.1, 2013-01-04 21:10:53, GET, /home/default/index, HTTP/1.1, 200, 0.030629
127.0.0.1, 2013-01-04 21:10:56, POST, /home/default/index, HTTP/1.1, 200, 0.026871
127.0.0.1, 2013-01-04 21:12:18, POST, /home/default/index, HTTP/1.1, 200, 0.031107
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000894
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/css/web2py.css, HTTP/1.1, 200, 0.002118
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000287
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.000916
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 200, 0.000811
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.002535
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000422
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000662
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000678
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.000449
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.000393
127.0.0.1, 2013-01-04 21:12:18, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000402
127.0.0.1, 2013-01-04 21:12:19, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000465
127.0.0.1, 2013-01-04 21:12:19, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000321
127.0.0.1, 2013-01-04 21:12:19, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.001097
127.0.0.1, 2013-01-04 21:12:22, POST, /home/default/index, HTTP/1.1, 200, 0.030460
127.0.0.1, 2013-01-04 21:13:00, POST, /home/default/index, HTTP/1.1, 200, 0.030030
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/css/web2py.css, HTTP/1.1, 200, 0.000573
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.000323
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000495
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.001491
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000592
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.001386
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000390
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000783
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000445
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.000405
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000425
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001855
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000414
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000565
127.0.0.1, 2013-01-04 21:13:00, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000373
127.0.0.1, 2013-01-04 21:13:03, POST, /home/default/index, HTTP/1.1, 200, 0.026693
127.0.0.1, 2013-01-04 21:13:03, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000314
127.0.0.1, 2013-01-04 21:13:45, GET, /home/default/index, HTTP/1.1, 200, 0.036636
127.0.0.1, 2013-01-04 21:13:45, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.002398
127.0.0.1, 2013-01-04 21:13:45, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.002270
127.0.0.1, 2013-01-04 21:14:11, POST, /home/default/index, HTTP/1.1, 200, 0.056293
127.0.0.1, 2013-01-04 21:14:11, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000741
127.0.0.1, 2013-01-04 21:14:11, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.001879
127.0.0.1, 2013-01-04 21:14:31, POST, /home/default/index, HTTP/1.1, 200, 0.028728
127.0.0.1, 2013-01-04 21:14:31, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000477
127.0.0.1, 2013-01-04 21:14:41, POST, /home/default/index, HTTP/1.1, 200, 0.027961
127.0.0.1, 2013-01-04 21:14:41, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000560
127.0.0.1, 2013-01-04 21:14:41, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000671
127.0.0.1, 2013-01-04 21:15:04, POST, /home/default/index, HTTP/1.1, 200, 0.041213
127.0.0.1, 2013-01-04 21:15:04, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000429
127.0.0.1, 2013-01-04 21:15:21, POST, /home/default/index, HTTP/1.1, 200, 0.179197
127.0.0.1, 2013-01-04 21:15:21, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000893
127.0.0.1, 2013-01-04 21:15:21, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000425
127.0.0.1, 2013-01-04 21:15:32, GET, /home/default/all_records, HTTP/1.1, 200, 0.052022
127.0.0.1, 2013-01-04 21:15:49, GET, /home/default/all_records/edit/register/3, HTTP/1.1, 200, 0.061313
127.0.0.1, 2013-01-04 21:15:49, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000554
127.0.0.1, 2013-01-04 21:15:54, POST, /home/default/all_records/edit/register/3, HTTP/1.1, 303, 0.229403
127.0.0.1, 2013-01-04 21:15:54, GET, /home/default/all_records, HTTP/1.1, 200, 0.049261
127.0.0.1, 2013-01-04 21:15:54, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000450
127.0.0.1, 2013-01-04 21:16:14, GET, /home/default/home, HTTP/1.1, 404, 0.019567
127.0.0.1, 2013-01-04 21:16:14, GET, /favicon.ico, HTTP/1.1, 400, 0.000575
127.0.0.1, 2013-01-04 21:16:20, GET, /home/default, HTTP/1.1, 200, 0.032099
127.0.0.1, 2013-01-04 21:16:20, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000318
127.0.0.1, 2013-01-04 21:17:45, GET, /home/default, HTTP/1.1, 200, 0.044170
127.0.0.1, 2013-01-04 21:17:45, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000316
127.0.0.1, 2013-01-04 21:17:45, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000311
127.0.0.1, 2013-01-07 08:36:16, GET, /, HTTP/1.1, 303, 0.000798
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/default/index, HTTP/1.1, 200, 0.449603
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/css/web2py.css, HTTP/1.1, 304, 0.060208
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/css/calendar.css, HTTP/1.1, 304, 0.062137
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000951
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.000494
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000888
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/jquery.js, HTTP/1.1, 304, 0.076789
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/calendar.js, HTTP/1.1, 304, 0.074937
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.006953
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/web2py.js, HTTP/1.1, 304, 0.075225
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.078042
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.008523
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/js/share.js, HTTP/1.1, 304, 0.000771
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/images/facebook.png, HTTP/1.1, 304, 0.002181
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/images/twitter.png, HTTP/1.1, 304, 0.001582
127.0.0.1, 2013-01-07 08:36:17, GET, /welcome/static/images/gplus-32.png, HTTP/1.1, 304, 0.001103
127.0.0.1, 2013-01-07 08:36:54, GET, /default/, HTTP/1.1, 404, 0.000648
127.0.0.1, 2013-01-07 08:36:55, GET, /favicon.ico, HTTP/1.1, 400, 0.000250
127.0.0.1, 2013-01-07 08:37:14, GET, /app1/default/home, HTTP/1.1, 404, 0.000492
127.0.0.1, 2013-01-07 08:37:14, GET, /favicon.ico, HTTP/1.1, 400, 0.000555
127.0.0.1, 2013-01-07 08:37:19, GET, /, HTTP/1.1, 303, 0.001114
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/default/index, HTTP/1.1, 200, 0.025880
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.002538
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/css/calendar.css, HTTP/1.1, 304, 0.002726
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.002621
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.002325
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/calendar.js, HTTP/1.1, 304, 0.002933
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/css/web2py.css, HTTP/1.1, 304, 0.001019
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.000859
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/jquery.js, HTTP/1.1, 304, 0.002390
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/web2py.js, HTTP/1.1, 304, 0.001934
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.000593
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.001737
127.0.0.1, 2013-01-07 08:37:19, GET, /welcome/static/js/share.js, HTTP/1.1, 304, 0.000311
127.0.0.1, 2013-01-07 08:37:20, GET, /welcome/static/images/gplus-32.png, HTTP/1.1, 304, 0.001513
127.0.0.1, 2013-01-07 08:37:20, GET, /welcome/static/images/twitter.png, HTTP/1.1, 304, 0.002795
127.0.0.1, 2013-01-07 08:37:20, GET, /welcome/static/images/facebook.png, HTTP/1.1, 304, 0.001527
127.0.0.1, 2013-01-07 08:37:22, GET, /welcome/default/index, HTTP/1.1, 200, 0.034155
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/default/site, HTTP/1.1, 303, 0.225335
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/default/index, HTTP/1.1, 200, 0.116791
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/plugin_multiselect/multi-select.css, HTTP/1.1, 304, 0.029968
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/plugin_multiselect/start.js, HTTP/1.1, 304, 0.028467
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/plugin_multiselect/jquery.multi-select.js, HTTP/1.1, 304, 0.000729
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/js/web2py.js, HTTP/1.1, 304, 0.038037
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/css/calendar.css, HTTP/1.1, 304, 0.047583
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/css/styles.css, HTTP/1.1, 304, 0.045046
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/js/jquery.js, HTTP/1.1, 304, 0.021629
127.0.0.1, 2013-01-07 08:37:24, GET, /admin/static/js/calendar.js, HTTP/1.1, 304, 0.050413
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/header_shadow.png, HTTP/1.1, 304, 0.017725
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/start.png, HTTP/1.1, 304, 0.017849
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/sidebar_bullet.gif, HTTP/1.1, 304, 0.017461
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/menu.png, HTTP/1.1, 304, 0.015507
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/section_bullet.png, HTTP/1.1, 304, 0.017229
127.0.0.1, 2013-01-07 08:37:25, GET, /admin/static/images/header_bg.png, HTTP/1.1, 304, 0.016091
127.0.0.1, 2013-01-07 08:37:25, GET, /favicon.ico, HTTP/1.1, 400, 0.000632
127.0.0.1, 2013-01-07 08:37:30, POST, /admin/default/index, HTTP/1.1, 303, 0.076524
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/default/site, HTTP/1.1, 200, 0.060990
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/static/images/small_button.png, HTTP/1.1, 304, 0.001796
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/static/images/folder.png, HTTP/1.1, 304, 0.000875
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/static/images/folder_locked.png, HTTP/1.1, 304, 0.001979
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/static/images/small_special_button.png, HTTP/1.1, 304, 0.005033
127.0.0.1, 2013-01-07 08:37:30, POST, /admin/default/check_version, HTTP/1.1, 200, 0.040202
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/static/images/sidebar_background.jpg, HTTP/1.1, 304, 0.000383
127.0.0.1, 2013-01-07 08:37:30, GET, /favicon.ico, HTTP/1.1, 400, 0.000383
127.0.0.1, 2013-01-07 08:37:30, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.065045
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/default/design/home, HTTP/1.1, 200, 0.413509
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/static/images/delete_icon.png, HTTP/1.1, 304, 0.000754
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/static/images/help.png, HTTP/1.1, 304, 0.000379
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/static/images/search.png, HTTP/1.1, 304, 0.001051
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/static/images/test_icon.png, HTTP/1.1, 304, 0.001475
127.0.0.1, 2013-01-07 08:37:38, GET, /admin/static/images/folder_sm.png, HTTP/1.1, 304, 0.001004
127.0.0.1, 2013-01-07 08:37:38, GET, /favicon.ico, HTTP/1.1, 400, 0.000367
127.0.0.1, 2013-01-07 08:37:47, GET, /home/default/index, HTTP/1.1, 200, 0.088807
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.000545
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.001535
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.001622
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.001237
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.003769
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/css/calendar.css, HTTP/1.1, 304, 0.003539
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/jquery.js, HTTP/1.1, 304, 0.000318
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000687
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.000307
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/calendar.js, HTTP/1.1, 304, 0.000341
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/web2py.js, HTTP/1.1, 304, 0.000490
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/js/share.js, HTTP/1.1, 304, 0.000301
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/images/twitter.png, HTTP/1.1, 304, 0.000306
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/images/gplus-32.png, HTTP/1.1, 304, 0.000429
127.0.0.1, 2013-01-07 08:37:47, GET, /home/static/images/facebook.png, HTTP/1.1, 304, 0.000322
127.0.0.1, 2013-01-07 08:38:07, POST, /home/default/index, HTTP/1.1, 200, 0.027226
127.0.0.1, 2013-01-07 08:38:43, GET, /admin/default/site, HTTP/1.1, 200, 0.057939
127.0.0.1, 2013-01-07 08:38:43, GET, /admin/default/twitter.load, HTTP/1.1, 200, 0.043139
127.0.0.1, 2013-01-07 08:38:43, GET, /favicon.ico, HTTP/1.1, 400, 0.000378
127.0.0.1, 2013-01-07 08:39:25, GET, /admin/default/pack/home, HTTP/1.1, 200, 0.362346
127.0.0.1, 2013-01-07 08:51:34, GET, /admin/default/design/home, HTTP/1.1, 200, 0.100831
127.0.0.1, 2013-01-07 08:51:34, GET, /favicon.ico, HTTP/1.1, 400, 0.000335
127.0.0.1, 2013-01-07 08:51:38, GET, /home/default/index, HTTP/1.1, 200, 0.031262
127.0.0.1, 2013-01-07 11:02:30, POST, /home/default/index, HTTP/1.1, 200, 0.034606
127.0.0.1, 2013-01-07 11:10:01, GET, /home/default/all_records, HTTP/1.1, 200, 0.057255
127.0.0.1, 2013-01-07 11:10:01, GET, /home/static/images/glyphicons-halflings.png, HTTP/1.1, 304, 0.000360
127.0.0.1, 2013-01-07 11:10:18, GET, /home/default/all_records/edit/register/1, HTTP/1.1, 200, 0.049309
127.0.0.1, 2013-01-07 11:46:59, GET, /home/default/all_records, HTTP/1.1, 200, 0.053967
127.0.0.1, 2013-01-07 11:46:59, GET, /home/default/all_records/new/register, HTTP/1.1, 200, 0.045342
127.0.0.1, 2013-01-07 11:47:00, GET, /home/default/all_records, HTTP/1.1, 200, 0.053964
127.0.0.1, 2013-01-07 11:47:12, GET, /home/default/all_records, HTTP/1.1, 200, 0.053266
127.0.0.1, 2013-01-07 11:47:18, GET, /home/default/all_records/edit/register/1, HTTP/1.1, 200, 0.048117
127.0.0.1, 2013-01-07 18:37:52, GET, /home/default/all_records, HTTP/1.1, 200, 0.057107
127.0.0.1, 2013-01-07 18:37:52, GET, /home/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000336
127.0.0.1, 2013-01-07 18:37:52, GET, /home/static/css/web2py.css, HTTP/1.1, 304, 0.000378
127.0.0.1, 2013-01-07 18:37:52, GET, /home/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000245
127.0.0.1, 2013-01-07 18:37:53, GET, /home/default/all_records/new/register, HTTP/1.1, 200, 0.051326
127.0.0.1, 2013-01-17 19:49:30, GET, /, HTTP/1.1, 303, 0.001012
127.0.0.1, 2013-01-17 19:49:30, GET, /welcome/default/index, HTTP/1.1, 200, 0.506095
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/css/calendar.css, HTTP/1.1, 304, 0.331178
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/css/web2py.css, HTTP/1.1, 304, 0.330567
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/css/bootstrap-responsive.min.css, HTTP/1.1, 304, 0.000445
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/css/bootstrap.min.css, HTTP/1.1, 304, 0.000672
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/css/web2py_bootstrap.css, HTTP/1.1, 304, 0.000365
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/calendar.js, HTTP/1.1, 304, 0.413612
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/web2py.js, HTTP/1.1, 304, 0.413503
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/web2py_bootstrap.js, HTTP/1.1, 304, 0.079320
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/bootstrap.min.js, HTTP/1.1, 304, 0.080475
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/modernizr.custom.js, HTTP/1.1, 304, 0.415454
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/share.js, HTTP/1.1, 304, 0.000570
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/js/jquery.js, HTTP/1.1, 304, 0.416691
127.0.0.1, 2013-01-17 19:49:31, GET, /welcome/static/images/favicon.ico, HTTP/1.1, 304, 0.000814