-
Notifications
You must be signed in to change notification settings - Fork 3
/
wordcampjapan.wordpress.2017-10-12.xml
9593 lines (9006 loc) · 679 KB
/
wordcampjapan.wordpress.2017-10-12.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/4.8.2" created="2017-10-12 15:33" -->
<rss version="2.0"
xmlns:excerpt="http://wordpress.org/export/1.2/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.2/"
>
<channel>
<title>WordCamp Japan</title>
<link>http://japan.wordcamp.test</link>
<description>WordPress イベント「WordCamp」の日本語公式サイト</description>
<pubDate>Thu, 12 Oct 2017 15:33:54 +0000</pubDate>
<language>ja</language>
<wp:wxr_version>1.2</wp:wxr_version>
<wp:base_site_url>http://japan.wordcamp.test</wp:base_site_url>
<wp:base_blog_url>http://japan.wordcamp.test</wp:base_blog_url>
<wp:author><wp:author_id>1</wp:author_id><wp:author_login><![CDATA[vccw]]></wp:author_login><wp:author_email><![CDATA[wcj@japan.wordcamp.test]]></wp:author_email><wp:author_display_name><![CDATA[vccw]]></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>2</wp:author_id><wp:author_login><![CDATA[wordcamp]]></wp:author_login><wp:author_email><![CDATA[support@wordcamp.org]]></wp:author_email><wp:author_display_name><![CDATA[WordCamp.org]]></wp:author_display_name><wp:author_first_name><![CDATA[WordCamp.org]]></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><![CDATA[lilyfan]]></wp:author_login><wp:author_email><![CDATA[yuriko-wporg@yuriko.net]]></wp:author_email><wp:author_display_name><![CDATA[IKEDA Yuriko]]></wp:author_display_name><wp:author_first_name><![CDATA[IKEDA]]></wp:author_first_name><wp:author_last_name><![CDATA[Yuriko]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>4</wp:author_id><wp:author_login><![CDATA[Nao]]></wp:author_login><wp:author_email><![CDATA[info@nao-net.com]]></wp:author_email><wp:author_display_name><![CDATA[Naoko Takano]]></wp:author_display_name><wp:author_first_name><![CDATA[Naoko]]></wp:author_first_name><wp:author_last_name><![CDATA[Takano]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>5</wp:author_id><wp:author_login><![CDATA[bren_boss]]></wp:author_login><wp:author_email><![CDATA[nakamoto@bren.jp]]></wp:author_email><wp:author_display_name><![CDATA[bren_boss]]></wp:author_display_name><wp:author_first_name><![CDATA[kenichi]]></wp:author_first_name><wp:author_last_name><![CDATA[nakamoto]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>6</wp:author_id><wp:author_login><![CDATA[nukaga]]></wp:author_login><wp:author_email><![CDATA[nukagajunko@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[Junko Nukaga]]></wp:author_display_name><wp:author_first_name><![CDATA[Junko]]></wp:author_first_name><wp:author_last_name><![CDATA[Nukaga]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>7</wp:author_id><wp:author_login><![CDATA[atachibana]]></wp:author_login><wp:author_email><![CDATA[atachibana@unofficialtokyo.com]]></wp:author_email><wp:author_display_name><![CDATA[Akira Tachibana]]></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>8</wp:author_id><wp:author_login><![CDATA[mayukojpn]]></wp:author_login><wp:author_email><![CDATA[hello@mayuko.me]]></wp:author_email><wp:author_display_name><![CDATA[Mayo Moriyama]]></wp:author_display_name><wp:author_first_name><![CDATA[Mayo]]></wp:author_first_name><wp:author_last_name><![CDATA[Moriyama]]></wp:author_last_name></wp:author>
<wp:author><wp:author_id>9</wp:author_id><wp:author_login><![CDATA[ShinichiN]]></wp:author_login><wp:author_email><![CDATA[shinichi.nishikawa@gmail.com]]></wp:author_email><wp:author_display_name><![CDATA[ShinichiN]]></wp:author_display_name><wp:author_first_name><![CDATA[Shinichi]]></wp:author_first_name><wp:author_last_name><![CDATA[Nishikawa]]></wp:author_last_name></wp:author>
<wp:category>
<wp:term_id>2</wp:term_id>
<wp:category_nicename><![CDATA[announcement]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Announcement]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>3</wp:term_id>
<wp:category_nicename><![CDATA[report]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Report]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>1</wp:term_id>
<wp:category_nicename><![CDATA[uncategorized]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[Uncategorized]]></wp:cat_name>
</wp:category>
<wp:category>
<wp:term_id>4</wp:term_id>
<wp:category_nicename><![CDATA[wordcamp-central-news]]></wp:category_nicename>
<wp:category_parent><![CDATA[]]></wp:category_parent>
<wp:cat_name><![CDATA[WordCamp Central News]]></wp:cat_name>
</wp:category>
<wp:tag>
<wp:term_id>5</wp:term_id>
<wp:tag_slug><![CDATA[automattic]]></wp:tag_slug>
<wp:tag_name><![CDATA[Automattic]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>6</wp:term_id>
<wp:tag_slug><![CDATA[kobe]]></wp:tag_slug>
<wp:tag_name><![CDATA[kobe]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>7</wp:term_id>
<wp:tag_slug><![CDATA[logo]]></wp:tag_slug>
<wp:tag_name><![CDATA[Logo]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>8</wp:term_id>
<wp:tag_slug><![CDATA[matt-mullenweg]]></wp:tag_slug>
<wp:tag_name><![CDATA[Matt Mullenweg]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>9</wp:term_id>
<wp:tag_slug><![CDATA[questionnaire]]></wp:tag_slug>
<wp:tag_name><![CDATA[questionnaire]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>10</wp:term_id>
<wp:tag_slug><![CDATA[report]]></wp:tag_slug>
<wp:tag_name><![CDATA[Report]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>11</wp:term_id>
<wp:tag_slug><![CDATA[slides]]></wp:tag_slug>
<wp:tag_name><![CDATA[Slides]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>12</wp:term_id>
<wp:tag_slug><![CDATA[video]]></wp:tag_slug>
<wp:tag_name><![CDATA[Video]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>13</wp:term_id>
<wp:tag_slug><![CDATA[wckobe]]></wp:tag_slug>
<wp:tag_name><![CDATA[wckobe]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>14</wp:term_id>
<wp:tag_slug><![CDATA[wckobe2011]]></wp:tag_slug>
<wp:tag_name><![CDATA[wckobe2011]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>15</wp:term_id>
<wp:tag_slug><![CDATA[wctokyo2011]]></wp:tag_slug>
<wp:tag_name><![CDATA[wctokyo2011]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>16</wp:term_id>
<wp:tag_slug><![CDATA[wcyokohama]]></wp:tag_slug>
<wp:tag_name><![CDATA[WCYokohama]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>17</wp:term_id>
<wp:tag_slug><![CDATA[wordbench]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordBench]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>18</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>19</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-fukuoka-2010]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Fukuoka 2010]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>20</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-kansai-2009]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Kansai 2009]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>21</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-kobe-2011]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Kobe 2011]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>22</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-kyoto-2009]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Kyoto 2009]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>23</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-tokyo]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Tokyo]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>24</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-tokyo-2008]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Tokyo 2008]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>25</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-tokyo-2009]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Tokyo 2009]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>26</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-tokyo-2011]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Tokyo 2011]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>27</wp:term_id>
<wp:tag_slug><![CDATA[wordcamp-yokohama-2010]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordCamp Yokohama 2010]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>28</wp:term_id>
<wp:tag_slug><![CDATA[wordpress-org]]></wp:tag_slug>
<wp:tag_name><![CDATA[WordPress.org]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>29</wp:term_id>
<wp:tag_slug><![CDATA[%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3]]></wp:tag_slug>
<wp:tag_name><![CDATA[デザイン]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>30</wp:term_id>
<wp:tag_slug><![CDATA[%e3%83%97%e3%83%ad%e3%83%95%e3%82%a3%e3%83%bc%e3%83%ab]]></wp:tag_slug>
<wp:tag_name><![CDATA[プロフィール]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>31</wp:term_id>
<wp:tag_slug><![CDATA[%e3%83%9c%e3%83%a9%e3%83%b3%e3%83%86%e3%82%a3%e3%82%a2]]></wp:tag_slug>
<wp:tag_name><![CDATA[ボランティア]]></wp:tag_name>
</wp:tag>
<wp:tag>
<wp:term_id>32</wp:term_id>
<wp:tag_slug><![CDATA[%e7%bf%bb%e8%a8%b3]]></wp:tag_slug>
<wp:tag_name><![CDATA[翻訳]]></wp:tag_name>
</wp:tag>
<wp:term>
<wp:term_id><![CDATA[2]]></wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[announcement]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Announcement]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[5]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[automattic]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Automattic]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[6]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[kobe]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[kobe]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[7]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[logo]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Logo]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[33]]></wp:term_id>
<wp:term_taxonomy><![CDATA[nav_menu]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[main-navigation]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[main navigation]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[8]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[matt-mullenweg]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Matt Mullenweg]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[9]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[questionnaire]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[questionnaire]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[3]]></wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[report]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Report]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[10]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[report]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Report]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[11]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[slides]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Slides]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[1]]></wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[uncategorized]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Uncategorized]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[12]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[video]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[Video]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[13]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wckobe]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[wckobe]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[14]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wckobe2011]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[wckobe2011]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[15]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wctokyo2011]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[wctokyo2011]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[16]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wcyokohama]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WCYokohama]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[17]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordbench]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordBench]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[18]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[4]]></wp:term_id>
<wp:term_taxonomy><![CDATA[category]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-central-news]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Central News]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[19]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-fukuoka-2010]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Fukuoka 2010]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[20]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-kansai-2009]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Kansai 2009]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[21]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-kobe-2011]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Kobe 2011]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[22]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-kyoto-2009]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Kyoto 2009]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[23]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-tokyo]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Tokyo]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[24]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-tokyo-2008]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Tokyo 2008]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[25]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-tokyo-2009]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Tokyo 2009]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[26]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-tokyo-2011]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Tokyo 2011]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[27]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordcamp-yokohama-2010]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordCamp Yokohama 2010]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[28]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[wordpress-org]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[WordPress.org]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[29]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[%e3%83%87%e3%82%b6%e3%82%a4%e3%83%b3]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[デザイン]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[30]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[%e3%83%97%e3%83%ad%e3%83%95%e3%82%a3%e3%83%bc%e3%83%ab]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[プロフィール]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[31]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[%e3%83%9c%e3%83%a9%e3%83%b3%e3%83%86%e3%82%a3%e3%82%a2]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[ボランティア]]></wp:term_name>
</wp:term>
<wp:term>
<wp:term_id><![CDATA[32]]></wp:term_id>
<wp:term_taxonomy><![CDATA[post_tag]]></wp:term_taxonomy>
<wp:term_slug><![CDATA[%e7%bf%bb%e8%a8%b3]]></wp:term_slug>
<wp:term_parent><![CDATA[]]></wp:term_parent>
<wp:term_name><![CDATA[翻訳]]></wp:term_name>
</wp:term>
<wp:term><wp:term_id>33</wp:term_id><wp:term_taxonomy>nav_menu</wp:term_taxonomy><wp:term_slug><![CDATA[main-navigation]]></wp:term_slug><wp:term_name><![CDATA[main navigation]]></wp:term_name>
</wp:term>
<generator>https://wordpress.org/?v=4.8.2</generator>
<item>
<title>WordCamp Tokyo & Kansai 2009</title>
<link>http://japan.wordcamp.test/2009/03/23/event-banner-graphics/wc09-smallbanner/</link>
<pubDate>Mon, 23 Mar 2009 01:45:05 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/03/wc09-smallbanner-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[バナー・東京&関西 (250 x 100)]]></excerpt:encoded>
<wp:post_id>340</wp:post_id>
<wp:post_date><![CDATA[2009-03-23 10:45:05]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-03-23 01:45:05]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wc09-smallbanner]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>343</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/03/wc09-smallbanner-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/03/wc09-smallbanner-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:250;s:6:"height";i:100;s:4:"file";s:30:"2009/03/wc09-smallbanner-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"wc09-smallbanner-1-150x100.png";s:5:"width";i:150;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:30:"wc09-smallbanner-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp 関西 2009 ボタン</title>
<link>http://japan.wordcamp.test/2009/03/23/event-banner-graphics/wck09-smallbutton/</link>
<pubDate>Mon, 23 Mar 2009 01:45:06 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/03/wck09-smallbutton-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[ボタン・関西 (180 x 150)]]></excerpt:encoded>
<wp:post_id>341</wp:post_id>
<wp:post_date><![CDATA[2009-03-23 10:45:06]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-03-23 01:45:06]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wck09-smallbutton]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>343</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/03/wck09-smallbutton-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/03/wck09-smallbutton-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:180;s:6:"height";i:150;s:4:"file";s:31:"2009/03/wck09-smallbutton-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"wck09-smallbutton-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:31:"wck09-smallbutton-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp Tokyo 2009 ボタン</title>
<link>http://japan.wordcamp.test/2009/03/23/event-banner-graphics/wct09-smallbutton/</link>
<pubDate>Mon, 23 Mar 2009 01:45:07 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/03/wct09-smallbutton-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[ボタン・東京 (180 x 150)]]></excerpt:encoded>
<wp:post_id>342</wp:post_id>
<wp:post_date><![CDATA[2009-03-23 10:45:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-03-23 01:45:07]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wct09-smallbutton]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>343</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/03/wct09-smallbutton-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/03/wct09-smallbutton-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:180;s:6:"height";i:150;s:4:"file";s:31:"2009/03/wct09-smallbutton-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"wct09-smallbutton-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:31:"wct09-smallbutton-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp 関西懇親会 Matt Mullenweg スピーチ</title>
<link>http://japan.wordcamp.test/2009/04/11/wordcamp-kansai-2009-report/cimg0029/</link>
<pubDate>Sat, 11 Apr 2009 01:51:01 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/cimg0029-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>479</wp:post_id>
<wp:post_date><![CDATA[2009-04-11 10:51:01]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-11 01:51:01]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[cimg0029]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>474</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/cimg0029-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/cimg0029-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1600;s:6:"height";i:1200;s:4:"file";s:22:"2009/04/cimg0029-1.jpg";s:5:"sizes";a:6:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"cimg0029-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:22:"cimg0029-1-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"cimg0029-1-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"cimg0029-1-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:30:"twentyseventeen-featured-image";a:4:{s:4:"file";s:24:"cimg0029-1-1600x1200.jpg";s:5:"width";i:1600;s:6:"height";i:1200;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:22:"cimg0029-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"4";s:6:"credit";s:0:"";s:6:"camera";s:6:"EX-Z85";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1239393185";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"10.4";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:5:"0.125";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp 関西懇親会 Matt Mullenweg スピーチ</title>
<link>http://japan.wordcamp.test/2009/04/11/wordcamp-kansai-2009-report/cimg00291/</link>
<pubDate>Sat, 11 Apr 2009 02:18:53 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/cimg00291-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>483</wp:post_id>
<wp:post_date><![CDATA[2009-04-11 11:18:53]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-11 02:18:53]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[cimg00291]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>474</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/cimg00291-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/cimg00291-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1341;s:6:"height";i:1006;s:4:"file";s:23:"2009/04/cimg00291-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"cimg00291-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:23:"cimg00291-1-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"cimg00291-1-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"cimg00291-1-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:23:"cimg00291-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"4";s:6:"credit";s:0:"";s:6:"camera";s:6:"EX-Z85";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1239393185";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"10.4";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:5:"0.125";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>090412_10470001</title>
<link>http://japan.wordcamp.test/2009/04/14/wordcamp-tokyo-2009-report/090412_10470001/</link>
<pubDate>Tue, 14 Apr 2009 04:06:18 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/090412_10470001-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Matt の基調講演がありました]]></excerpt:encoded>
<wp:post_id>508</wp:post_id>
<wp:post_date><![CDATA[2009-04-14 13:06:18]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-14 04:06:18]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[090412_10470001]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>498</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/090412_10470001-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/090412_10470001-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:240;s:6:"height";i:320;s:4:"file";s:29:"2009/04/090412_10470001-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"090412_10470001-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"090412_10470001-1-225x300.jpg";s:5:"width";i:225;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:29:"090412_10470001-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:5:"E03CA";s:7:"caption";s:16:"090412_1047~0001";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:7:"0.13063";s:5:"title";s:16:"090412_1047~0001";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>matt</title>
<link>http://japan.wordcamp.test/2009/04/14/wordcamp-tokyo-2009-report/matt/</link>
<pubDate>Tue, 14 Apr 2009 04:26:52 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/matt-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[Matt基調講演のタイトルには早速日本の桜が。]]></excerpt:encoded>
<wp:post_id>514</wp:post_id>
<wp:post_date><![CDATA[2009-04-14 13:26:52]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-14 04:26:52]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[matt]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>498</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/matt-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/matt-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1024;s:6:"height";i:685;s:4:"file";s:18:"2009/04/matt-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"matt-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"matt-1-300x201.jpg";s:5:"width";i:300;s:6:"height";i:201;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"matt-1-768x514.jpg";s:5:"width";i:768;s:6:"height";i:514;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"matt-1-1024x685.jpg";s:5:"width";i:1024;s:6:"height";i:685;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:18:"matt-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>yarpp-wordcamp</title>
<link>http://japan.wordcamp.test/2009/04/23/2009-slides/yarpp-wordcamp/</link>
<pubDate>Sun, 19 Apr 2009 04:12:38 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/yarpp-wordcamp-1.pdf</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>569</wp:post_id>
<wp:post_date><![CDATA[2009-04-19 13:12:38]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-19 04:12:38]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[yarpp-wordcamp]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>527</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/yarpp-wordcamp-1.pdf]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/yarpp-wordcamp-1.pdf]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:1:{s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"yarpp-wordcamp-1-pdf-150x113.jpg";s:5:"width";i:150;s:6:"height";i:113;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:32:"yarpp-wordcamp-1-pdf-300x225.jpg";s:5:"width";i:300;s:6:"height";i:225;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"yarpp-wordcamp-1-pdf-1024x768.jpg";s:5:"width";i:1024;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:4:"full";a:4:{s:4:"file";s:24:"yarpp-wordcamp-1-pdf.jpg";s:5:"width";i:1820;s:6:"height";i:1365;s:9:"mime-type";s:10:"image/jpeg";}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordBench ロゴ</title>
<link>http://japan.wordcamp.test/2009/04/19/wordbench/wordbench-logo/</link>
<pubDate>Sun, 19 Apr 2009 12:03:07 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/04/wordbench-logo-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>577</wp:post_id>
<wp:post_date><![CDATA[2009-04-19 21:03:07]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-04-19 12:03:07]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wordbench-logo]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>168</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/04/wordbench-logo-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/04/wordbench-logo-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:253;s:6:"height";i:71;s:4:"file";s:28:"2009/04/wordbench-logo-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"wordbench-logo-1-150x71.png";s:5:"width";i:150;s:6:"height";i:71;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:27:"wordbench-logo-1-100x71.png";s:5:"width";i:100;s:6:"height";i:71;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>twitter</title>
<link>http://japan.wordcamp.test/?attachment_id=647</link>
<pubDate>Tue, 30 Jun 2009 04:50:33 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/06/twitter-1.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>647</wp:post_id>
<wp:post_date><![CDATA[2009-06-30 13:50:33]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-06-30 04:50:33]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[twitter]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>646</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/06/twitter-1.gif]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/06/twitter-1.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:190;s:6:"height";i:56;s:4:"file";s:21:"2009/06/twitter-1.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"twitter-1-150x56.gif";s:5:"width";i:150;s:6:"height";i:56;s:9:"mime-type";s:9:"image/gif";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:20:"twitter-1-100x56.gif";s:5:"width";i:100;s:6:"height";i:56;s:9:"mime-type";s:9:"image/gif";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>calendar</title>
<link>http://japan.wordcamp.test/?attachment_id=648</link>
<pubDate>Tue, 30 Jun 2009 04:50:34 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/06/calendar-1.gif</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>648</wp:post_id>
<wp:post_date><![CDATA[2009-06-30 13:50:34]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-06-30 04:50:34]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[calendar]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>646</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/06/calendar-1.gif]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/06/calendar-1.gif]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:190;s:6:"height";i:56;s:4:"file";s:22:"2009/06/calendar-1.gif";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"calendar-1-150x56.gif";s:5:"width";i:150;s:6:"height";i:56;s:9:"mime-type";s:9:"image/gif";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:21:"calendar-1-100x56.gif";s:5:"width";i:100;s:6:"height";i:56;s:9:"mime-type";s:9:"image/gif";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp Kyoto バナー</title>
<link>http://japan.wordcamp.test/2009/09/16/kyoto-2009-announcement/logo_250_1001/</link>
<pubDate>Wed, 16 Sep 2009 01:31:06 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2009/09/logo_250_1001-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>658</wp:post_id>
<wp:post_date><![CDATA[2009-09-16 10:31:06]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-09-16 01:31:06]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[logo_250_1001]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>657</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2009/09/logo_250_1001-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2009/09/logo_250_1001-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:250;s:6:"height";i:100;s:4:"file";s:27:"2009/09/logo_250_1001-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"logo_250_1001-1-150x100.png";s:5:"width";i:150;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:27:"logo_250_1001-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp Kyoto ロゴ</title>
<link>http://japan.wordcamp.test/home/logo_180_1501/</link>
<pubDate>Wed, 16 Sep 2009 01:40:35 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2008/09/logo_180_1501-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>664</wp:post_id>
<wp:post_date><![CDATA[2009-09-16 10:40:35]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-09-16 01:40:35]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[logo_180_1501]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>4</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2008/09/logo_180_1501-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2008/09/logo_180_1501-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:180;s:6:"height";i:150;s:4:"file";s:27:"2008/09/logo_180_1501-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"logo_180_1501-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:27:"logo_180_1501-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>logo_180_150_21</title>
<link>http://japan.wordcamp.test/home/logo_180_150_21/</link>
<pubDate>Wed, 16 Sep 2009 01:55:38 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2008/09/logo_180_150_21-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>674</wp:post_id>
<wp:post_date><![CDATA[2009-09-16 10:55:38]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2009-09-16 01:55:38]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[logo_180_150_21]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>4</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2008/09/logo_180_150_21-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2008/09/logo_180_150_21-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:180;s:6:"height";i:150;s:4:"file";s:29:"2008/09/logo_180_150_21-1.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"logo_180_150_21-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:29:"logo_180_150_21-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>WordCamp Fukuoka 2010 サイト</title>
<link>http://japan.wordcamp.test/2010/01/25/wordcamp-fukuoka-2010-registration/wordcamp-fukuoka-site/</link>
<pubDate>Mon, 25 Jan 2010 04:51:50 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2010/01/wordcamp-fukuoka-site-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>687</wp:post_id>
<wp:post_date><![CDATA[2010-01-25 13:51:50]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2010-01-25 04:51:50]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wordcamp-fukuoka-site]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>684</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2010/01/wordcamp-fukuoka-site-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2010/01/wordcamp-fukuoka-site-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:983;s:6:"height";i:531;s:4:"file";s:35:"2010/01/wordcamp-fukuoka-site-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"wordcamp-fukuoka-site-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:35:"wordcamp-fukuoka-site-1-300x162.png";s:5:"width";i:300;s:6:"height";i:162;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:35:"wordcamp-fukuoka-site-1-768x415.png";s:5:"width";i:768;s:6:"height";i:415;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:35:"wordcamp-fukuoka-site-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wcyokohama2010-preopen</title>
<link>http://japan.wordcamp.test/2010/03/08/yokohama-site-preopen/wcyokohama2010-preopen/</link>
<pubDate>Mon, 08 Mar 2010 00:04:14 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2010/03/wcyokohama2010-preopen-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>712</wp:post_id>
<wp:post_date><![CDATA[2010-03-08 09:04:14]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2010-03-08 00:04:14]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wcyokohama2010-preopen]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>711</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2010/03/wcyokohama2010-preopen-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2010/03/wcyokohama2010-preopen-1.png]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:1170;s:6:"height";i:659;s:4:"file";s:36:"2010/03/wcyokohama2010-preopen-1.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"wcyokohama2010-preopen-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:36:"wcyokohama2010-preopen-1-300x169.png";s:5:"width";i:300;s:6:"height";i:169;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:36:"wcyokohama2010-preopen-1-768x433.png";s:5:"width";i:768;s:6:"height";i:433;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:37:"wcyokohama2010-preopen-1-1024x577.png";s:5:"width";i:1024;s:6:"height";i:577;s:9:"mime-type";s:9:"image/png";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:36:"wcyokohama2010-preopen-1-100x100.png";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>ja.WordPress.org ショーケース</title>
<link>http://japan.wordcamp.test/ja-showcase/</link>
<pubDate>Mon, 29 Mar 2010 12:53:47 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2010/03/ja-showcase-1.jpg</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>720</wp:post_id>
<wp:post_date><![CDATA[2010-03-29 21:53:47]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2010-03-29 12:53:47]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[ja-showcase]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>0</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2010/03/ja-showcase-1.jpg]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2010/03/ja-showcase-1.jpg]]></wp:meta_value>
</wp:postmeta>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attachment_metadata]]></wp:meta_key>
<wp:meta_value><![CDATA[a:5:{s:5:"width";i:613;s:6:"height";i:231;s:4:"file";s:25:"2010/03/ja-showcase-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"ja-showcase-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"ja-showcase-1-300x113.jpg";s:5:"width";i:300;s:6:"height";i:113;s:9:"mime-type";s:10:"image/jpeg";}s:32:"twentyseventeen-thumbnail-avatar";a:4:{s:4:"file";s:25:"ja-showcase-1-100x100.jpg";s:5:"width";i:100;s:6:"height";i:100;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}]]></wp:meta_value>
</wp:postmeta>
</item>
<item>
<title>wcyokohama_logo_blue</title>
<link>http://japan.wordcamp.test/2010/04/08/yokohama-2010-logo/wcyokohama_logo_blue/</link>
<pubDate>Wed, 07 Apr 2010 15:05:59 +0000</pubDate>
<dc:creator><![CDATA[wordcamp]]></dc:creator>
<guid isPermaLink="false">http://japan.wordcamp.test/wp-content/uploads/2010/04/wcyokohama_logo_blue-1.png</guid>
<description></description>
<content:encoded><![CDATA[]]></content:encoded>
<excerpt:encoded><![CDATA[]]></excerpt:encoded>
<wp:post_id>723</wp:post_id>
<wp:post_date><![CDATA[2010-04-08 00:05:59]]></wp:post_date>
<wp:post_date_gmt><![CDATA[2010-04-07 15:05:59]]></wp:post_date_gmt>
<wp:comment_status><![CDATA[open]]></wp:comment_status>
<wp:ping_status><![CDATA[open]]></wp:ping_status>
<wp:post_name><![CDATA[wcyokohama_logo_blue]]></wp:post_name>
<wp:status><![CDATA[inherit]]></wp:status>
<wp:post_parent>721</wp:post_parent>
<wp:menu_order>0</wp:menu_order>
<wp:post_type><![CDATA[attachment]]></wp:post_type>
<wp:post_password><![CDATA[]]></wp:post_password>
<wp:is_sticky>0</wp:is_sticky>
<wp:attachment_url><![CDATA[http://japan.wordcamp.test/wp-content/uploads/2010/04/wcyokohama_logo_blue-1.png]]></wp:attachment_url>
<wp:postmeta>
<wp:meta_key><![CDATA[_wp_attached_file]]></wp:meta_key>
<wp:meta_value><![CDATA[2010/04/wcyokohama_logo_blue-1.png]]></wp:meta_value>
</wp:postmeta>