-
Notifications
You must be signed in to change notification settings - Fork 0
/
wordpress.xml
executable file
·4235 lines (3999 loc) · 248 KB
/
wordpress.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<!-- This is a WordPress eXtended RSS file generated by WordPress as an export of your site. -->
<!-- It contains information about your site's posts, pages, comments, categories, and other content. -->
<!-- You may use this file to transfer that content from one site to another. -->
<!-- This file is not intended to serve as a complete backup of your site. -->
<!-- To import this information into a WordPress site follow these steps: -->
<!-- 1. Log in to that site as an administrator. -->
<!-- 2. Go to Tools: Import in the WordPress admin panel. -->
<!-- 3. Install the "WordPress" importer from the list. -->
<!-- 4. Activate & Run Importer. -->
<!-- 5. Upload this file using the form provided on that page. -->
<!-- 6. You will first be asked to map the authors in this export file to users -->
<!-- on the site. For each author, you may choose to map to an -->
<!-- existing user on the site or to create a new user. -->
<!-- 7. WordPress will then import each of the posts, pages, comments, categories, etc. -->
<!-- contained in this file into your site. -->
<!-- generator="WordPress/3.1.1" created="2012-01-09 17:49" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.1/excerpt/"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:wp="http://wordpress.org/export/1.1/"
>
<channel>
<title>Open Connectome Project</title>
<link>http://openconnecto.me</link>
<description>Collectively reverse-engineering the brain one synapse at a time</description>
<pubDate>Mon, 09 Jan 2012 17:49:37 +0000</pubDate>
<language>en</language>
<wp:wxr_version>1.1</wp:wxr_version>
<wp:base_site_url>http://openconnecto.me</wp:base_site_url>
<wp:base_blog_url>http://openconnecto.me</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login>brainadmin</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[brainadmin]]></wp:author_display_name><wp:author_first_name><![CDATA[]]></wp:author_first_name><wp:author_last_name><![CDATA[]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>3</wp:author_id><wp:author_login>jovo</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[jovo]]></wp:author_display_name><wp:author_first_name><![CDATA[Joshua]]></wp:author_first_name><wp:author_last_name><![CDATA[Vogelstein]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>8</wp:author_id><wp:author_login>saadasharif</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[saadasharif]]></wp:author_display_name><wp:author_first_name><![CDATA[Saad]]></wp:author_first_name><wp:author_last_name><![CDATA[Sharif]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>12</wp:author_id><wp:author_login>willgray</wp:author_login><wp:author_email>[email protected]</wp:author_email><wp:author_display_name><![CDATA[willgray]]></wp:author_display_name><wp:author_first_name><![CDATA[Will]]></wp:author_first_name><wp:author_last_name><![CDATA[Gray]]></wp:author_last_name></wp:author>
<wp:category><wp:term_id>6</wp:term_id><wp:category_nicename>announcement</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[announcement]]></wp:cat_name><wp:category_description><![CDATA[Announcements of new publications, talks, capabilities, etc.]]></wp:category_description></wp:category>
<wp:category><wp:term_id>1</wp:term_id><wp:category_nicename>connectome</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[connectome]]></wp:cat_name></wp:category>
<wp:category><wp:term_id>8</wp:term_id><wp:category_nicename>featured</wp:category_nicename><wp:category_parent></wp:category_parent><wp:cat_name><![CDATA[Featured]]></wp:cat_name></wp:category>
<wp:term><wp:term_id>5</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>footer</wp:term_slug><wp:term_name><![CDATA[Footer]]></wp:term_name></wp:term>
<wp:term><wp:term_id>4</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>primary-navigation</wp:term_slug><wp:term_name><![CDATA[Primary Navigation]]></wp:term_name></wp:term>
<wp:term><wp:term_id>7</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug>connectomes</wp:term_slug><wp:term_name><![CDATA[Connectomes]]></wp:term_name></wp:term>
<generator>http://wordpress.org/?v=3.1.1</generator>
<item>
<title>braingraph-viewer</title>
<link>http://openconnecto.me/?attachment_id=64</link>
<pubDate>Mon, 14 Mar 2011 04:45:57 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://connectome.cs.jhu.edu/wp-content/uploads/2011/03/braingraph-viewer.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>64</wp:post_id>
<wp:post_date>2011-03-14 04:45:57</wp:post_date>
<wp:post_date_gmt>2011-03-14 04:45:57</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>braingraph-viewer</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/braingraph-viewer.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/braingraph-viewer.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"300";s:6:"height";s:3:"140";s:14:"hwstring_small";s:23:"height='59' width='128'";s:4:"file";s:29:"2011/03/braingraph-viewer.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"braingraph-viewer-150x140.png";s:5:"width";s:3:"150";s:6:"height";s:3:"140";}s:14:"post-thumbnail";a:3:{s:4:"file";s:27:"braingraph-viewer-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:27:"braingraph-viewer-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:27:"braingraph-viewer-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:29:"braingraph-viewer-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:29:"braingraph-viewer-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>data-video</title>
<link>http://openconnecto.me/?attachment_id=66</link>
<pubDate>Mon, 14 Mar 2011 04:48:59 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://connectome.cs.jhu.edu/wp-content/uploads/2011/03/data-video.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>66</wp:post_id>
<wp:post_date>2011-03-14 04:48:59</wp:post_date>
<wp:post_date_gmt>2011-03-14 04:48:59</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>data-video</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/data-video.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/data-video.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"600";s:6:"height";s:3:"350";s:14:"hwstring_small";s:23:"height='74' width='128'";s:4:"file";s:22:"2011/03/data-video.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"data-video-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"data-video-300x175.png";s:5:"width";s:3:"300";s:6:"height";s:3:"175";}s:14:"post-thumbnail";a:3:{s:4:"file";s:20:"data-video-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:20:"data-video-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:20:"data-video-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:22:"data-video-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:22:"data-video-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:22:"data-video-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>signup_button</title>
<link>http://openconnecto.me/?attachment_id=154</link>
<pubDate>Fri, 25 Mar 2011 02:41:46 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/signup_button.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>154</wp:post_id>
<wp:post_date>2011-03-24 22:41:46</wp:post_date>
<wp:post_date_gmt>2011-03-25 02:41:46</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>signup_button</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/signup_button.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/signup_button.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:2:"66";s:6:"height";s:2:"26";s:14:"hwstring_small";s:22:"height='26' width='66'";s:4:"file";s:25:"2011/03/signup_button.png";s:5:"sizes";a:3:{s:14:"post-thumbnail";a:3:{s:4:"file";s:23:"signup_button-60x26.png";s:5:"width";s:2:"60";s:6:"height";s:2:"26";}s:4:"icon";a:3:{s:4:"file";s:23:"signup_button-40x26.png";s:5:"width";s:2:"40";s:6:"height";s:2:"26";}s:9:"tiny-view";a:3:{s:4:"file";s:23:"signup_button-60x26.png";s:5:"width";s:2:"60";s:6:"height";s:2:"26";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>btn_learn</title>
<link>http://openconnecto.me/?attachment_id=160</link>
<pubDate>Tue, 05 Apr 2011 17:23:39 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/04/btn_learn.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>160</wp:post_id>
<wp:post_date>2011-04-05 13:23:39</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:23:39</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>btn_learn</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/04/btn_learn.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/04/btn_learn.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"300";s:6:"height";s:3:"100";s:14:"hwstring_small";s:23:"height='42' width='128'";s:4:"file";s:21:"2011/04/btn_learn.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"btn_learn-150x100.png";s:5:"width";s:3:"150";s:6:"height";s:3:"100";}s:14:"post-thumbnail";a:3:{s:4:"file";s:19:"btn_learn-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:19:"btn_learn-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:19:"btn_learn-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:21:"btn_learn-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:21:"btn_learn-220x100.png";s:5:"width";s:3:"220";s:6:"height";s:3:"100";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>btn_explore</title>
<link>http://openconnecto.me/home/btn_explore/</link>
<pubDate>Tue, 05 Apr 2011 17:23:40 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/04/btn_explore.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>161</wp:post_id>
<wp:post_date>2011-04-05 13:23:40</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:23:40</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>btn_explore</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/04/btn_explore.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/04/btn_explore.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"300";s:6:"height";s:3:"100";s:14:"hwstring_small";s:23:"height='42' width='128'";s:4:"file";s:23:"2011/04/btn_explore.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:3:{s:4:"file";s:23:"btn_explore-150x100.png";s:5:"width";s:3:"150";s:6:"height";s:3:"100";}s:14:"post-thumbnail";a:3:{s:4:"file";s:21:"btn_explore-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:21:"btn_explore-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:21:"btn_explore-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:23:"btn_explore-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:23:"btn_explore-220x100.png";s:5:"width";s:3:"220";s:6:"height";s:3:"100";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>btn_participate</title>
<link>http://openconnecto.me/?attachment_id=162</link>
<pubDate>Tue, 05 Apr 2011 17:23:41 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/04/btn_participate.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>162</wp:post_id>
<wp:post_date>2011-04-05 13:23:41</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:23:41</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>btn_participate</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/04/btn_participate.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/04/btn_participate.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"300";s:6:"height";s:3:"100";s:14:"hwstring_small";s:23:"height='42' width='128'";s:4:"file";s:27:"2011/04/btn_participate.png";s:5:"sizes";a:6:{s:9:"thumbnail";a:3:{s:4:"file";s:27:"btn_participate-150x100.png";s:5:"width";s:3:"150";s:6:"height";s:3:"100";}s:14:"post-thumbnail";a:3:{s:4:"file";s:25:"btn_participate-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:25:"btn_participate-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:25:"btn_participate-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:27:"btn_participate-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:27:"btn_participate-220x100.png";s:5:"width";s:3:"220";s:6:"height";s:3:"100";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>nature cover image</title>
<link>http://openconnecto.me/home/screen-shot-2011-04-05-at-1-40-19-pm/</link>
<pubDate>Tue, 05 Apr 2011 17:42:42 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/Screen-shot-2011-04-05-at-1.40.19-PM.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>171</wp:post_id>
<wp:post_date>2011-04-05 13:42:42</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:42:42</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2011-04-05-at-1-40-19-pm</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/Screen-shot-2011-04-05-at-1.40.19-PM.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/Screen-shot-2011-04-05-at-1.40.19-PM.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1591";s:6:"height";s:3:"631";s:14:"hwstring_small";s:23:"height='50' width='128'";s:4:"file";s:48:"2011/03/Screen-shot-2011-04-05-at-1.40.19-PM.png";s:5:"sizes";a:9:{s:9:"thumbnail";a:3:{s:4:"file";s:48:"Screen-shot-2011-04-05-at-1.40.19-PM-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:48:"Screen-shot-2011-04-05-at-1.40.19-PM-300x118.png";s:5:"width";s:3:"300";s:6:"height";s:3:"118";}s:5:"large";a:3:{s:4:"file";s:49:"Screen-shot-2011-04-05-at-1.40.19-PM-1024x406.png";s:5:"width";s:4:"1024";s:6:"height";s:3:"406";}s:14:"post-thumbnail";a:3:{s:4:"file";s:46:"Screen-shot-2011-04-05-at-1.40.19-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:46:"Screen-shot-2011-04-05-at-1.40.19-PM-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:46:"Screen-shot-2011-04-05-at-1.40.19-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:48:"Screen-shot-2011-04-05-at-1.40.19-PM-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:48:"Screen-shot-2011-04-05-at-1.40.19-PM-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:48:"Screen-shot-2011-04-05-at-1.40.19-PM-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>nature09802-f5.2C</title>
<link>http://openconnecto.me/home/nature09802-f5-2c/</link>
<pubDate>Tue, 05 Apr 2011 17:58:32 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/nature09802-f5.2C.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>172</wp:post_id>
<wp:post_date>2011-04-05 13:58:32</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:58:32</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>nature09802-f5-2c</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/nature09802-f5.2C.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/nature09802-f5.2C.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"453";s:6:"height";s:3:"323";s:14:"hwstring_small";s:23:"height='91' width='128'";s:4:"file";s:29:"2011/03/nature09802-f5.2C.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:29:"nature09802-f5.2C-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:29:"nature09802-f5.2C-300x213.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"213";}s:14:"post-thumbnail";a:3:{s:4:"file";s:27:"nature09802-f5.2C-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:27:"nature09802-f5.2C-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:27:"nature09802-f5.2C-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:29:"nature09802-f5.2C-140x100.jpg";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:29:"nature09802-f5.2C-220x140.jpg";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:29:"nature09802-f5.2C-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>nature09802-f5.2C</title>
<link>http://openconnecto.me/home/nature09802-f5-2c-2/</link>
<pubDate>Tue, 05 Apr 2011 17:59:09 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/nature09802-f5.2C1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>173</wp:post_id>
<wp:post_date>2011-04-05 13:59:09</wp:post_date>
<wp:post_date_gmt>2011-04-05 17:59:09</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>nature09802-f5-2c-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/nature09802-f5.2C1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/nature09802-f5.2C1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"453";s:6:"height";s:3:"323";s:14:"hwstring_small";s:23:"height='91' width='128'";s:4:"file";s:30:"2011/03/nature09802-f5.2C1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:30:"nature09802-f5.2C1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:30:"nature09802-f5.2C1-300x213.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"213";}s:14:"post-thumbnail";a:3:{s:4:"file";s:28:"nature09802-f5.2C1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:28:"nature09802-f5.2C1-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:28:"nature09802-f5.2C1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:30:"nature09802-f5.2C1-140x100.jpg";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:30:"nature09802-f5.2C1-220x140.jpg";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:30:"nature09802-f5.2C1-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Cover_cropped</title>
<link>http://openconnecto.me/home/cover_cropped/</link>
<pubDate>Thu, 07 Apr 2011 17:13:11 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/Cover_cropped.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>211</wp:post_id>
<wp:post_date>2011-04-07 13:13:11</wp:post_date>
<wp:post_date_gmt>2011-04-07 17:13:11</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>cover_cropped</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/Cover_cropped.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/Cover_cropped.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"943";s:6:"height";s:3:"389";s:14:"hwstring_small";s:23:"height='52' width='128'";s:4:"file";s:25:"2011/03/Cover_cropped.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:25:"Cover_cropped-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:25:"Cover_cropped-300x123.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"123";}s:14:"post-thumbnail";a:3:{s:4:"file";s:23:"Cover_cropped-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:23:"Cover_cropped-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:23:"Cover_cropped-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:25:"Cover_cropped-140x100.jpg";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:25:"Cover_cropped-220x140.jpg";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:25:"Cover_cropped-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Cover_cropped</title>
<link>http://openconnecto.me/home/cover_cropped-2/</link>
<pubDate>Thu, 07 Apr 2011 17:15:27 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/Cover_cropped1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>213</wp:post_id>
<wp:post_date>2011-04-07 13:15:27</wp:post_date>
<wp:post_date_gmt>2011-04-07 17:15:27</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>cover_cropped-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/Cover_cropped1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/Cover_cropped1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"929";s:6:"height";s:3:"389";s:14:"hwstring_small";s:23:"height='53' width='128'";s:4:"file";s:26:"2011/03/Cover_cropped1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:26:"Cover_cropped1-150x150.jpg";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:26:"Cover_cropped1-300x125.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"125";}s:14:"post-thumbnail";a:3:{s:4:"file";s:24:"Cover_cropped1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:24:"Cover_cropped1-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:24:"Cover_cropped1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:26:"Cover_cropped1-140x100.jpg";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:26:"Cover_cropped1-220x140.jpg";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:26:"Cover_cropped1-300x200.jpg";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>home-photo</title>
<link>http://openconnecto.me/home/home-photo/</link>
<pubDate>Wed, 13 Apr 2011 01:48:03 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/03/home-photo.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>283</wp:post_id>
<wp:post_date>2011-04-12 21:48:03</wp:post_date>
<wp:post_date_gmt>2011-04-13 01:48:03</wp:post_date_gmt>
<wp:comment_status>closed</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>home-photo</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>7</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/03/home-photo.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"929";s:6:"height";s:3:"389";s:14:"hwstring_small";s:23:"height='53' width='128'";s:4:"file";s:22:"2011/03/home-photo.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:22:"home-photo-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:22:"home-photo-300x125.png";s:5:"width";s:3:"300";s:6:"height";s:3:"125";}s:14:"post-thumbnail";a:3:{s:4:"file";s:20:"home-photo-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:20:"home-photo-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:20:"home-photo-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:22:"home-photo-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:22:"home-photo-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:22:"home-photo-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/03/home-photo.png]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>jeff</title>
<link>http://openconnecto.me/services/jeff/</link>
<pubDate>Tue, 31 May 2011 21:02:56 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/05/jeff.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>370</wp:post_id>
<wp:post_date>2011-05-31 17:02:56</wp:post_date>
<wp:post_date_gmt>2011-05-31 21:02:56</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>jeff</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>361</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/05/jeff.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/05/jeff.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1134";s:6:"height";s:4:"1136";s:14:"hwstring_small";s:22:"height='96' width='95'";s:4:"file";s:16:"2011/05/jeff.png";s:5:"sizes";a:9:{s:9:"thumbnail";a:3:{s:4:"file";s:16:"jeff-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:16:"jeff-300x300.png";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:5:"large";a:3:{s:4:"file";s:18:"jeff-1022x1024.png";s:5:"width";s:4:"1022";s:6:"height";s:4:"1024";}s:14:"post-thumbnail";a:3:{s:4:"file";s:14:"jeff-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:14:"jeff-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:14:"jeff-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:16:"jeff-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:16:"jeff-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:16:"jeff-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Kasthuri et al, 2012</title>
<link>http://openconnecto.me/connectomes/jeff2/</link>
<pubDate>Tue, 31 May 2011 21:34:15 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/05/jeff2.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>397</wp:post_id>
<wp:post_date>2011-05-31 17:34:15</wp:post_date>
<wp:post_date_gmt>2011-05-31 21:34:15</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>jeff2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>13</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/05/jeff2.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/05/jeff2.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:4:"1202";s:6:"height";s:4:"1202";s:14:"hwstring_small";s:22:"height='96' width='96'";s:4:"file";s:17:"2011/05/jeff2.png";s:5:"sizes";a:9:{s:9:"thumbnail";a:3:{s:4:"file";s:17:"jeff2-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:17:"jeff2-300x300.png";s:5:"width";s:3:"300";s:6:"height";s:3:"300";}s:5:"large";a:3:{s:4:"file";s:19:"jeff2-1024x1024.png";s:5:"width";s:4:"1024";s:6:"height";s:4:"1024";}s:14:"post-thumbnail";a:3:{s:4:"file";s:15:"jeff2-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:15:"jeff2-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:15:"jeff2-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:17:"jeff2-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:17:"jeff2-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:17:"jeff2-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Human Connectome Project</title>
<link>http://openconnecto.me/links/header-bg/</link>
<pubDate>Wed, 06 Jul 2011 03:27:01 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/header-bg.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>468</wp:post_id>
<wp:post_date>2011-07-05 23:27:01</wp:post_date>
<wp:post_date_gmt>2011-07-06 03:27:01</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>header-bg</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/header-bg.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"148";s:6:"height";s:3:"129";s:14:"hwstring_small";s:23:"height='96' width='110'";s:4:"file";s:21:"2011/07/header-bg.png";s:5:"sizes";a:4:{s:14:"post-thumbnail";a:3:{s:4:"file";s:19:"header-bg-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:19:"header-bg-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:19:"header-bg-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:21:"header-bg-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/header-bg.png]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Mouse Connectome Project</title>
<link>http://openconnecto.me/links/screen-shot-2011-07-05-at-11-31-12-pm/</link>
<pubDate>Wed, 06 Jul 2011 03:31:37 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/Screen-shot-2011-07-05-at-11.31.12-PM.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>469</wp:post_id>
<wp:post_date>2011-07-05 23:31:37</wp:post_date>
<wp:post_date_gmt>2011-07-06 03:31:37</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2011-07-05-at-11-31-12-pm</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/Screen-shot-2011-07-05-at-11.31.12-PM.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/Screen-shot-2011-07-05-at-11.31.12-PM.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"901";s:6:"height";s:3:"221";s:14:"hwstring_small";s:23:"height='31' width='128'";s:4:"file";s:49:"2011/07/Screen-shot-2011-07-05-at-11.31.12-PM.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:49:"Screen-shot-2011-07-05-at-11.31.12-PM-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:48:"Screen-shot-2011-07-05-at-11.31.12-PM-300x73.png";s:5:"width";s:3:"300";s:6:"height";s:2:"73";}s:14:"post-thumbnail";a:3:{s:4:"file";s:47:"Screen-shot-2011-07-05-at-11.31.12-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:47:"Screen-shot-2011-07-05-at-11.31.12-PM-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:47:"Screen-shot-2011-07-05-at-11.31.12-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-07-05-at-11.31.12-PM-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-07-05-at-11.31.12-PM-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-07-05-at-11.31.12-PM-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Screen shot 2011-09-11 at 10.16.32 PM</title>
<link>http://openconnecto.me/links/screen-shot-2011-09-11-at-10-16-32-pm/</link>
<pubDate>Mon, 12 Sep 2011 02:17:40 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/Screen-shot-2011-09-11-at-10.16.32-PM.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>560</wp:post_id>
<wp:post_date>2011-09-11 22:17:40</wp:post_date>
<wp:post_date_gmt>2011-09-12 02:17:40</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2011-09-11-at-10-16-32-pm</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/Screen-shot-2011-09-11-at-10.16.32-PM.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/Screen-shot-2011-09-11-at-10.16.32-PM.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"542";s:6:"height";s:3:"124";s:14:"hwstring_small";s:23:"height='29' width='128'";s:4:"file";s:49:"2011/07/Screen-shot-2011-09-11-at-10.16.32-PM.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:49:"Screen-shot-2011-09-11-at-10.16.32-PM-150x124.png";s:5:"width";s:3:"150";s:6:"height";s:3:"124";}s:6:"medium";a:3:{s:4:"file";s:48:"Screen-shot-2011-09-11-at-10.16.32-PM-300x68.png";s:5:"width";s:3:"300";s:6:"height";s:2:"68";}s:14:"post-thumbnail";a:3:{s:4:"file";s:47:"Screen-shot-2011-09-11-at-10.16.32-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:47:"Screen-shot-2011-09-11-at-10.16.32-PM-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:47:"Screen-shot-2011-09-11-at-10.16.32-PM-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-09-11-at-10.16.32-PM-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-09-11-at-10.16.32-PM-220x124.png";s:5:"width";s:3:"220";s:6:"height";s:3:"124";}s:8:"big-view";a:3:{s:4:"file";s:49:"Screen-shot-2011-09-11-at-10.16.32-PM-300x124.png";s:5:"width";s:3:"300";s:6:"height";s:3:"124";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>Screen shot 2011-09-11 at 10.16.32 PM</title>
<link>http://openconnecto.me/links/screen-shot-2011-09-11-at-10-16-32-pm-2/</link>
<pubDate>Mon, 12 Sep 2011 02:21:41 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/Screen-shot-2011-09-11-at-10.16.32-PM1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>561</wp:post_id>
<wp:post_date>2011-09-11 22:21:41</wp:post_date>
<wp:post_date_gmt>2011-09-12 02:21:41</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>screen-shot-2011-09-11-at-10-16-32-pm-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/Screen-shot-2011-09-11-at-10.16.32-PM1-e1315794158374.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/Screen-shot-2011-09-11-at-10.16.32-PM1-e1315794158374.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"524";s:6:"height";s:3:"100";s:14:"hwstring_small";s:23:"height='24' width='128'";s:4:"file";s:65:"2011/07/Screen-shot-2011-09-11-at-10.16.32-PM1-e1315794158374.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:65:"Screen-shot-2011-09-11-at-10.16.32-PM1-e1315794158374-150x100.png";s:5:"width";s:3:"150";s:6:"height";s:3:"100";}s:6:"medium";a:3:{s:4:"file";s:64:"Screen-shot-2011-09-11-at-10.16.32-PM1-e1315794158374-300x57.png";s:5:"width";s:3:"300";s:6:"height";s:2:"57";}s:14:"post-thumbnail";a:3:{s:4:"file";s:48:"Screen-shot-2011-09-11-at-10.16.32-PM1-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:48:"Screen-shot-2011-09-11-at-10.16.32-PM1-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:48:"Screen-shot-2011-09-11-at-10.16.32-PM1-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:50:"Screen-shot-2011-09-11-at-10.16.32-PM1-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:50:"Screen-shot-2011-09-11-at-10.16.32-PM1-220x124.png";s:5:"width";s:3:"220";s:6:"height";s:3:"124";}s:8:"big-view";a:3:{s:4:"file";s:50:"Screen-shot-2011-09-11-at-10.16.32-PM1-300x124.png";s:5:"width";s:3:"300";s:6:"height";s:3:"124";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_backup_sizes</wp:meta_key>
<wp:meta_value><![CDATA[a:3:{s:9:"full-orig";a:3:{s:5:"width";s:3:"542";s:6:"height";s:3:"124";s:4:"file";s:42:"Screen-shot-2011-09-11-at-10.16.32-PM1.png";}s:11:"medium-orig";a:3:{s:4:"file";s:49:"Screen-shot-2011-09-11-at-10.16.32-PM1-300x68.png";s:5:"width";s:3:"300";s:6:"height";s:2:"68";}s:14:"thumbnail-orig";a:3:{s:4:"file";s:50:"Screen-shot-2011-09-11-at-10.16.32-PM1-150x124.png";s:5:"width";s:3:"150";s:6:"height";s:3:"124";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wormatlas</title>
<link>http://openconnecto.me/links/wormatlas/</link>
<pubDate>Thu, 15 Sep 2011 03:51:32 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/wormatlas.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>569</wp:post_id>
<wp:post_date>2011-09-14 23:51:32</wp:post_date>
<wp:post_date_gmt>2011-09-15 03:51:32</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>wormatlas</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/wormatlas.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/wormatlas.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"306";s:6:"height";s:2:"86";s:14:"hwstring_small";s:23:"height='35' width='128'";s:4:"file";s:21:"2011/07/wormatlas.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:20:"wormatlas-150x86.jpg";s:5:"width";s:3:"150";s:6:"height";s:2:"86";}s:6:"medium";a:3:{s:4:"file";s:20:"wormatlas-300x84.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"84";}s:14:"post-thumbnail";a:3:{s:4:"file";s:19:"wormatlas-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:19:"wormatlas-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:19:"wormatlas-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:20:"wormatlas-140x86.jpg";s:5:"width";s:3:"140";s:6:"height";s:2:"86";}s:11:"medium-view";a:3:{s:4:"file";s:20:"wormatlas-220x86.jpg";s:5:"width";s:3:"220";s:6:"height";s:2:"86";}s:8:"big-view";a:3:{s:4:"file";s:20:"wormatlas-300x86.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"86";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wormatlas</title>
<link>http://openconnecto.me/links/wormatlas-2/</link>
<pubDate>Thu, 15 Sep 2011 03:52:36 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/07/wormatlas1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>570</wp:post_id>
<wp:post_date>2011-09-14 23:52:36</wp:post_date>
<wp:post_date_gmt>2011-09-15 03:52:36</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>wormatlas-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>459</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/07/wormatlas1.jpg</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/07/wormatlas1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"306";s:6:"height";s:2:"86";s:14:"hwstring_small";s:23:"height='35' width='128'";s:4:"file";s:22:"2011/07/wormatlas1.jpg";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:21:"wormatlas1-150x86.jpg";s:5:"width";s:3:"150";s:6:"height";s:2:"86";}s:6:"medium";a:3:{s:4:"file";s:21:"wormatlas1-300x84.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"84";}s:14:"post-thumbnail";a:3:{s:4:"file";s:20:"wormatlas1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:20:"wormatlas1-40x40.jpg";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:20:"wormatlas1-60x60.jpg";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:21:"wormatlas1-140x86.jpg";s:5:"width";s:3:"140";s:6:"height";s:2:"86";}s:11:"medium-view";a:3:{s:4:"file";s:21:"wormatlas1-220x86.jpg";s:5:"width";s:3:"220";s:6:"height";s:2:"86";}s:8:"big-view";a:3:{s:4:"file";s:21:"wormatlas1-300x86.jpg";s:5:"width";s:3:"300";s:6:"height";s:2:"86";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title></title>
<link>http://openconnecto.me/2011/03/12/18/</link>
<pubDate>Sat, 12 Mar 2011 03:15:35 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://connectome.cs.jhu.edu/?p=18</guid>
<description></description>
<content:encoded><![CDATA[ ]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>18</wp:post_id>
<wp:post_date>2011-03-12 03:15:35</wp:post_date>
<wp:post_date_gmt>2011-03-12 03:15:35</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>18</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>2</wp:menu_order>
<wp:post_type>nav_menu_item</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="nav_menu" nicename="primary-navigation"><![CDATA[Primary Navigation]]></category>
<wp:postmeta>
<wp:meta_key>_menu_item_type</wp:meta_key>
<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_object_id</wp:meta_key>
<wp:meta_value><![CDATA[13]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_object</wp:meta_key>
<wp:meta_value><![CDATA[page]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_target</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_classes</wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_xfn</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_url</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title></title>
<link>http://openconnecto.me/2011/09/18/576/</link>
<pubDate>Mon, 19 Sep 2011 02:11:12 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/?p=576</guid>
<description></description>
<content:encoded><![CDATA[Mission
The primary motivating force behind the Open Connectome Project is to make state-of-the-art neuroscience open to anybody with computer access, regardless of knowledge, training, background, etc. Open science means open to view, play, analyze, contribute, anything.
We are interested in all levels of “connectomes” , from the nano (using electron microscopy) to the macro (using magnetic resonance imaging). We (and others) conjecture that connectomes contain troves of information about who we are and how we tick. The size and multi-center nature of these data sets makes hosting services for these data beyond the scope of many individual labs. Therefore, the Open Connectome Project facilitates the analysis of connectome data by providing a unified front for connectomics research.]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>576</wp:post_id>
<wp:post_date>2011-09-18 22:11:12</wp:post_date>
<wp:post_date_gmt>2011-09-19 02:11:12</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>576</wp:post_name>
<wp:status>publish</wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>1</wp:menu_order>
<wp:post_type>nav_menu_item</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<category domain="nav_menu" nicename="primary-navigation"><![CDATA[Primary Navigation]]></category>
<wp:postmeta>
<wp:meta_key>_menu_item_type</wp:meta_key>
<wp:meta_value><![CDATA[post_type]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_menu_item_parent</wp:meta_key>
<wp:meta_value><![CDATA[0]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_object_id</wp:meta_key>
<wp:meta_value><![CDATA[499]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_object</wp:meta_key>
<wp:meta_value><![CDATA[page]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_target</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_classes</wp:meta_key>
<wp:meta_value><![CDATA[a:1:{i:0;s:0:"";}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_xfn</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_menu_item_url</wp:meta_key>
<wp:meta_value><![CDATA[]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>brain-graph-home-pic-1</title>
<link>http://openconnecto.me/2011/10/03/image-one/brain-graph-home-pic-1/</link>
<pubDate>Mon, 03 Oct 2011 21:58:38 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/brain-graph-home-pic-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>706</wp:post_id>
<wp:post_date>2011-10-03 17:58:38</wp:post_date>
<wp:post_date_gmt>2011-10-03 21:58:38</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>brain-graph-home-pic-1</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>705</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/brain-graph-home-pic-1.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/brain-graph-home-pic-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"700";s:6:"height";s:3:"420";s:14:"hwstring_small";s:23:"height='76' width='128'";s:4:"file";s:34:"2011/10/brain-graph-home-pic-1.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:34:"brain-graph-home-pic-1-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:34:"brain-graph-home-pic-1-300x180.png";s:5:"width";s:3:"300";s:6:"height";s:3:"180";}s:14:"post-thumbnail";a:3:{s:4:"file";s:32:"brain-graph-home-pic-1-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:32:"brain-graph-home-pic-1-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:32:"brain-graph-home-pic-1-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:34:"brain-graph-home-pic-1-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:34:"brain-graph-home-pic-1-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:34:"brain-graph-home-pic-1-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>data-graph-home-pic-2</title>
<link>http://openconnecto.me/2011/10/03/image-two/data-graph-home-pic-2/</link>
<pubDate>Mon, 03 Oct 2011 22:06:42 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/data-graph-home-pic-2.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>710</wp:post_id>
<wp:post_date>2011-10-03 18:06:42</wp:post_date>
<wp:post_date_gmt>2011-10-03 22:06:42</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>data-graph-home-pic-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>709</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/data-graph-home-pic-2.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/data-graph-home-pic-2.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"700";s:6:"height";s:3:"420";s:14:"hwstring_small";s:23:"height='76' width='128'";s:4:"file";s:33:"2011/10/data-graph-home-pic-2.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:33:"data-graph-home-pic-2-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:33:"data-graph-home-pic-2-300x180.png";s:5:"width";s:3:"300";s:6:"height";s:3:"180";}s:14:"post-thumbnail";a:3:{s:4:"file";s:31:"data-graph-home-pic-2-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:31:"data-graph-home-pic-2-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:31:"data-graph-home-pic-2-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:33:"data-graph-home-pic-2-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:33:"data-graph-home-pic-2-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:33:"data-graph-home-pic-2-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>connectomes-photo-home-pic-3</title>
<link>http://openconnecto.me/2011/10/03/image-three/connectomes-photo-home-pic-3/</link>
<pubDate>Mon, 03 Oct 2011 22:09:35 +0000</pubDate>
<dc:creator>brainadmin</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/connectomes-photo-home-pic-3.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>713</wp:post_id>
<wp:post_date>2011-10-03 18:09:35</wp:post_date>
<wp:post_date_gmt>2011-10-03 22:09:35</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>connectomes-photo-home-pic-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>712</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/connectomes-photo-home-pic-3.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/connectomes-photo-home-pic-3.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"700";s:6:"height";s:3:"420";s:14:"hwstring_small";s:23:"height='76' width='128'";s:4:"file";s:40:"2011/10/connectomes-photo-home-pic-3.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:40:"connectomes-photo-home-pic-3-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:40:"connectomes-photo-home-pic-3-300x180.png";s:5:"width";s:3:"300";s:6:"height";s:3:"180";}s:14:"post-thumbnail";a:3:{s:4:"file";s:38:"connectomes-photo-home-pic-3-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:38:"connectomes-photo-home-pic-3-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:38:"connectomes-photo-home-pic-3-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:40:"connectomes-photo-home-pic-3-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:40:"connectomes-photo-home-pic-3-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:40:"connectomes-photo-home-pic-3-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>brain-graph-home-pic-1</title>
<link>http://openconnecto.me/2011/10/03/image-two/brain-graph-home-pic-1-2/</link>
<pubDate>Mon, 03 Oct 2011 22:47:43 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/brain-graph-home-pic-11.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>720</wp:post_id>
<wp:post_date>2011-10-03 18:47:43</wp:post_date>
<wp:post_date_gmt>2011-10-03 22:47:43</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>brain-graph-home-pic-1-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>709</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/brain-graph-home-pic-11.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"700";s:6:"height";s:3:"387";s:14:"hwstring_small";s:23:"height='70' width='128'";s:4:"file";s:35:"2011/10/brain-graph-home-pic-11.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:35:"brain-graph-home-pic-11-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:35:"brain-graph-home-pic-11-300x165.png";s:5:"width";s:3:"300";s:6:"height";s:3:"165";}s:14:"post-thumbnail";a:3:{s:4:"file";s:33:"brain-graph-home-pic-11-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:33:"brain-graph-home-pic-11-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:33:"brain-graph-home-pic-11-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-11-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-11-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-11-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/brain-graph-home-pic-11.png]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>brain-graph-home-pic-12</title>
<link>http://openconnecto.me/2011/10/03/image-two/brain-graph-home-pic-1-3/</link>
<pubDate>Mon, 03 Oct 2011 22:48:28 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/brain-graph-home-pic-12.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>721</wp:post_id>
<wp:post_date>2011-10-03 18:48:28</wp:post_date>
<wp:post_date_gmt>2011-10-03 22:48:28</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>brain-graph-home-pic-1-3</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>709</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/brain-graph-home-pic-12.png</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/brain-graph-home-pic-12.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:6:{s:5:"width";s:3:"700";s:6:"height";s:3:"387";s:14:"hwstring_small";s:23:"height='70' width='128'";s:4:"file";s:35:"2011/10/brain-graph-home-pic-12.png";s:5:"sizes";a:8:{s:9:"thumbnail";a:3:{s:4:"file";s:35:"brain-graph-home-pic-12-150x150.png";s:5:"width";s:3:"150";s:6:"height";s:3:"150";}s:6:"medium";a:3:{s:4:"file";s:35:"brain-graph-home-pic-12-300x165.png";s:5:"width";s:3:"300";s:6:"height";s:3:"165";}s:14:"post-thumbnail";a:3:{s:4:"file";s:33:"brain-graph-home-pic-12-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:4:"icon";a:3:{s:4:"file";s:33:"brain-graph-home-pic-12-40x40.png";s:5:"width";s:2:"40";s:6:"height";s:2:"40";}s:9:"tiny-view";a:3:{s:4:"file";s:33:"brain-graph-home-pic-12-60x60.png";s:5:"width";s:2:"60";s:6:"height";s:2:"60";}s:10:"small-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-12-140x100.png";s:5:"width";s:3:"140";s:6:"height";s:3:"100";}s:11:"medium-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-12-220x140.png";s:5:"width";s:3:"220";s:6:"height";s:3:"140";}s:8:"big-view";a:3:{s:4:"file";s:35:"brain-graph-home-pic-12-300x200.png";s:5:"width";s:3:"300";s:6:"height";s:3:"200";}}s:10:"image_meta";a:10:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>calcium_graph.001</title>
<link>http://openconnecto.me/2011/10/03/image-two/calcium_graph-001/</link>
<pubDate>Mon, 03 Oct 2011 22:58:13 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/calcium_graph.001.tiff</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>723</wp:post_id>
<wp:post_date>2011-10-03 18:58:13</wp:post_date>
<wp:post_date_gmt>2011-10-03 22:58:13</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>calcium_graph-001</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>709</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/calcium_graph.001.tiff</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/calcium_graph.001.tiff]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key>_wp_attachment_metadata</wp:meta_key>
<wp:meta_value><![CDATA[a:0:{}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>calcium_graph.001</title>
<link>http://openconnecto.me/2011/10/03/image-two/calcium_graph-001-2/</link>
<pubDate>Mon, 03 Oct 2011 23:07:39 +0000</pubDate>
<dc:creator>jovo</dc:creator>
<guid isPermaLink="false">http://openconnectomeproject.org/wp-content/uploads/2011/10/calcium_graph.0011.tiff</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>724</wp:post_id>
<wp:post_date>2011-10-03 19:07:39</wp:post_date>
<wp:post_date_gmt>2011-10-03 23:07:39</wp:post_date_gmt>
<wp:comment_status>open</wp:comment_status>
<wp:ping_status>open</wp:ping_status>
<wp:post_name>calcium_graph-001-2</wp:post_name>
<wp:status>inherit</wp:status>
<wp:post_parent>709</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type>attachment</wp:post_type>
<wp:post_password></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url>http://openconnecto.me/wp-content/uploads/2011/10/calcium_graph.0011.tiff</wp:attachment_url>
<wp:postmeta>
<wp:meta_key>_wp_attached_file</wp:meta_key>
<wp:meta_value><![CDATA[2011/10/calcium_graph.0011.tiff]]></wp:meta_value>