-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathWCDB3.xml
1704 lines (1657 loc) · 115 KB
/
WCDB3.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" ?>
<!-- World Crises XML using schema (WorldCrises.xsd) -->
<WorldCrises>
<Crisis ID="CRI_NSAWRT" Name="NSA Wiretapping">
<People>
<Person ID="PER_ESNWDN" />
</People>
<Organizations>
<Org ID="ORG_NSAAAA" />
</Organizations>
<Kind>Civil Liberties</Kind>
<Date>2013-06-06</Date>
<Locations>
<li>United States of America</li>
<li>Hong Kong</li>
<li>Moscow</li>
<li>Ecuador</li>
</Locations>
<HumanImpact>
<li>By conducting massive surveillance operations over hundreds of millions of Americans and millions of others overseas and insisting that it has the right to do so whenever it feels American interests may be involved, the United States Government has violated the Fourth Amendment of the United States Constitution. The willingness of Congress, the Executive Branch, and even the Courts to go along with this program bodes ill for the future of our civil liberties. While it likely can be truthfully said that this surveillance program is not currently being abused to do things like shut down political opposition, the US Government has a history of doing such things in the past (COINTELPRO, Alien and Sedition Acts, Japanese Internment, etc.), and blindly trusting that such immense power would never be abused or wielded against the interests of the American people will not end well.</li>
</HumanImpact>
<EconomicImpact>
<li>As a result of the United States Government's decision to implement an extensive surveillance program not only on its own citizens, but also on foreign allies, there has been significant damage to the USA's relations with other countries. As a result, relations between them have become strained, resulting in countries becoming less willing to encourage economic interactions with America.</li>
<li>In addition, fear that the US government may be spying on them has led many European businesses and entities associated with European governments to drop or consider dropping American telecommunications service providers such as Verizon and ATT.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Money</li>
<li>Time</li>
<li>Effort</li>
<li>Passion</li>
<li>Awareness</li>
</ResourcesNeeded>
<WaysToHelp>
<li href="http://www.restorethefourth.net/protests/">Restore The Fourth</li>
<li href="https://donate.fightforthefuture.org/donate/fftf?amount=">Donate To Fight For The Future</li>
<li href="https://supporters.eff.org/donate">Donate To Electronic Frontier Foundation</li>
<li href="http://cms.fightforthefuture.org/call-for-freedom/">Contact Your Representative Through Fight For The Future</li>
<li href="https://action.eff.org/o/9042/p/dia/action3/common/public/?action_KEY=9260">Contact Your Representative Through Electronic Frontier Foundation</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.guardian.co.uk/world/2013/jul/04/european-us-internet-providers-nsa">Traynor, Ian. "European Firms 'Could Quit US Internet Providers Over NSA Scandal'". The Guardian. 4 July, 2013. Visited: 7 July, 2013.</li>
<li href="http://www.nytimes.com/2013/06/28/opinion/the-criminal-nsa.html?pagewanted=all&_r=0">Granick, Jennifer Stisa; Sprigman, Christopher Jon. "The Criminal N.S.A.". The New York Times. 27 June, 2013. Visited: 7 July, 2013.</li>
<li href="http://www.huffingtonpost.com/peter-h-schuck/national-security_b_3543312.html">Schuck, Peter H. "The Courts and National Security: A False Hope". The Huffington Post. 3 July, 2013. Visited: 7 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/PRISM_(surveillance_program)">Wikipedia: PRISM</li>
<li href="http://www.businessweek.com/news/2013-06-30/europe-shocked-as-spiegel-publishes-report-of-nsa-wiretapping">Business Week: Europe Shocked as Speigel Publishes Report of NSA Wiretapping</li>
<li href="http://en.wikipedia.org/wiki/NSA_warrantless_surveillance_controversy">Wikipedia: Warrantless Surveillance Controversy</li>
<li href="http://en.wikipedia.org/wiki/NSA_call_database">Wikipedia: NSA Call Database</li>
<li href="http://www.huffingtonpost.com/peter-h-schuck/national-security_b_3543312.html">Huffington Post: The Courts and National Security</li>
<li href="http://www.guardian.co.uk/world/2013/jun/06/nsa-phone-records-verizon-court-order">The Guardian: NSA Collecting Phone Records of Verizon Customers</li>
<li href="http://www.washingtonpost.com/www.washingtonpost.com/investigations/us-intelligence-mining-data-from-nine-us-internet-companies-in-broad-secret-program/2013/06/06/3a0c0da8-cebf-11e2-8845-d970ccb04497_story.html">The Washington Post: US, British Intelligence Mining Data From US Internet Companies</li>
<li href="https://www.eff.org/deeplinks/2012/08/ny-times-reminds-us-nsa-still-warrantlessly-wiretapping-americans-and-congress-has">EFF: NSA Warrantlessly Wiretapping</li>
<li href="http://www.nytimes.com/2013/06/28/opinion/the-criminal-nsa.html?pagewanted=all&_r=0">New York Times: The Criminal NSA</li>
<li href="http://www.guardian.co.uk/world/2013/jul/04/european-us-internet-providers-nsa">The Guardian: European Businesses Drop American Providers</li>
</ExternalLinks>
<Images>
<li embed="http://media.salon.com/2013/06/aptopix-nsa-phone-records-big-data-photo-gallery.jpeg-620x412.jpg" text="img not found">NSA Supercomputers Storing and Mining Massive Quantities of Data</li>
<li embed="http://news.antiwar.com/wp-content/uploads/2012/07/nsahq.jpg" text="img not found">NSA Headquarters</li>
<li embed="http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2012/1/31/1328029813998/The-US-director-of-nation-007.jpg" text="img not found">Director of Intelligence for the United States of America James Clapper</li>
<li embed="http://www.thedailysheeple.com/wp-content/uploads/2013/06/snowden.jpg" text="img not found">Edward Snowden The man who leaked the details of the NSA's surveillance program being interviewed in Hong Kong</li>
<li embed="http://media.cagle.com/29/2013/06/07/132863_600.jpg" text="img not found">The Government's Always Listening...</li>
</Images>
<Videos>
<li embed='//www.youtube.com/embed/wB4Gn0u4DSE'></li>
<li embed='//www.youtube.com/embed/FHN8D5bExtU'></li>
<li embed='//www.youtube.com/embed/Rz6rd_q2SYM'></li>
<li embed='//www.youtube.com/embed/mRoVxUL5X7Q'></li>
<li embed='//www.youtube.com/embed/6H_ENrJNEi8'></li>
</Videos>
<Maps>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=National+Security+Agency,+9800+Savage+Road,+Fort+Meade,+MD&aq=0&oq=nsa+headquarters&sll=30.307761,-97.753401&sspn=1.129858,2.113495&t=h&ie=UTF8&hq=National+Security+Agency,+9800+Savage+Road,+Fort+Meade,+MD&ll=39.108518,-76.771774&spn=0.007992,0.013733&z=16&output=embed'></li>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=united+states&aq=&sll=39.110046,-76.77074&sspn=0.015867,0.033023&t=h&ie=UTF8&hq=&hnear=United+States&ll=37.09024,-95.712891&spn=16.79998,28.125&z=5&output=embed'></li>
</Maps>
<Feeds>
<li embed="https://www.facebook.com/pages/NSA-warrantless-surveillance-controversy/110525432303684?rf=107113499325882">NSA Wiretapping on Facebook</li>
</Feeds>
<Summary>The NSA has, ever since September 11, 2001, been steadily expanding its reach and in doing so has quickly crossed the boundaries of what is legal. Driven by a need to know essentially everything, the NSA has begun warrantlessly wiretapping American citizens and collecting massive quantities of metadata about hundreds of millions of Americans and foreigners. Claiming that they are allowed this power because it "might be related to an investigation" the NSA has attempted to claim that their methods are fully legal and allowed by American Law, but this claim is clearly in violation of our constitutional rights. More importantly, it puts the NSA, and by proxy the US government, in a position of astonishing power, power that they have shown the capability of abusing in the past.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_BEEDIE" Name="Bee Colony Collapse Disorder">
<People>
<Person ID="PER_TTHBLD" />
</People>
<Organizations>
<Org ID="ORG_EPAAAA" />
</Organizations>
<Kind>Environmental</Kind>
<Date>2005-01-01</Date>
<Locations>
<li>Belgium</li>
<li>France</li>
<li>Netherlands</li>
<li>Greece</li>
<li>Italy</li>
<li>Portugal</li>
<li>Spain</li>
<li>Switzerland</li>
<li>Germany</li>
<li>England</li>
<li>USA</li>
</Locations>
<HumanImpact>
<li>Colony collapse disorder can catastrophically reduce global food supply because it’s believed that one third of human nutrition is due to bee pollination.</li>
</HumanImpact>
<EconomicImpact>
<li>Shortages of bees in the US have increased the cost to farmers of renting them for pollination services by up to 20%</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Money for research</li>
<li>Government colaboration to change current laws about pesticides</li>
<li>Effort</li>
<li>Passion</li>
<li>Awareness</li>
</ResourcesNeeded>
<WaysToHelp>
<li>Use of alternative pollinators like leafcutter, alkali bees, or bumblebees</li>
<li>Hand Pollination which is labor intensive, time consuming, and costly.</li>
<li>Prairie restoration</li>
<li>Establishment of wildlife preserves</li>
<li>encouragement of diverse wildlife landscaping rather than monoculture lawns</li>
</WaysToHelp>
<Common>
<Citations>
<li href="https://en.wikipedia.org/wiki/Colony_collapse_disorder"> "Colony collapse disorder". Wikipedia.Updated: 8 July, 2013. Visited: 9 July, 2013.</li>
<li href="https://en.wikipedia.org/wiki/Pollinator_decline">Pollinator decline. Wikipedia.Updated: 4 July, 2013. Visited: 9 July, 2013.</li>
<li href="http://ucanr.edu/blogs/bugsquad/index.cfm?tagname=colony%20collapse%20disorder">Garvey, Kathy Keatley . "Neonics Creating Quite a Buzz". Bug Squad. 1 April, 2013. Visited: 10 July, 2013.</li>
<li href="http://inhabitat.com/study-finds-honey-bee-food-may-contribute-to-colony-collapse/">Garvey, Kathy Keatley . "Morgana Matus Study Finds Honey Bee Food May Contribute to Colony Collapse". Inhabitat. 4 June, 2013. Visited: 10 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://thebeephotographer.photoshelter.com/gallery/Hand-Pollination-in-China/G0000M46TBQX4Odc/">Hand Pollination in China</li>
<li href="https://en.wikipedia.org/wiki/List_of_crop_plants_pollinated_by_bees">List of crop plants pollinated by bees</li>
</ExternalLinks>
<Images>
<li embed="http://ucanr.edu/blogs/bugsquad/blogfiles/10809.jpg" text="img not found">A thriving honey bee colony</li>
<li embed="http://ucanr.edu/blogs/bugsquad/blogfiles/10810.jpg" text="img not found">Bees have abandoned the hive in an apparent colony collapse disorder.</li>
<li embed="http://assets.inhabitat.com/wp-content/blogs.dir/1/files/2013/06/honey-bee-food-colony-collapse-537x405.jpg" text="img not found">Honeyees</li>
</Images>
<Videos>
<li embed='//www.youtube.com/embed/BRGrI4AQG70'></li>
<li embed='//www.youtube.com/embed/Y0i8A2zCxWM'></li>
<li embed='//www.youtube.com/embed/unca1QR3nLs'></li>
</Videos>
<Maps>
<li embed='https://maps.google.com/maps?client=ubuntu&channel=fs&q=usa&oe=utf-8&ie=UTF8&hl=en&hq=&hnear=United+States&t=h&ll=37.09024,-95.712891&spn=33.435463,56.25&z=4&output=embed'></li>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Belgium&aq=&sll=37.09024,-95.712891&sspn=68.344727,101.425781&t=h&ie=UTF8&hq=&hnear=Belgium&ll=50.502946,4.471436&spn=1.677083,3.515625&z=8&output=embed'></li>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=France&aq=&sll=50.503887,4.469936&sspn=3.518451,6.339111&t=h&ie=UTF8&hq=&hnear=France&ll=46.225453,2.219238&spn=7.296992,14.0625&z=6&output=embed'></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/MrTomTheobald'>Tom Theobald's Twitter</li>
<li embed='https://www.facebook.com/SaveBees'>Save The Bees on Facebook</li>
</Feeds>
<Summary>Across the world, bee colonies have been dying off, resulting in severe problems for the ecosystem due to the reliance on bees to pollinate plants</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_TXWDFR" Name="Texas Wild Fires">
<People>
<Person ID="PER_RPERRY" />
</People>
<Organizations>
<Org ID="ORG_FEMAAA" />
</Organizations>
<Kind>Natural disaster</Kind>
<Date>2011-09-04</Date>
<Locations>
<li>Texas</li>
</Locations>
<HumanImpact>
<li>These wildfires burned 2,862 homes, caused six fatalities, including two firefighters, and injuring 62 other people.</li>
</HumanImpact>
<EconomicImpact>
<li>They also burned down over 2,700 other structures, causing a total of $510.927 million in damages.1 FEMA has reimbursed the state of Texas $48 million for the fire suppression costs during the wildfires.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Money</li>
<li>Physical Labor</li>
<li>Awareness</li>
</ResourcesNeeded>
<WaysToHelp>
<li href="http://www.txwildfirerelief.org/">Texas Wildfire Relief</li>
<li href="http://www.helpthechildren.org/disaster-relief/project-help-texas-wildfires">Donate To Help The Children: Project Help Texas</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://en.wikipedia.org/wiki/2011_Texas_wildfires">"2011 Texas Wildfires". Wikipedia. 8 June, 2013. Visited: 12 July, 2013.</li>
<li href="http://www.kvue.com/news/state/FEMA-reimburses-Texas-nearly-48M-after-wildfires-214925101.html">Vess, Jessica. "FEMA reimburses Texas nearly $48M After Wildfires". Associated Press. 10 July, 2013. Visited: 12, July 2013</li>
<li href="http://www.texastribune.org/2011/09/07/records-femas-wildfire-spending/">Becca, Aaronson. "On the Records: FEMA's Wildfire Spending". The Texas Tribune. 7 September, 2011. Visited: 12 July, 2013.</li>
<li href="http://www.csmonitor.com/USA/Politics/2011/0907/Texas-wildfires-Is-Rick-Perry-being-hypocritical-asking-for-federal-aid">Jonsson, Patrik. "Texas Wildfires: Is Rick perry Being Hypocritical Asking For Federal Aid?". The Christian Science Monitor. 7 September, 2011. Visited: 12 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/2011_Texas_wildfires">Wikipedia: 2011 Texas Wildfires</li>
<li href="http://www.huffingtonpost.com/2011/04/11/texas-wildfires-2011-video_n_847776.html">Huffington post: Texas Wildfires 2011</li>
<li href="http://www.kvue.com/news/state/FEMA-reimburses-Texas-nearly-48M-after-wildfires-214925101.html">Associated Press: FEMA Reimburses Texas</li>
<li href="http://www.csmonitor.com/USA/Politics/2011/0907/Texas-wildfires-Is-Rick-Perry-being-hypocritical-asking-for-federal-aid">Christian Science Monitor: Texas Wildfires</li>
<li href="http://www.cnn.com/2011/US/09/06/texas.fires/index.html">CNN: Texas Wildfires</li>
</ExternalLinks>
<Images>
<li embed="http://cdn.theatlantic.com/static/infocus/texasfire042011/s_t01_00000001.jpg" text="img not found">Wildfires burning on Black Mountain</li>
<li embed="http://cdn.theatlantic.com/static/infocus/texasfire042011/s_t05_19010027.jpg" text="img not found">Smoke rises from wildfire near Possum Kingdom, Texas</li>
</Images>
<Videos>
<li embed='//www.youtube.com/embed/pqr2DNaMLiQ'></li>
<li embed='//www.youtube.com/embed/m67ZokFYl2A'></li>
<li embed='//www.youtube.com/embed/PyG-m8Pd0r8'></li>
</Videos>
<Maps>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Bastrop,+TX&aq=0&oq=bastrop+county&sll=30.307761,-97.753401&sspn=1.166617,0.792389&t=h&ie=UTF8&hq=&hnear=Bastrop,+Texas&ll=30.110385,-97.315178&spn=0.103948,0.145912&z=12&iwloc=A&output=embed'></li>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=texas&aq=&sll=30.110533,-97.315178&sspn=0.146121,0.099049&t=h&ie=UTF8&hq=&hnear=Texas&z=5&iwloc=A&output=embed'></li>
</Maps>
<Feeds>
<li embed="https://www.facebook.com/helptexaswildfires">Help Texas Wildfires Facebook</li>
<li embed="https://twitter.com/texas_wildfires">Texas Wildfires On Twitter</li>
</Feeds>
<Summary>Spurred on by the currently ongoing 2011 Southern US Drought, the 2011 Texas Wildfires, beginning on November 15, 2013 and ending on October 31, 2011, were some of the worst the state of Texas has ever seen. It included what is generally acknowledged to be the most catastrophic wildfire in Texas history - the Bastrop County Complex Fire which destroyed over 1600 homes and burned over 34,000 acres of land, killing two people. Declaring a State of Disaster on December 21, 2010, Texas Governor Rick Perry requested President Obama to send federal aid to help with the wildfires.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_BRZLPR" Name="Brazilian Protests">
<People>
<Person ID="PER_HPASSS" />
<Person ID="PER_DLVRUS" />
</People>
<Organizations>
<Org ID="ORG_BRAGOV" />
</Organizations>
<Kind>Socioeconomic Crisis</Kind>
<Date>2013-06-17</Date>
<Locations>
<li>Rio de Janeiro</li>
<li>Sao Paulo</li>
<li>Porto Alegre</li>
<li>Brasilia</li>
</Locations>
<HumanImpact>
<li>National Pact to improve Education, Health, and Public Transportation</li>
<li>Visibility of votes for forfeit of office</li>
<li>Criminalization of Corruption and Embezzlement</li>
</HumanImpact>
<EconomicImpact>
<li>Public transportation fares lowered</li>
<li>Portion of petroleum royalties go to education</li>
<li>Brazilian citizens feel too much money is being spent on the 2015 World Cup</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Awareness as to why there are Brazilian protests.</li>
<li>Negotiators</li>
<li>Voters in Brazil</li>
</ResourcesNeeded>
<WaysToHelp>
<li>Understanding as to why the protests are happening.</li>
<li>Join a protest in your area supporting Brazil.</li>
<li>Boycott the World Cup.</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.nytimes.com/2013/06/28/world/americas/public-rage-catching-up-with-brazils-congress.html?pagewanted=all&_r=1&">Romero, Simon. "Public Rage Catching Up With Brazil’s Congress". InterAmerican Security Watch. 28 June, 2013. Visited: 11 July, 2013.</li>
<li href="http://www.guardian.co.uk/world/2013/jun/29/brazilian-dilma-rousseff-support-protests?INTCMP=SRCH">"Brazilian president Dilma Rousseff's support plummets in wake of protests". The Guardian. 29 June, 2013. Visited: 11 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/2013_protests_in_Brazil">Wikipedia: 2013 Brazilian Protests</li>
<li href="http://brazilprotestsguide.blogspot.ch/">Brazil Protest Blog</li>
</ExternalLinks>
<Images>
<li embed="http://upload.wikimedia.org/wikipedia/commons/1/11/Protestos_no_Rio_em_2013.jpg">If the fare doesn't drop, Rio is going to stop!</li>
<li embed="http://upload.wikimedia.org/wikipedia/commons/4/4b/Protesto_no_Congresso_Nacional_do_Brasil%2C_17_de_junho_de_2013.jpg">Protest at the Brazilian Congress Building</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/Mic0AYK8F-c" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?client=ubuntu&channel=cs&q=map+of+brazil&ie=UTF8&hq=&hnear=Brazil&gl=us&t=m&z=4&ll=-14.235004,-51.92528&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/BR_Protests'>Brazilian Protests on Twitter</li>
<li embed='https://www.facebook.com/BrazilianProtests'>Brazilian Protests on Facebook</li>
</Feeds>
<Summary>The 2013 Brazilian protests started as upset citizens protesting the increase of fares of public transportation methods. Lately the protests have evolved into demanding a better oversite of government workers, better public transportation with lesser cost, and controversy over hosting the 2015 World Cup.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_MEXDRG" Name="Mexican Drug Violence">
<People>
<Person ID="PER_GUZMAN" />
</People>
<Organizations>
<Org ID="ORG_SINCAR" />
</Organizations>
<Kind>Violent Conflict</Kind>
<Date>2006-01-01</Date>
<Locations>
<li>Mexico</li>
<li>United States</li>
<li>Guatemala</li>
</Locations>
<HumanImpact>
<li>The Mexican drug war is not a conventional war, but with more than 60,000 killed in Mexico in the last several years it has a high enough death toll to be one.</li>
<li>At least 106 US residents killed by April 2011.</li>
<li>An additional 230,000 people have been displaced, half internally and half in US.</li>
<li>The US State Department considers Mexico to be a Tier 2 country for human trafficking. While not entirely responsible for the situation, drug cartels exacerbate it, both by directly by subjecting captives to forced labor and prostitution and through the general atmosphere of lawlessness. Central Americans passing through Mexico on their way to the United States make up a significant portion of the human trafficking victims.</li>
</HumanImpact>
<EconomicImpact>
<li>Although the drug trade injects billions of dollars into the Mexican economy each year and employs many people, it is generally considered to be detrimental to the Mexican economy. Mexico's economy has enjoyed strong growth during the conflict, but a 1% reduction to economic growth each year and total economic losses of $4.3 billion dollars per year due to violence, lost investment, and drug use are attributed to it.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Decreased drug demand or increased supply.</li>
<li>An military/law enforcement solution is possible but very difficult. It could be attempted with a heavy police or military presence throughout Mexico, an elimination of drug supply from South America, or an elimination of the illegal drug market in the United States. A combination of all three would be effective but each would be difficult to achieve.</li>
</ResourcesNeeded>
<WaysToHelp>
<!-- Put text with optional hyperlinks here -->
<li>Legalize drugs. Legalizing marijuana in California could reduce drug trafficking revenues by 20%.</li>
<li>Abstain from drugs, reducing the demand for drug and as a consequence, the price of drugs, which is the incentive for the drug war.</li>
<li>Use drugs from local sources. Encouraging local drug production leads to increased drug supply reduces, which reduces the price.</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.bbc.co.uk/news/world-latin-america-10681249">"Q&A: Mexico's drug-related violence". BBC News: Latin America and Caribbean. Updated: 16 July, 2013. Visited: 3 August, 2013.</li>
<li href="http://en.wikipedia.org/wiki/Mexican_Drug_War">"Mexican Drug War". Wikipedia. Updated: 3 August, 2013. Visited: 3 August, 2013.</li>
</Citations>
<ExternalLinks>
<!-- Put text with compulsory hyperlinks here -->
<li href="http://www.bbc.co.uk/news/world-latin-america-10681249">BBC: death toll</li>
<li href="http://www.borderlandbeat.com/2011/03/report-230000-displaced-by-mexicos-drug.html">Borderland Beat: displaced people</li>
<li href="http://www.nbcnews.com/id/42232161/ns/us_news-crime_and_courts/t/more-will-die-mexico-drug-wars-claim-us-lives/#.UdiLBRX1Mak">NBC: US residents killed</li>
<li href="http://www.state.gov/j/tip/rls/tiprpt/2012/192367.htm">US State Dept: Human Trafficking</li>
<li href="http://www.bbc.co.uk/news/business-13120598">BBC: lost economic growth</li>
<li href="http://www.gov.harvard.edu/files/Rios2008_MexicanDrugMarket.pdf">Harvard: Annual economic losses</li>
<li href="http://www.rand.org/news/press/2010/10/12.html">RAND: Marijuana</li>
</ExternalLinks>
<!-- hrefs optional in the following depending on how you want them to behave on your site -->
<Images>
<!-- Put full URLs to images here, display them on your site in your own cool way -->
<li embed="http://4.bp.blogspot.com/-55oBz9ds3lk/TYkOZbYLQbI/AAAAAAAAAEU/X-APwSyyaqk/s1600/martin%2Bfigure%2B2.jpg" text="This is the alt element of the image." />
<li embed="http://media.economist.com/sites/default/files/murders-2012.png?1353601636" text="This is the alt element of the image." />
<li embed="http://www.google.com/url?q=https://upload.wikimedia.org/wikipedia/commons/f/f2/Perpetrators-Zetas.jpg&usd=2&usg=ALhdy28vFsU9ryNEKUW5G3mWeGHR8zyWIQ" text="This is the alt element of the image." />
<li embed="http://www.aljazeera.com/mritems/Images/2010/10/19/20101019201733824572_20.jpg" text="This is the alt element of the image." />
<li embed="http://cdn.theatlantic.com/static/mt/assets/international/las%20zetas%20banner.jpg" text="This is the alt element of the image." />
<li embed="http://mcauleysworld.files.wordpress.com/2010/07/12765047921.jpg" text="This is the alt element of the image." />
<li embed="http://static1.businessinsider.com/image/5065e7cceab8eaff04000020-480/map.jpg" text="This is the alt element of the image." />
<li embed="http://www.globalpost.com/sites/default/files/imagecache/use-with-caution_original/cartel_smuggling_routes.jpg" text="This is the alt element of the image." />
</Images>
<Videos>
<!-- Put youtube link here (pull this URL out of the src="[GET THIS LINK]" attribute in the embed object given by youtube) -->
<!-- Embed example for your site: <iframe width="420" height="315" src="[THIS LINK]" frameborder="0" allowfullscreen></iframe> -->
<li embed="//www.youtube.com/embed/Mn8hEoVYfyU" />
<li embed="//www.youtube.com/embed/H7a1-HXBCAU" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=mexico&aq=&sll=61.52401,105.318756&sspn=88.368649,270.527344&ie=UTF8&hq=&hnear=Mexico&t=m&z=6&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/MexicoDrugWars'>Mexican Drug Wars on Twitter</li>
<li embed='https://www.facebook.com/mexicoviolence'>Stop Mexican Drug Violence on Facebook</li>
<li embed='https://www.facebook.com/pages/Mexican-Drug-War/103067133066401?rf=106631902709695'>Mexican Drug Wars on Facebook</li>
</Feeds>
<Summary>With so much money on the line, the drug cartels refuse to be pushed out of Mexico. At the same time, the government is unwilling to allow them to continue to wield such massive influence within the country. The result has been a truly blood conflict.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_LGBTRU" Name="LGBT Issues in Russia">
<People>
<Person ID="PER_NIKALX" />
</People>
<Organizations>
<Org ID="ORG_GAYRUS" />
</Organizations>
<Kind>Civil/Human Rights</Kind>
<Locations>
<li>Russia</li>
</Locations>
<HumanImpact>
<li>Basic civil rights are in danger as sexual minorities are subject to political ridicule and civilian abuse.</li>
</HumanImpact>
<ResourcesNeeded>
<li>Awareness</li>
<li>Passion</li>
<li>Political Pressure</li>
</ResourcesNeeded>
<WaysToHelp>
<li href="http://www.gayrussia.eu/">LGBT Human Rights Project GayRussia.Ru</li>
<li href="http://www.lgbtnet.ru/">Russian LGBT Network's website</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.usatoday.com/story/news/world/2013/06/11/russian-gay/2411939/"> "Russia OKs Bill Banning Gay 'propaganda'" USA Today. Gannett, 11 June 2013. Web. 10 July 2013.</li>
<li href="http://www.bbc.co.uk/news/world-europe-19293465"> "Gay Parades Banned in Moscow for 100 Years." BBC News. BBC, 17 Aug. 2012. Web. 10 July 2013.</li>
<li href="http://www.pinknews.co.uk/2013/03/27/russia-gay-pride-march-organiser-beaten-after-city-announces-ban/"> Ashenden, Amy. "Russia: Gay Pride March Organiser Beaten after City Announces ban." PinkNews.co.uk. PinkNews, 27 Mar. 2013. Web. 10 July 2013.</li>
<li href="http://www.huffingtonpost.com/2012/12/12/lady-gaga-gay-rights-russia-threatened-arrest-fine_n_2285857.html?ir="> Sieczkowski, Cavan. "Lady Gaga Threatened With Arrest, $50,000 Fine For Promoting Gay Rights In Russia." The Huffington Post. TheHuffingtonPost.com, 12 Dec. 2012. Web. 10 July 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/LGBT_rights_in_Russia">Wikipedia</li>
</ExternalLinks>
<Images>
<li embed="http://static3.businessinsider.com/image/51d1b329ecad043e77000003/russia-officially-makes-it-illegal-to-talk-to-kids-about-gays.jpg" text="img not found"> Police detain a gay rights activist during a Gay Pride event in St. Petersburg, June 29, 2013. </li>
<li embed="http://global.fncstatic.com/static/managed/img/U.S./russia_gay_rights_protest_061113.jpg" text="img not found"> Police officers detain gay rights activists as they gathered near the State Duma, Russia's lower parliament chamber, in Moscow, Russia. (AP)</li>
<li embed="http://media.npr.org/assets/img/2013/06/30/ap13062904235_wide-815c43d62f2e3cb91b889a819918f0458914925d-s4.jpg " text="img not found"> Riot police guard gay rights activists who were beaten by anti-gay protesters during an authorized gay rights rally in St. Petersburg, Russia, on Saturday. While a march there was allowed to go ahead, gay rights activists in Moscow turned to the Web on Sunday to celebrate gay pride.</li>
<li embed="http://static.themoscowtimes.com/upload/iblock/eeb/gays.jpg" text="img not found" > A bloodied gay rights opponent engaging in a tug-of-war over the gay rights flag with a supporter at a rally in St. Petersburg.</li>
<li embed="http://www.polarimagazine.com/wp-content/uploads/2012/05/Russian-Orthodox-Church-Atacks-Gay-Rights1.jpg" text="img not found"> A Russian LGBT activist is assaulted by traditional protester </li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/0X8RqyjI208" />
<li embed="//www.youtube.com/embed/F3PGNOk4dWA" />
<li embed="//www.youtube.com/embed/Btwu7smgKYo" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=russia&aq=&sll=30.307761,-97.753401&sspn=1.129858,2.113495&ie=UTF8&hq=&hnear=Russia&t=m&z=3&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/rightsinrussia'>Rights In Russia on Twitter</li>
<li embed='https://www.facebook.com/GayRussia'>Gay Russia on Facebook</li>
<li embed='https://www.facebook.com/pages/LGBT-rights-in-Russia/138632246166786?v=wall&rf=119897371389669'>LGBT Rights in Russia on Facebook</li>
</Feeds>
<Summary>As a result of religious orthodoxy and a deep seated dislike of homosexuals, there have been a number of laws passed restricting the rights of LGBT people in Russia.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_EGYPTR" Name="Political unrest in Egypt">
<People>
<Person ID="PER_MMORSI" />
</People>
<Organizations>
<Org ID="ORG_MUSBRO" />
<Org ID="ORG_EGYGOV" />
</Organizations>
<Kind>Revolution</Kind>
<Date>2011-01-25</Date>
<Time>09:00:00+05:30</Time>
<Locations>
<li>Cairo</li>
<li>Alexandria</li>
<li>Mansoura</li>
<li>Suez</li>
</Locations>
<HumanImpact>
<li>Anger towards the corruption in the Egyptian political system influenced millions of protesters to join plaza marches and other demonstrations against the government.</li>
<li>Many protests were organized using social media, demonstrating the powerful new influence of technology over politics and human action.</li>
<li>The movement united Egytian citizens over a spectrum of socio-economic and religious foundations.</li>
<li>Eight hundred forty-six people were killed and around six thousand have been injured participating in demonstrations against Egypt's police and military.</li>
</HumanImpact>
<EconomicImpact>
<li>As the government is restructured in Egypt, the economic situation of people will change based our their dependency on the corrupt system as a source of wealth.</li>
<li>It is possible that the gap in leadership will be taken advantage of and a party with a different form of corruption will refactor the system completely.</li>
<li>If Egypt adopts a better set of leaders, it may positively influence its trade with Western countries.</li>
<li> Importers of Egypts oil will see prices of gasoline affected by the turnover of Egypts political leaders.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Money</li>
<li>Support for positive political reorganization</li>
<li>New leaders (non-corrupt)</li>
</ResourcesNeeded>
<WaysToHelp>
<li href="http://en.wikipedia.org/wiki/Egyptian_Organization_for_Human_Rights"> Egyption Organization for Human Rights</li>
<li href="http://www.americanprogress.org/"> Center for American Progress</li>
<li href="http://www.cewla.org/"> Center for Egyptian Womens Legal Assistance (CEWLA)</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.bloomberg.com/news/2013-07-05/gasoline-rises-on-u-s-job-gains-amid-political-unrest-in-egypt.html"> Powell, Barbara. Gasoline Rises on US Job Gains Amid Political Unrest in Egypt. 2013 Jul 5. Bloomberg.</li>
<li href="http://www.economist.com/topics/egyptian-politics"> The Economist. Egyptian politics.</li>
</Citations>
<ExternalLinks>
<li href="http://www.livescience.com/38023-protecting-egypt-artifacts-during-crisis.html"> Egypt's National Treasures Threatened by Political Unrest</li>
<li href="https://en.wikipedia.org/wiki/2011_Egyptian_revolution"> Wikipedia : Egyptian Revolution of 2011</li>
<li href="http://www.bbc.co.uk/news/world-middle-east-23228297"> Egypts political unrest causes regional concern</li>
</ExternalLinks>
<Images>
<li embed="http://radio.foxnews.com/wp-content/uploads/2011/02/egypt-drama-2.jpg"> Egyptian unrest continues</li>
<li embed="http://media.themalaysianinsider.com/images/uploads/2011/january/31/mubarak.jpg"> Down with Mubarak Protest sign</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/oo3T9bbsMT0"> Egypt's president ousted in military coup"</li>
<li embed="//www.youtube.com/embed/1dGDv7kzJEI"> Obama, staff huddle over Egypt</li>
<li embed="//www.youtube.com/embed/bptZAPw2lgQ"> Analysis: Victory or a sad day for Egypt?</li>
<li embed="//www.youtube.com/embed/GcLmi0ZdEpc"> Protest in Egypt - Jan 25, 2011</li>
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=egypt&aq=&sll=30.307761,-97.753401&sspn=1.129858,2.113495&ie=UTF8&hq=&hnear=Egypt&t=m&z=6&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/egyptianuprise'>Egyptian Revolution on Twitter</li>
<li embed='https://www.facebook.com/egyptianrevolution25'>Egyptian Revolution on Facebook</li>
</Feeds>
<Summary>Egypt is on the brink of drastic political changes that will affect its future political systems and socioeconomic climate.</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_FWATER" Name="Fresh Water Scarcity">
<People>
<Person ID="PER_MTTDMN" />
</People>
<Organizations>
<Org ID="ORG_WATERO" />
</Organizations>
<Kind>Environmental</Kind>
<Locations>
<li>Sudan</li>
<li>Venezuela</li>
<li>Ethiopia</li>
<li>Tunisia</li>
<li>Cuba</li>
</Locations>
<HumanImpact>
<li>The United Nations' FAO states that by 2025, 1.9 billion people will be living in countries or regions with absolute water scarcity, and two-thirds of the world population could be under stress conditions. </li>
</HumanImpact>
<EconomicImpact>
<li>Several solutions to the problem are expensive.</li>
<li>Construciton and maintenance of wastewater treatment plants is highly capital intensive and many regions don't have access to such technology.</li>
<li>Reducing groundwater overdrafting reduces crop yield, negatively impacting farmers and world's populations food needs.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Construction of wastewater treatment plants to produce more potable water, but there are issues to this.</li>
<li>Reducing groundwater overdrafting, but there are issues to this</li>
<li>Developing countries need to improve primary wastewater treatment. They should also develop more secure septic systems, such as more widespread adoption of septic tanks.</li>
<li>Desalination research</li>
</ResourcesNeeded>
<WaysToHelp>
<!-- Put text with optional hyperlinks here -->
<li href="http://www.charitywater.org/">Non-profit organization aimed at bringing clean, safe drinking water to people in developing countrie</li>
<li href="http://thewaterproject.org/">The Water Project: Bring Clean Water to Africa</li>
<li href="http://water.org/">Help people gain access to safe water and sanitation.</li>
</WaysToHelp>
<Common>
<Citations>
<!-- Put text with optional hyperlinks here -->
<li href="http://www.unicef.org/specialsession/about/sgreport-pdf/03_SafeDrinkingWater_D7341Insert_English.pdf"> "Safe Drinking Water." UNICEF. UNICEF/WHO, 2001. Web. 11 July 2016.</li>
<li href="http://www.fao.org/english/newsroom/news/2003/15254-en.html"> "FAO : No Global Water Crisis - but Many Developing Countries Will Face Water Scarcity." FAO. FAO, 12 Mar. 2003. Web. 11 July 2013.</li>
<li href="http://www.redorbit.com/news/science/1367352/desalination_is_the_solution_to_water_shortages/"> McKinley, Conway. "Desalination Is the Solution to Water Shortages." RedOrbit. N.p., 2 May 2008. Web. 11 July 2013.</li>
</Citations>
<ExternalLinks>
<!-- Put text with compulsory hyperlinks here -->
<li href="http://en.wikipedia.org/wiki/Water_crisis">Wikipedia article</li>
<li href="http://www.unicef.org/specialsession/about/sgreport-pdf/03_SafeDrinkingWater_D7341Insert_English.pdf">Safe Drinking Water</li>
<li href="http://www.fao.org/english/newsroom/news/2003/15254-en.html">FAO : No Global Water Crisis - but Many Developing Countries Will Face Water Scarcity</li>
<li href="http://www.redorbit.com/news/science/1367352/desalination_is_the_solution_to_water_shortages/">Desalination Is the Solution to Water Shortages.</li>
<li href="http://www.utexas.edu/news/2008/07/22/desalination/">New Chlorine-Tolerant, Desalination Membrane Hopes to Boost Access to Clean Water</li>
</ExternalLinks>
<!-- hrefs optional in the following depending on how you want them to behave on your site -->
<Images>
<!-- Put full URLs to images here, display them on your site in your own cool way -->
<li embed="http://d555kv4p2mtwa.cloudfront.net/birthdays/images/clean-water.jpg" text="img not found"></li>
<li embed="http://newswatch.nationalgeographic.com/files/2013/06/08C9CDCA-93F0-372D-DC3FD21B45F47F5B_1.jpg"></li>
<li embed="http://static6.businessinsider.com/image/4d7922b74bd7c81671160000/water-scarcity-chart.png" text="img not found"> Water Scarcity Chart </li>
</Images>
<Videos>
<!-- Put youtube link here (pull this URL out of the src="[GET THIS LINK]" attribute in the embed object given by youtube) -->
<!-- Embed example for your site: <iframe width="420" height="315" src="[THIS LINK]" frameborder="0" allowfullscreen></iframe> -->
<li embed="//www.youtube.com/embed/djOX_GZmJ6s"></li>
<li embed="//www.youtube.com/embed/jscOuWpw_iU"></li>
<li embed="//www.youtube.com/embed/_9OGvcVA3Gw"></li>
</Videos>
<Maps>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&q=Sudan&aq=&sll=26.820553,30.802498&sspn=18.623553,33.815918&ie=UTF8&geocode=FVdFxAAdpBXNAQ&split=0&hq=&hnear=Sudan&t=m&z=6&output=embed'></li>
<li embed='https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=tunisia&aq=&sll=12.854649,30.212402&sspn=20.312609,33.815918&ie=UTF8&hq=&hnear=Tunisia&t=m&z=7&output=embed'></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/SaveTheWater'>Save the Water on Twitter</li>
<li embed='https://www.facebook.com/globalwaterpartnership'>Global Water Crisis on Facebook</li>
</Feeds>
<!-- Optional summary field for extra random data -->
<Summary>
In less privileged regions of the world there is a difficulty in obtaining fresh water.
</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_FOREST" Name="Deforestation">
<People>
<Person ID="PER_XNSHNG" />
</People>
<Organizations>
<Org ID="ORG_IUCNAT" />
<Org ID="ORG_EPAAAA" />
</Organizations>
<Kind>Environmental</Kind>
<Date>1900-01-01</Date>
<Locations>
<li>Africa</li>
<li>Latin America</li>
<li>South Asia</li>
</Locations>
<HumanImpact>
<li>Natural systems account for about half of GDP of poor.</li>
<li>Almost 3 billion people rely on wood for fuel and timber.</li>
</HumanImpact>
<EconomicImpact>
<li>7% reduction to world GDP by 2050.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Land-efficient agriculture. Modern technology and plants offer greater yields than subsistence agriculture and the raising of livestock. 48% of deforestation is due to subsistence and 32% due to commercial agriculture.</li>
<li>Reduced use of wood products.</li>
</ResourcesNeeded>
<WaysToHelp>
<li>Eat plant products. Livestock is much more land-intensive.</li>
<li>Limit paper use.</li>
<li>Use fuels besides wood.</li>
</WaysToHelp>
<Common>
<ExternalLinks>
<li href="http://news.bbc.co.uk/2/hi/science/nature/7424535.stm"> BBC: Economic consequences of deforestation</li>
<li href='http://atlas.aaas.org/pdf/63-66.pdf'> Forest Products</li>
<li href='http://unfccc.int/files/essential_background/background_publications_htmlpdf/application/pdf/pub_07_financial_flows.pdf'> Investment and Financial Flows to Address Climate Change</li>
</ExternalLinks>
<Images>
<li embed="http://upload.wikimedia.org/wikipedia/commons/4/4c/Global_Forest_Cover_Sub-Regional_Trends.png" text="This is the alt element of the image." />
<li embed="http://blog.conservation.org/wp-content/uploads/2013/04/brazil-deforestation-map.jpg" text="This is the alt element of the image." />
</Images>
<Videos>
<li embed="//www.youtube.com/embed/ghp0_YB0osw"> Democracy Now: Deforestation Consequences in Africa</li>
<li embed="//www.youtube.com/embed/Fo4WXly4QYk"> Greenpeace: Stopping Amazon Deforestation</li>
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=south+asia&aq=&sll=30.307761,-97.753401&sspn=1.129858,2.113495&ie=UTF8&hq=&hnear=Southern+Asia&t=m&z=4&iwloc=A&output=embed"></li>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&q=Central+America&aq=&sll=30.294522,-97.744841&sspn=0.141254,0.264187&ie=UTF8&geocode=FfXWwgAdxM_l-g&split=0&hq=&hnear=Central+America&t=m&z=6&iwloc=A&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/DeforestationW'>Deforestation on Twitter</li>
<li embed='https://www.facebook.com/DeforestationEducation'>Deforestation on Facebook</li>
</Feeds>
<Summary>As the human race continues to expand both in population and, as a result, in space occupied, the need for land grows, which has led to a rapid decrease in the size of our world's forests. If this keeps up, it is only a short matter of time before the forests are all but gone</Summary>
</Common>
</Crisis>
<Crisis ID="CRI_NUCDIS" Name="Nuclear Disasters">
<People>
<Person ID="PER_YYAMAD" />
</People>
<Organizations>
<Org ID="ORG_NSAAAA" />
<Org ID="ORG_FEMAAA" />
<Org ID="ORG_UOCSCI" />
</Organizations>
<Kind>Radioactive</Kind>
<Date>2011-03-31</Date>
<Time>09:00:00+05:30</Time>
<Locations>
<li>Fukushima, Japan</li>
<li>Three-Mile Island</li>
<li>USA Nuclear Power Plants</li>
<li>Chernobyl Nuclear Power Plant</li>
</Locations>
<HumanImpact>
<li>Nuclear weapons can kill hundreds of thousands of people at a time.</li>
<li>Nuclear power has the potential to destroy entire cities and hundreds of years of human development in an instant.</li>
<li>Radiation lingers in an environment for an unknown amount of time after a nuclear blast, meaning that a location can be permanently altered. This may cause an increase in cancer rates within that environment.</li>
</HumanImpact>
<EconomicImpact>
<li>Nuclear weapons represent power (persuasive power?) and are a direct demonstration of a country's wealth in technology and science.</li>
<li>The components involved with nuclear power are so reactive as to be intolerable to human and environmental systems. Thus, nuclear energy is criticized as being a profit-for-person trade off.</li>
</EconomicImpact>
<ResourcesNeeded>
<li>Fallout shelters</li>
<li>Red phones</li>
<li>Fallout body gear</li>
<li>Clean-up robots</li>
<li>Moral and Ethical training</li>
</ResourcesNeeded>
<WaysToHelp>
<li href="http://www.who.int/ionizing_radiation/a_e/en/"> World Health Organization: Radiation accidents and emergencies</li>
<li href="http://world-nuclear.org/WNA/"> World Nuclear Association</li>
</WaysToHelp>
<Common>
<Citations>
<li href="http://www.bbc.co.uk/news/world-asia-pacific-13598607"> Buerk, Roland. Japanese pensioners volunteer to tackle nuclear crisis. BBC News, Tokyo. 2011 May 31.</li>
<li href="http://www.pslweb.org/liberationnews/news/japan-nuclear-crisis.html"> Freeman, Sunil. Japan nuclear crisis highlights dangers of profit-before-people industry. 2011 Mar 27.</li>
</Citations>
<ExternalLinks>
<li href="https://en.wikipedia.org/wiki/Chernobyl_disaster"> Wikipedia Chernobyl disaster</li>
<li href="http://en.wikipedia.org/wiki/List_of_nuclear_power_accidents_by_country"> List of nuclear power accidents by country</li>
</ExternalLinks>
<Images>
<li embed="http://adamant.typepad.com/photos/uncategorized/propaganda_penguin_1_1.jpg" text="img not found"> What beats global warming? Nuclear Winter! </li>
<li embed="http://www.npr.org/news/graphics/maps/three_mile.jpg" text="img not found"> Map of Three Mile Island and surrounding area </li>
<li embed="http://kboo.fm/sites/default/files/nodeimages/US-NRC-Japan-Fallout-Map-From-Destroyed-Fukushima-Daiichi-Nuclear-Plant.jpg" text="img not found"> Japan Nuclear Fallout Map </li>
<li embed="http://cnnjohnkingusa.files.wordpress.com/2011/03/nuc-map-2.png" text="img not found"> US Nuclear Power Plants </li>
<li embed="http://nucleaire11.files.wordpress.com/2011/11/fukushima-nuclear-reactor1.jpg"> Nuclear explosion in Fukushima </li>
<li embed="http://www.solarfeeds.com/wp-content/uploads/nuclear-disaster.jpg"> Mushroom cloud </li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/UHkGJEiDpdw"> Victory Gardens 1941 </li>
<li embed="//www.youtube.com/embed/LLCF7vPanrY"> Time lapse map of every nuclear explosion since 1945 </li>
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=chernobyl&aq=&sll=37.599,140.578308&sspn=2.073764,4.22699&ie=UTF8&hq=chernobyl&hnear=&radius=15000&t=m&cid=16411630553931895007&ll=52.066,30.179443&spn=2.363967,4.669189&z=7&iwloc=A&output=embed"></li>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Fukushima+Prefecture,+Japan&aq=&sll=37.760944,140.475311&sspn=1.034646,2.113495&ie=UTF8&hq=&hnear=Fukushima+Prefecture,+Japan&t=m&ll=37.50101,140.394287&spn=3.050425,4.669189&z=7&output=embed"></li>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=three+mile+island&aq=&sll=12.769013,-85.602364&sspn=20.319381,33.815918&g=Central+America&ie=UTF8&hq=&hnear=Three+Mile+Island&t=m&ll=40.147914,-76.723537&spn=0.045925,0.072956&z=13&iwloc=A&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://twitter.com/fukushimarising'>Fukushima Disaster on Twitter</li>
<li embed='https://www.facebook.com/FukushimaResponseCampaign'>Fukushima Disaster on Facebook</li>
</Feeds>
<Summary>Ever since the invention of nuclear technology, there has existed the possibility of catastrophic events occurring. Unfortunately, such events have already occurred more than just once.</Summary>
</Common>
</Crisis>
<Person ID="PER_YYAMAD" Name="Yasuteru Yamada">
<Crises>
<Crisis ID="CRI_NUCDIS" />
</Crises>
<Organizations>
<Org ID="ORG_UOCSCI" />
</Organizations>
<Kind>Proactive citizen</Kind>
<Location>Japan</Location>
<Common>
<Citations>
<li href="http://abcnews.go.com/International/japan-nuclear-crisis-retirees-volunteer-fukushima-duty/story?id=13731136">Fujita, Akiko. "Japan Nuclear Crisis: Retirees Volunteer for Fukushima Duty". ABC News. Jun 1, 2011</li>
</Citations>
<ExternalLinks>
<li href="http://abcnews.go.com/International/japan-nuclear-crisis-retirees-volunteer-fukushima-duty/story?id=13731136">ABC: Retirees Volunteer for Fukushima Duty</li>
</ExternalLinks>
<Images>
<li embed="http://www.taz.de/uploads/images/684x342/fukushimabbc.20110602-09.jpg" text="img not found">Yasuteru Yamada</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/enRGG1KJpWE" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Fukushima+Prefecture,+Japan&aq=0&oq=fuk&sll=36.204824,138.252924&sspn=67.544584,50.712891&ie=UTF8&hq=&hnear=Fukushima+Prefecture,+Japan&t=m&z=7&iwloc=A&output=embed"></li>
</Maps>
<Summary>
Yasuteru Yamada is a Japanese engineer who attempted to gather retired engineers as volunteers to clean up Japan's nuclear fallout.He reasoned that older people are less likely to develop the devastating cancers associated with nuclear energy.
</Summary>
</Common>
</Person>
<Person ID="PER_HPASSS" Name="Hildebrando Pascoal">
<Crises>
<Crisis ID="CRI_BRZLPR" />
</Crises>
<Organizations>
<Org ID="ORG_BRAGOV"/>
</Organizations>
<Kind>Politician</Kind>
<Location>Rio de Janeiro</Location>
<Common>
<Citations>
<li href="http://interamericansecuritywatch.com/public-rage-catching-up-with-brazils-congress/">Romero, Simon. "Public Rage Catching Up With Brazil’s Congress". InterAmerican Security Watch. 28 June, 2013. Visited: 11 July, 2013.</li>
<li href="http://news.bbc.co.uk/2/hi/americas/454174.stm">Cviic, Stephen. "World: Americas Brazilian deputy 'ran death squads'". BBC News. 22 September, 1999. Visited: 17 July, 2013</li>
</Citations>
<ExternalLinks>
<li href="http://pt.wikipedia.org/wiki/Hildebrando_Pascoal">Wikipedia: Hildebrando Pascoal</li>
</ExternalLinks>
<Images>
<li embed="http://upload.wikimedia.org/wikipedia/commons/d/d0/Hildebrando.jpg" text="img not found">Hildebrando Pascoal arriving at court to be tried.</li>
<li embed="http://graphics8.nytimes.com/images/2013/06/28/world/jp-brazil2/jp-brazil2-popup.jpg">Hildebrando Pascoal</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/I199ISU6lOE" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=brazil&aq=&sll=51.371352,30.127258&sspn=0.408504,1.056747&ie=UTF8&hq=&hnear=Brazil&t=m&ll=-12.554564,-53.701172&spn=29.704412,37.353516&z=4&output=embed"></li>
</Maps>
<Summary>
Hildebrando Pascoal "the chainsaw congressman" is a former Brazilian congressman associated with drug-trafficking and a death squad torture and mass murder incident. He was removed from office, convicted, and sent to prison September of 2009.
A prime example of occasional political corruption in Brazil. Under former Brazilian law federal deputies are immune from prosecution.
</Summary>
</Common>
</Person>
<Person ID="PER_TTHBLD" Name="Tom Theobald">
<Crises>
<Crisis ID="CRI_BEEDIE" />
</Crises>
<Organizations><Org ID="ORG_EPAAAA" /></Organizations>
<Kind>Proactive citizen</Kind>
<Location>4802 Gatewood Dr, Colorado Springs, CO, USA</Location>
<Common>
<Citations>
<li href="http://www.fastcompany.com/1709448/beekeeper-who-leaked-epa-documents-i-dont-think-we-can-survive-winter">Schwartz, Ariel. Beekeeper Who Leaked EPA Documents: "I Don't Think We Can Survive This Winter" Fast Company. 13 December, 2010. Visited: July 9, 2013.</li>
<li href="http://www.frontrangeliving.com/cooking/Honeybee.htm">Hayden, Niki. THE PLIGHT OF THE HONEYBEE Front Range Living. Spring and Summer, 2013. Visited: July 9, 2013.</li>
<li href="http://howonearthradio.org/archives/1807">Schlender, Shelley. "Pesticides, Bees and Niwot Honey Farm’s Tom Theobald [extended version]" How on Earth. 30 March, 2012. Visited: July 9, 2013.</li>
<li href="http://www.theorganicview.com/uncategorized/david-bronner-talks-about-the-right2knowmarch-org-gmo-labeling-now/">Stoyer, June. "David Bronner Talks About The Right2KnowMarch.org: GMO Labeling Now!" The Organic View. 29 September, 2011. Visited: July 9, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://beyondpesticides.org/pollinators/Available%20for%20Interviews.pdf">Pollinators available for interviews</li>
</ExternalLinks>
<Images>
<li embed="http://howonearthradio.org/wp-content/uploads/2012/03/Beekeeper-Tom-Theobald.jpg" text="img not found">Tom Theobald</li>
<li embed="http://www.theorganicview.com/wp-content/uploads/2011/08/Tom-Theobald-Photo-by-Catherine-Jaffee.jpg" text="img not found">Tom Theobald</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/2zuJdY_Wrng" />
<li embed="//www.youtube.com/embed/grRdue1wG3M" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?client=ubuntu&channel=fs&oe=utf-8&q=4802+Gatewood+Dr,+Colorado+Springs,+CO+%E2%80%8E&ie=UTF8&hq=&hnear=4802+Gatewood+Dr,+Colorado+Springs,+Colorado+80916&gl=us&t=h&ll=38.800855,-104.739532&spn=0.032107,0.054932&z=14&iwloc=A&output=embed" />
</Maps>
<Feeds>
<li embed="https://twitter.com/MrTomTheobald">Twitter</li>
</Feeds>
<Summary>Tom Theobald is a beekeeper in Colorado. His farm has suffered from colony colapse disorder, where worker bees disappear from the hive.</Summary>
</Common>
</Person>
<Person ID="PER_DLVRUS" Name="Dilma Vana Rousseff">
<Crises>
<Crisis ID="CRI_BRZLPR"></Crisis>
</Crises>
<Organizations>
<Org ID="ORG_BRAGOV"/>
</Organizations>
<Kind>Politician</Kind>
<Location>Rio de Janeiro</Location>
<Common>
<Citations>
<li href="http://www.guardian.co.uk/world/2013/jun/29/brazilian-dilma-rousseff-support-protests?INTCMP=SRCH"> "Brazilian president Dilma Rousseff's support plummets in wake of protests". The Guardian. 29 June, 2013. Visited: 11 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/Dilma_Rousseff">Wikipedia: Dilma Rousseff</li>
</ExternalLinks>
<Images>
<li embed="http://upload.wikimedia.org/wikipedia/commons/8/81/Dilma_Rousseff_-_foto_oficial_2011-01-09.jpg" text="img not found"/>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/Mic0AYK8F-c" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=brasilia,+brazil&aq=&sll=-14.235004,-51.92528&sspn=77.521511,50.712891&ie=UTF8&hq=&hnear=Bras%C3%ADlia+-+Federal+District,+Brazil&t=m&z=8&iwloc=A&output=embed"></li>
</Maps>
<Feeds>
<li embed="https://twitter.com/dilmabr">Dilma Rousseff Twitter</li>
<li embed="https://www.facebook.com/SiteDilmaRousseff">Dilma Rousseff on Facebook</li>
</Feeds>
<Summary>Dilma Rousseff is the current president of Brazil.</Summary>
</Common>
</Person>
<Person ID="PER_ESNWDN" Name="Edward Snowden">
<Crises>
<Crisis ID="CRI_NSAWRT"></Crisis>
</Crises>
<Organizations><Org ID="ORG_NSAAAA"/></Organizations>
<Kind>Proactive citizen</Kind>
<Location>Moscow, Russia</Location>
<!-- More elements here -->
<Common>
<Citations>
<li href="http://en.wikipedia.org/wiki/Edward_Snowden"> Edward Snowden. Wikipedia. Updated: 7 July, 2013. Visited: 7 July, 2013. </li>
<li href="http://www.guardian.co.uk/world/2013/jul/08/edward-snowden-surveillance-excess-interview"> Greenwald, Glenn. Edward Snowden: US surveillance 'not something I'm willing to live under'. The Guardian. 8 July, 2013. Visited: July 9, 2013. </li>
<li href="http://www.guardian.co.uk/world/2013/jul/05/edward-snowden-nsa-whistleblower-spy">Ackerman, Spencer. "Edward Snowden is a Whistleblower, Not a Spy - But Do Our Leaders Care?". The Guardian. 5 July, 2013. Visited: July 7, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://www.cnn.com/2013/06/10/politics/edward-snowden-profile">CNN: Eric Snowden, A Profile</li>
<li href="http://www.fool.com/investing/general/2013/07/06/is-edward-snowden-a-hero-or-a-villain.aspx">The Motley Fool: Is Snowden a Hero or a Villain?</li>
</ExternalLinks>
<Images>
<li embed="http://static.guim.co.uk/sys-images/Guardian/Pix/pictures/2013/6/11/1370966794013/Lindsay-Mills-girlfriend--010.jpg" text="img not found">Edward Snowden's Girlfriend Lindsay</li>
<li embed="http://newswire.kulmun.be/wp-content/uploads/2013/03/NicolasMaduro.jpg" text="img not found">Venezuelan President Nicolas Maduro Maduro is one of the few leaders who has offered political asylum to Snowden</li>
<li embed="http://upload.wikimedia.org/wikipedia/commons/c/c5/Vladimir_Putin_beefcake-1.jpg" text="img not found">Russian President Vladimir Putin. He recently agreed to grant Snowden political asylum for 1 year.</li>
<li embed="http://www.thedailysheeple.com/wp-content/uploads/2013/06/snowden.jpg" text="img not found">Edward Snowden being interviewed in Hong Kong after leaking details of NSA's surveillance program to the press</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/wB4Gn0u4DSE" />
<li embed="//www.youtube.com/embed/qiWpJuUWqOA" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Russia&aq=&sll=30.245673,-97.768836&sspn=0.141324,0.264187&g=78704&ie=UTF8&hq=&hnear=Russia&ll=61.52401,105.318756&spn=47.221317,135.263672&t=m&z=4&output=embed"/>
</Maps>
<Feeds>
<li embed="https://www.facebook.com/pages/Edward-Snowden/548707555193474">Edward Snowden's Facebook page</li>
<li embed="https://twitter.com/EJosephSnowden">Edward Snowden's Twitter page</li>
</Feeds>
<Summary>Edward Snowden is a whistleblower who revealed the NSA's PRISM surveillance program. Throughout his life, he has had a history of working in defense of the US government, first as a Special Forces recruit, then as an NSA security guard, and finally as a private contractor working for Booz Allen Hamilton inside the NSA at the Kunia Regional SIGINT Operations Center in Hawaii. He grew increasingly unsettled as he learned just how far the US government was going with its surveillance program and believed that the decision of how far the US government was allowed to go lay with the American people and not with the NSA or the executive branch. In an attempt to correct the situation, he released information about the NSA's PRISM surveillance program to The Guardian's Glenn Greenwald and fled the US to first Hong Kong and later Russia. Currently, he is trapped in Moscow Airport, attempting to gain political asylum and safe transport to another country.</Summary>
</Common>
</Person>
<Person ID="PER_RFLCRR" Name="Rafael Correa">
<Crises>
<Crisis ID="CRI_NSAWRT"></Crisis>
</Crises>
<Organizations>
<Org ID="ORG_NSAAAA"/>
</Organizations>
<Kind>Politician</Kind>
<Location>Ecuador</Location>
<Common>
<Citations>
<li href="http://en.wikipedia.org/wiki/Rafael_Correa">"Rafael Correa". Wikipedia. Updated: 15 July, 2013. Visited: 23 July, 2013.</li>
<li href="http://www.theaustralian.com.au/news/world/ecuador-leader-rafael-correa-urges-julian-assange-settlement/story-e6frg6so-1226580631223">"Ecuador Leader Rafael Correa Urges Julian Assange Settlement". The Australian. 19 February, 2013. Visited: 23 July, 2013.</li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/Rafael_Correa">Wikipedia: Rafael Correa</li>
<li href="http://en.mercopress.com/2011/05/10/president-correa-s-victory-margin-in-controversial-referendum-is-narrowing">Rafael Correa's Controversial Referendum</li>
<li href="http://www.theaustralian.com.au/news/world/ecuador-leader-rafael-correa-urges-julian-assange-settlement/story-e6frg6so-1226580631223">
Ecuadorian Leader Rafael Correa Urges Julian Assange Settlement</li>
<li href="http://www.politico.com/story/2013/06/edward-snowden-ecuador-93600.html">Rafael Correa On Edward Snowden's Situation</li>
</ExternalLinks>
<Images>
<li embed="http://cdn.informationnigeria.org/wp-content/uploads/2013/06/ecuador-rafael-correa.gif" text="img not found">Ecuadorian President Rafael Correa</li>
<li embed="http://en.mercopress.com/data/cache/noticias/31429/0x0/rafael-correa.jpg" text="img not found">Rafael Correa anxiously awaiting the results of a controversial referendum to ban cockfighting</li>
</Images>
<Videos>
<li embed="//www.youtube.com/embed/dAGjn547tcs" />
<li embed="//www.youtube.com/embed/ZvUwC5JTAJY" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?q=ecuador&ie=UTF8&hq=&hnear=Ecuador&t=m&ll=-1.845384,-78.134766&spn=30.383735,37.353516&z=4&output=embed" />
</Maps>
<Feeds>
<li embed="https://www.facebook.com/pages/Rafael-Correa/15525611124">Rafael Correa On Facebook</li>
<li embed="https://twitter.com/MashiRafael">Rafael Correa On Twitter</li>
</Feeds>
<Summary>Rafael Correa is the president of the Republic of Ecuador. He is also the former president of the Union of South American Nations. Elected in 2006, he used his power as president of Ecuador to declare Ecuador's national debt illegitimate and successfully fought in international courts to have the debt reduced by 60%. He is currently famous, however, for offering to provide asylum to Edward Snowden, the whistleblower who leaked information about the American government's vast surveillance program known as PRISM and for protecting Wikileaks founder Julian Assange by allowing him to remain within the Ecuadorian embassy in the United Kingdom.</Summary>
</Common>
</Person>
<Person ID="PER_GUZMAN" Name="Joaquin Guzman Loera">
<Crises>
<Crisis ID="CRI_MEXDRG" />
</Crises>
<Organizations>
<Org ID="ORG_SINCAR" />
</Organizations>
<Kind>Criminal organization leader</Kind>
<Location>Mexico</Location>
<Common>
<ExternalLinks>
<li href="http://www.forbes.com/profile/joaquin-guzman-loera/">Forbes: Guzman Fortune</li>
<li href="http://web.archive.org/web/20080315071013/http://www.state.gov/p/inl/narc/rewards/39413.htm">US State Dept: Bounty</li>
<li href="http://www.forbes.com/sites/nathanvardi/2011/06/15/joaquin-guzman-has-become-the-biggest-drug-lord-ever/">Forbes: Biggest Drug Lord Ever</li>
</ExternalLinks>
<Images>
<li embed="http://2.bp.blogspot.com/-u-TnjeTzz24/TsmuUHOMNdI/AAAAAAAAI0c/QHrUSxufOVw/s1600/chapo01.jpg" text="This is the alt element of the image." />
<li embed="http://images.forbes.com/media/lists/10/2009/joaquin-guzman-loera.jpg" text="This is the alt element of the image." />
</Images>
<Videos>
<li embed="//www.youtube.com/embed/v7h3WkcEU00" />
<li embed="//www.youtube.com/embed/H6X1nFa53uQ" />
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Culiac%C3%A1n,+Mexico&aq=0&oq=culiacan&sll=-14.235004,-51.92528&sspn=39.825179,67.631836&ie=UTF8&hq=&hnear=Culiac%C3%A1n,+Sinaloa,+Mexico&t=m&z=12&iwloc=A&output=embed"></li>
</Maps>
<Feeds>
<li embed='https://www.facebook.com/pages/Joaquin-Guzman-Loera/192872947436040'>Joaquin Guzman on Facebook</li>
</Feeds>
<Summary>
Joaquin Guzman Loera, also known as "El Chapo Guzman" is the leader of Mexico's most powerful drug cartel, the Sinaloas. According to Forbes, Guzman is a billionaire and the "biggest drug lord ever." He is Mexico's wanted man with a US State Department reward of up to $5 million for information leading to his arrest.
</Summary>
</Common>
</Person>
<Person ID="PER_RPERRY" Name="Rick Perry">
<Crises>
<Crisis ID="CRI_TXWDFR" />
</Crises>
<Organizations>
<Org ID="ORG_FEMAAA" />
</Organizations>
<Kind>Politician</Kind>
<Location>Texas</Location>
<Common>
<Citations>
<li href="http://en.wikipedia.org/wiki/Rick_Perry"> "Rick Perry". Wikipedia. 9 July, 2013. Visited: 12 July, 2013. </li>
</Citations>
<ExternalLinks>
<li href="http://en.wikipedia.org/wiki/Rick_Perry">Wikipedia: Rick Perry</li>
<li href="http://www.usatoday.com/story/news/politics/2013/07/08/rick-perry-texas-governor-president/2497773/">USA Today: Rick Perry Won't Run Again</li>
<li href="http://www.governor.state.tx.us/">Governor of the State of Texas Website</li>
</ExternalLinks>
<Images>
<li embed="http://governor.state.tx.us/multimedia/photos/TexasGovernorRickPerry.jpg" text="img not found">Governor Rick Perry posing for a photo</li>
<li embed="http://a.abcnews.com/images/Politics/ap_Rick_Perry_2_jt_110813_wg.jpg" text="img not found">Governor Rick Perry in the middle of a fiery speech</li>
</Images>
<Videos>
<li embed='//www.youtube.com/embed/0uvmKnFY4uk'></li>
<li embed='//www.youtube.com/embed/iESaX8YioyQ'></li>
<li embed='//www.youtube.com/embed/iaXDrTGmCgU'></li>
</Videos>
<Maps>
<li embed="https://maps.google.com/maps?q=texas&client=ubuntu&channel=cs&ie=UTF8&hl=en&hq=&hnear=Texas&t=h&z=5&iwloc=A&output=embed"></li>
</Maps>
<Feeds>
<li embed="https://www.facebook.com/GovernorPerry">Governor Perry's Facebook</li>
<li embed="https://twitter.com/GovernorPerry">Governor Perry On Twitter</li>
</Feeds>
<Summary>Born in Paint Creek, Texas on March 4, 1950, Rick Perry is currently the Governor of the state of Texas. He is a staunchly conservative politician who is famous for attempting to name 3 federal agencies he intended to end if he won the 2012 Presidential Election but failing to be able to name the third. He is also famous for holding 3 days of prayer in an attempt to end the Texas Wildfire crisis in 2011. Eventually, Texas firefighters were able to successfully put out the flames as the wildfire season drew to a close. Perry requested federal aid, and in response, FEMA reimbursed the state of Texas $48 million for fire suppression costs.</Summary>
</Common>
</Person>
<Person ID="PER_MMORSI" Name="Mohammed Morsi">
<Crises>
<Crisis ID="CRI_EGYPTR" />
</Crises>
<Organizations>
<Org ID="ORG_EGYGOV" />
</Organizations>
<Kind>Politician</Kind>