forked from Restore4thSF/restore4thsf.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemapseo.xml
executable file
·1556 lines (1555 loc) · 58.6 KB
/
sitemapseo.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"?>
<!-- Sitemap dynamically generated by All in One SEO Pack 2.0.3.1 by Michael Torbert of Semper Fi Web Design on Fri, 29 Nov 2013 08:48:12 UTC -->
<?xml-stylesheet type="text/xsl" href="http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/wp-content/plugins/all-in-one-seo-pack/sitemap.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<lastmod>2013-11-27T06:41:55Z</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/notes-from-2013-11-23-open-strategy-meeting/</loc>
</url>
<url>
<lastmod>2013-11-29T00:44:20Z</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/communication-outreach-organizational-strategy-meeting/</loc>
</url>
<url>
<lastmod>2013-11-21T11:22:01Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/fourth-open-strategy-meeting/</loc>
</url>
<url>
<lastmod>2013-11-21T00:07:04Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/senator-feinstein/</loc>
</url>
<url>
<lastmod>2013-11-19T19:04:09Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/oakland-city-council-meeting/</loc>
</url>
<url>
<lastmod>2013-11-19T19:04:09Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/oakland-city-hall/</loc>
</url>
<url>
<lastmod>2013-11-21T10:50:52Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/nsa-comedy-night-by-ethics-in-tech/</loc>
</url>
<url>
<lastmod>2013-11-19T14:13:28Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/internet-archive/</loc>
</url>
<url>
<lastmod>2013-11-19T14:02:02Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/aclu-mid-peninsula-chapters-annual-dinner-meeting-government-surveillance-and-civil-liberties/</loc>
</url>
<url>
<lastmod>2013-11-19T13:53:56Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/michaels-at-shoreline-restaurant/</loc>
</url>
<url>
<lastmod>2013-11-19T13:47:52Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/bill-of-rights-day/</loc>
</url>
<url>
<lastmod>2013-11-19T18:09:27Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/online-security-in-the-post-snowden-era-lessons-on-encryption/</loc>
</url>
<url>
<lastmod>2013-11-19T13:46:52Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/kqed/</loc>
</url>
<url>
<lastmod>2013-11-19T13:43:44Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/stop-the-domain-awareness-center-rally/</loc>
</url>
<url>
<lastmod>2013-11-19T13:43:44Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/oscar-grant-plaza-amphitheater/</loc>
</url>
<url>
<lastmod>2013-11-19T18:34:35Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/about/gpg-key/</loc>
</url>
<url>
<lastmod>2013-11-14T20:12:49Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/shareholder-activism-instruction-manual/</loc>
</url>
<url>
<lastmod>2013-11-11T22:07:17Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/new-restore-the-fourth-sf-hats/</loc>
</url>
<url>
<lastmod>2013-11-11T16:57:45Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/san-francisco-state-university-downtown-campus-room-557-5th-floor/</loc>
</url>
<url>
<lastmod>2013-11-14T18:37:06Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/roundup-for-hackathon-participants/</loc>
</url>
<url>
<lastmod>2013-11-16T09:42:44Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/unitarian-universalists-of-los-angeles-v-nsa-case-management-hearing/</loc>
</url>
<url>
<lastmod>2013-11-08T17:02:48Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/our-public-key/</loc>
</url>
<url>
<lastmod>2013-11-16T09:15:30Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-rally-video/</loc>
</url>
<url>
<lastmod>2013-11-14T18:33:03Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/usa-freedom-act/</loc>
</url>
<url>
<lastmod>2013-11-14T18:32:21Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/</loc>
</url>
<url>
<lastmod>2013-10-22T14:53:32Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/aclu/</loc>
</url>
<url>
<lastmod>2013-11-20T23:57:34Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/prism-8-shareholder-activism/</loc>
</url>
<url>
<lastmod>2013-10-18T11:23:06Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/art-party-v-nsa/</loc>
</url>
<url>
<lastmod>2013-10-18T11:23:06Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/bridge-storage-and-art-space/</loc>
</url>
<url>
<lastmod>2013-10-15T16:42:53Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/eff-happy-hour/</loc>
</url>
<url>
<lastmod>2013-10-15T16:42:53Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/science-club/</loc>
</url>
<url>
<lastmod>2013-11-06T08:05:55Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/under-surveillance-and-overexposed-the-nsa-the-law-and-what-you-can-do-aclu/</loc>
</url>
<url>
<lastmod>2013-10-15T16:38:01Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/silicon-valley-community-foundation/</loc>
</url>
<url>
<lastmod>2013-11-16T09:14:07Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/rick-perry-is-more-committed-to-4th-amendment-rights-than-jerry-brown/</loc>
</url>
<url>
<lastmod>2013-11-16T09:14:18Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/brief-overview-of-federal-laws-regarding-search-and-seizure-of-electronic-communications/</loc>
</url>
<url>
<lastmod>2013-10-12T19:49:30Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/ro-khanna-message-about-the-nsa-surveillance-program/</loc>
</url>
<url>
<lastmod>2013-11-16T20:38:45Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/donations/</loc>
</url>
<url>
<lastmod>2013-10-10T15:33:58Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/amtrak-thruway-bus-5006/</loc>
</url>
<url>
<lastmod>2013-10-11T15:04:55Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/freedom-train-to-rally-against-mass-spying/</loc>
</url>
<url>
<lastmod>2013-10-08T19:11:16Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/columbus-circle/</loc>
</url>
<url>
<lastmod>2013-10-03T23:00:33Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/sb467/</loc>
</url>
<url>
<lastmod>2013-10-02T13:13:27Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/restore-the-fourth-bay-area-penninsula-chapter-meeting/</loc>
</url>
<url>
<lastmod>2013-10-02T13:07:47Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/hacker-dojo/</loc>
</url>
<url>
<lastmod>2013-10-01T21:25:33Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/john-mcafee-d-central-and-the-future-of-darknets/</loc>
</url>
<url>
<lastmod>2013-11-16T09:14:41Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/three-months-later-have-we-made-progress/</loc>
</url>
<url>
<lastmod>2013-11-13T13:05:02Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/on-the-fisa-senate-intelligence-committee-hearing/</loc>
</url>
<url>
<lastmod>2013-10-26T23:13:39Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/author-posts/</loc>
</url>
<url>
<lastmod>2013-10-22T15:02:33Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/rally-against-mass-spying-copresence-event/</loc>
</url>
<url>
<lastmod>2013-09-29T04:43:45Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/somewhere-in-the-bay-area/</loc>
</url>
<url>
<lastmod>2013-10-05T02:36:58Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/meeting-for-actual-presence-and-copresence-at-the-1026-rally/</loc>
</url>
<url>
<lastmod>2013-11-01T16:43:32Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/first-unitarian-church-los-angeles-v-nsa-case-management-hearing/</loc>
</url>
<url>
<lastmod>2013-09-29T04:45:58Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/sudo-room-encryption-workshop/</loc>
</url>
<url>
<lastmod>2013-11-16T09:14:54Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/jewel-v-nsa-case-management-hearing/</loc>
</url>
<url>
<lastmod>2013-11-16T09:43:08Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/rally-for-privacy-awareness-1984-on-84-restore-the-fourth-sf-videos/</loc>
</url>
<url>
<lastmod>2013-09-26T22:38:15Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/richland-and-mission/</loc>
</url>
<url>
<lastmod>2013-09-26T22:47:06Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/att-community-outreach-and-construction-and-engineering-teams/</loc>
</url>
<url>
<lastmod>2013-09-26T22:25:56Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexcontentslider/small-height-banners-2/</loc>
</url>
<url>
<lastmod>2013-09-26T22:22:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexcontentslider/small-height-banners/</loc>
</url>
<url>
<lastmod>2013-09-26T21:49:20Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexcontentslider/default-2/</loc>
</url>
<url>
<lastmod>2013-09-26T21:43:11Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexcontentslider/default/</loc>
</url>
<url>
<lastmod>2013-09-26T15:46:48Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/senate-select-committee-on-intelligence-hearing/</loc>
</url>
<url>
<lastmod>2013-09-26T02:18:51Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/211-hart-senate-office-building/</loc>
</url>
<url>
<lastmod>2013-10-01T17:49:59Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/sitemap-stuff/</loc>
</url>
<url>
<lastmod>2013-09-24T22:31:06Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/tba-2/</loc>
</url>
<url>
<lastmod>2013-09-24T22:31:02Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/tba/</loc>
</url>
<url>
<lastmod>2013-11-11T17:10:12Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/baythreat-2013/</loc>
</url>
<url>
<lastmod>2013-11-05T13:46:40Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/aaron-swartz-memorial-hackathon/</loc>
</url>
<url>
<lastmod>2013-09-24T20:27:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/unknown/</loc>
</url>
<url>
<lastmod>2013-09-24T20:27:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/silicon-valley-rightscon-2014/</loc>
</url>
<url>
<lastmod>2013-09-24T20:12:31Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/sudo-room-wifi-mesh-general-meeting/</loc>
</url>
<url>
<lastmod>2013-09-24T20:09:41Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/techno-activism-third-mondays-meetup/</loc>
</url>
<url>
<lastmod>2013-09-24T20:09:41Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/electronic-frontier-foundation/</loc>
</url>
<url>
<lastmod>2013-09-24T21:55:54Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/could-it-happen-here-little-brother-in-san-francisco-2013/</loc>
</url>
<url>
<lastmod>2013-09-24T20:06:55Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/main-library/</loc>
</url>
<url>
<lastmod>2013-09-24T20:02:09Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/cnet-headquarters/</loc>
</url>
<url>
<lastmod>2013-09-24T20:02:09Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/inet-san-francisco-panel-public-policy-and-the-fourth-amendment/</loc>
</url>
<url>
<lastmod>2013-09-24T05:22:38Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/san-francisco-meshnet-project-6/</loc>
</url>
<url>
<lastmod>2013-09-22T20:50:38Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/united-states-district-court-northern-district-of-california/</loc>
</url>
<url>
<lastmod>2013-09-24T05:16:23Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/unitarian-universalists-v-nsa-case-management-hearing/</loc>
</url>
<url>
<lastmod>2013-10-26T23:16:59Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/leadership/</loc>
</url>
<url>
<lastmod>2013-09-24T05:27:19Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/nsa-surveillance-what-we-know-what-to-do-about-it/</loc>
</url>
<url>
<lastmod>2013-09-20T22:53:27Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/cato-institute/</loc>
</url>
<url>
<lastmod>2013-11-13T12:26:39Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/san-francisco-board-of-supervisors-resolution-by-restore-the-fourth-sf-bay-area-and-coalition-members/</loc>
</url>
<url>
<lastmod>2013-09-26T22:27:11Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/codetesting/</loc>
</url>
<url>
<lastmod>2013-09-20T00:10:14Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/representative-mike-thompson/</loc>
</url>
<url>
<lastmod>2013-09-19T22:54:23Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/sudo-room/</loc>
</url>
<url>
<lastmod>2013-09-24T05:35:36Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/san-francisco-meshnet-project-3/</loc>
</url>
<url>
<lastmod>2013-09-19T23:39:31Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/san-francisco-meshnet-project/</loc>
</url>
<url>
<lastmod>2013-09-19T22:18:56Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/noisebridge-3/</loc>
</url>
<url>
<lastmod>2013-09-19T21:51:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/noisebridge-2/</loc>
</url>
<url>
<lastmod>2013-09-19T23:39:31Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/gpg-encryption-worksho/</loc>
</url>
<url>
<lastmod>2013-09-19T23:33:07Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/noisebridge/</loc>
</url>
<url>
<lastmod>2013-09-20T00:01:30Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/sf-project-patriot-event/</loc>
</url>
<url>
<lastmod>2013-09-19T07:53:22Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/peets-coffee-and-tea/</loc>
</url>
<url>
<lastmod>2013-09-20T00:01:23Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/jewel-v-nsa-meeting/</loc>
</url>
<url>
<lastmod>2013-09-19T06:08:04Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/celtic-cafe/</loc>
</url>
<url>
<lastmod>2013-10-18T11:14:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/stop-watching-us-rally-against-mass-spying/</loc>
</url>
<url>
<lastmod>2013-09-19T05:50:22Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/tbd/</loc>
</url>
<url>
<lastmod>2013-09-24T21:56:32Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/institute-for-the-future-co-presence-online-offline-event/</loc>
</url>
<url>
<lastmod>2013-09-19T05:47:02Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/institute-for-the-future/</loc>
</url>
<url>
<lastmod>2013-09-19T23:39:31Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/universal-encrpytion-step-1-planning-meeting/</loc>
</url>
<url>
<lastmod>2013-09-24T05:50:58Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/third-open-strategy-meeting/</loc>
</url>
<url>
<lastmod>2013-09-19T05:31:34Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/sudoroom/</loc>
</url>
<url>
<lastmod>2013-09-20T00:01:53Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/san-francisco-resolution-project/</loc>
</url>
<url>
<lastmod>2013-09-19T03:13:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/test-page/</loc>
</url>
<url>
<lastmod>2013-09-25T14:32:58Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/ironing-board-democracy-letter-writing-campaign/</loc>
</url>
<url>
<lastmod>2013-09-19T07:01:52Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/visiting-pelosis-office/</loc>
</url>
<url>
<lastmod>2013-09-18T22:41:22Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/technoactivism-third-mondays-at-the-eff/</loc>
</url>
<url>
<lastmod>2013-09-24T21:05:04Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/stopwatching-us-rally-in-dc-on-october-26th/</loc>
</url>
<url>
<lastmod>2013-09-18T22:51:01Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/the-city-council-project/</loc>
</url>
<url>
<lastmod>2013-09-16T23:07:24Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/board-of-supervisors-meeting/</loc>
</url>
<url>
<lastmod>2013-09-16T23:07:24Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/city-hall/</loc>
</url>
<url>
<lastmod>2013-09-16T22:58:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/constitution-day-panel/</loc>
</url>
<url>
<lastmod>2013-09-16T22:58:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/san-francisco-state-university/</loc>
</url>
<url>
<lastmod>2013-09-19T23:23:21Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/representative-nancy-pelosi/</loc>
</url>
<url>
<lastmod>2013-09-18T22:53:46Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/san-francisco-restore-the-fourth-protest-video-documentary-july-4-2013/</loc>
</url>
<url>
<lastmod>2013-09-20T00:26:02Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/encryption/</loc>
</url>
<url>
<lastmod>2013-09-20T18:08:12Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/city-council-resolution/</loc>
</url>
<url>
<lastmod>2013-09-19T23:39:08Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/rally-for-privacy-awareness-august-4th/</loc>
</url>
<url>
<lastmod>2013-11-05T14:11:28Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.5</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/about/</loc>
</url>
<url>
<lastmod>2013-09-20T19:19:45Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/projects/</loc>
</url>
<url>
<lastmod>2013-09-19T23:40:48Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/july-4th-protest/</loc>
</url>
<url>
<lastmod>2013-09-18T03:41:31Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/website-goes-live/</loc>
</url>
<url>
<lastmod>2013-10-26T23:15:34Z</lastmod>
<changefreq>daily</changefreq>
<priority>0.9</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/blog/</loc>
</url>
<url>
<lastmod>2013-09-15T15:31:28Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/restore-the-fourth-san-francisco-strategy-meeting/</loc>
</url>
<url>
<lastmod>2013-09-15T15:29:36Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/san-francisco-restore-the-fourth-protest/</loc>
</url>
<url>
<lastmod>2013-09-15T15:29:36Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/un-plaza/</loc>
</url>
<url>
<lastmod>2013-09-19T03:23:19Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/weekly-resolution-workgroup/</loc>
</url>
<url>
<lastmod>2013-09-19T03:18:05Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/locations/wichcraft/</loc>
</url>
<url>
<lastmod>2013-10-26T23:15:57Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/</loc>
</url>
<url>
<lastmod>2013-09-15T06:34:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/locations/</loc>
</url>
<url>
<lastmod>2013-09-15T06:34:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/categories/</loc>
</url>
<url>
<lastmod>2013-09-15T06:34:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/tags/</loc>
</url>
<url>
<lastmod>2013-09-15T06:34:50Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/my-bookings/</loc>
</url>
<url>
<lastmod>2013-09-15T06:26:00Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/events/witchcraft/</loc>
</url>
<url>
<lastmod>2013-09-27T01:40:07Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/logopages/</loc>
</url>
<url>
<lastmod>2013-09-18T22:55:48Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/encryption-tips-text-messages/</loc>
</url>
<url>
<lastmod>2013-09-18T23:01:21Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/encryption-tips-email/</loc>
</url>
<url>
<lastmod>2013-09-20T18:32:30Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/lightning-talks-at-the-public-school/</loc>
</url>
<url>
<lastmod>2013-09-18T23:18:32Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/meeting-with-mike-thompnons-staff/</loc>
</url>
<url>
<lastmod>2013-11-16T21:01:03Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/mailinglist/</loc>
</url>
<url>
<lastmod>2013-10-26T22:56:11Z</lastmod>
<changefreq>monthly</changefreq>
<priority>1.0</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/</loc>
</url>
<url>
<lastmod>2013-08-18T16:39:08Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexnivoslider/default-2/</loc>
</url>
<url>
<lastmod>2013-08-18T16:38:08Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexnivoslider/default-3/</loc>
</url>
<url>
<lastmod>2013-08-18T16:31:33Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/pexnivoslider/default/</loc>
</url>
<url>
<lastmod>2013-09-18T23:20:42Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/second-open-strategy-meeting-minutes/</loc>
</url>
<url>
<lastmod>2013-09-19T23:37:55Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/press-statement-for-1984-day/</loc>
</url>
<url>
<lastmod>2013-09-18T23:25:38Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/first-open-strategy-meeting-notes-2/</loc>
</url>
<url>
<lastmod>2013-09-18T03:41:32Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/founding-of-restore-the-fourth-sf/</loc>
</url>
<url>
<lastmod>2013-11-21T00:06:58Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.7</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/senator-feinstein/no-public-access-sign-575px/</loc>
</url>
<url>
<lastmod>2013-11-14T20:33:58Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/portfolio/prism-8-shareholder-activism/nsa-15lol/</loc>
</url>
<url>
<lastmod>2013-11-11T21:56:19Z</lastmod>
<changefreq>weekly</changefreq>
<priority>0.6</priority>
<loc>/bylse0acuaaxjom/</loc>
</url>
<url>
<lastmod>2013-10-26T18:30:18Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-29/</loc>
</url>
<url>
<lastmod>2013-10-26T18:29:53Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-28/</loc>
</url>
<url>
<lastmod>2013-10-26T18:29:25Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-27/</loc>
</url>
<url>
<lastmod>2013-10-26T18:28:56Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-26/</loc>
</url>
<url>
<lastmod>2013-10-26T18:28:30Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-25/</loc>
</url>
<url>
<lastmod>2013-10-26T18:28:03Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-24/</loc>
</url>
<url>
<lastmod>2013-10-26T18:27:40Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-23/</loc>
</url>
<url>
<lastmod>2013-10-26T18:27:19Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-22/</loc>
</url>
<url>
<lastmod>2013-10-26T18:26:57Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-21/</loc>
</url>
<url>
<lastmod>2013-10-26T18:26:28Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-20/</loc>
</url>
<url>
<lastmod>2013-10-26T18:26:04Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-19/</loc>
</url>
<url>
<lastmod>2013-10-26T18:25:27Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-18/</loc>
</url>
<url>
<lastmod>2013-10-26T18:24:48Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-17/</loc>
</url>
<url>
<lastmod>2013-10-26T18:24:17Z</lastmod>
<changefreq>monthly</changefreq>
<priority>0.4</priority>
<loc>http://ec2-54-227-165-222.compute-1.amazonaws.com/wordpress/co-presence-event-for-1026-gallery/image-16/</loc>