Loading gexf file with 0-weighted edges crashes import #1945
Closed
Description
If you try to read a gexf file having zero-weighted edges, the importation will crash and the UI won't budge. If you click on the notification in the bottom right of the UI, you'll see a NullPointerException when gephi tries to drop the useless edges.
It would be nice to either fix this or to display an error message telling the user to fix the graph?
Context
Just loading a generated graph with edges erroneously having zero weighted edges.
Your Environment
- Version used: Gephi 0.9.2
- Java version:
- Operating System: MacOS
Sample gexf file failing
<?xml version="1.0" encoding="UTF-8"?>
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz">
<meta/>
<graph defaultedgetype="directed">
<attributes class="node">
<attribute id="type" title="type" type="string"/>
<attribute id="continent" title="continent" type="string"/>
<attribute id="world_Exp" title="world_Exp" type="string"/>
<attribute id="world_Imp" title="world_Imp" type="string"/>
</attributes>
<attributes class="edge">
<attribute id="direction" title="direction" type="string"/>
</attributes>
<nodes>
<node id="Philippines" label="Philippines">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="655098712.273588"/>
<attvalue for="world_Imp" value="588433533.1991467"/>
</attvalues>
</node>
<node id="UnitedStatesofAmerica" label="United States of America">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="7264995600"/>
<attvalue for="world_Imp" value="5292929100"/>
</attvalues>
</node>
<node id="Canada" label="Canada">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="397446692.70320004"/>
<attvalue for="world_Imp" value="933156593.8989"/>
</attvalues>
</node>
<node id="UnitedKingdom" label="United Kingdom">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="329816614"/>
<attvalue for="world_Imp" value="487219917"/>
</attvalues>
</node>
<node id="France" label="France">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="122334398399.99998"/>
<attvalue for="world_Imp" value="120122430399.99998"/>
</attvalues>
</node>
<node id="Germany" label="Germany">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="117119514400.00002"/>
<attvalue for="world_Imp" value="145673986000"/>
</attvalues>
</node>
<node id="Spain" label="Spain">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="42200400000"/>
<attvalue for="world_Imp" value="39781500000"/>
</attvalues>
</node>
<node id="Belgium" label="Belgium">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="35500253936.0148"/>
<attvalue for="world_Imp" value="54596241747.09"/>
</attvalues>
</node>
<node id="Switzerland" label="Switzerland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="25387061370"/>
<attvalue for="world_Imp" value="36735131180"/>
</attvalues>
</node>
<node id="Italy" label="Italy">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="43527294357.99999"/>
<attvalue for="world_Imp" value="51917842378"/>
</attvalues>
</node>
<node id="Netherlands" label="Netherlands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="11378969000.000002"/>
<attvalue for="world_Imp" value="12575483000"/>
</attvalues>
</node>
<node id="BritishAsia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="IndonesiaDutchEastIndies" label="Indonesia (Dutch East Indies)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="3529958020"/>
<attvalue for="world_Imp" value="2370910620"/>
</attvalues>
</node>
<node id="FrenchIndia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="ChinaPeople'sRepublicofChina" label="China (People's Republic of China)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="1515046185.040781"/>
<attvalue for="world_Imp" value="3066113232.1314054"/>
</attvalues>
</node>
<node id="HongKong">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Japan" label="Japan">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="3380310681.763304"/>
<attvalue for="world_Imp" value="4921639970.041577"/>
</attvalues>
</node>
<node id="Oceania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Algeria" label="Algeria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="5750186768"/>
<attvalue for="world_Imp" value="9649383632"/>
</attvalues>
</node>
<node id="Australia" label="Australia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="56841035"/>
<attvalue for="world_Imp" value="38346731"/>
</attvalues>
</node>
<node id="Africaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Asiaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Austria-Hungary" label="Austria-Hungary">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="53862836412"/>
<attvalue for="world_Imp" value="51518781118.200005"/>
</attvalues>
</node>
<node id="Bolivia" label="Bolivia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="3360000"/>
<attvalue for="world_Imp" value="2224000"/>
</attvalues>
</node>
<node id="Brazil" label="Brazil">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Imp" value="29830050"/>
</attvalues>
</node>
<node id="Bulgaria" label="Bulgaria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="3719139853.568"/>
<attvalue for="world_Imp" value="3072874441.568"/>
</attvalues>
</node>
<node id="Chile" label="Chile">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="4049479152.6480002"/>
<attvalue for="world_Imp" value="2879678706.442"/>
</attvalues>
</node>
<node id="ColombiaGranColombia" label="Colombia (Gran Colombia)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="62813970.00000001"/>
<attvalue for="world_Imp" value="73039500"/>
</attvalues>
</node>
<node id="BritishAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="NetherlandsAntilles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="CongoBrazzavilleFrenchCongoMiddleCongo_FrenchWestAfricaother_Senegal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="WestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Cuba_PuertoRico">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Denmark" label="Denmark">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="29642000"/>
<attvalue for="world_Imp" value="34585000"/>
</attvalues>
</node>
<node id="EgyptUnitedArabRepublic" label="Egypt/United Arab Republic">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="19983169.07458312"/>
<attvalue for="world_Imp" value="21164884.96681289"/>
</attvalues>
</node>
<node id="Ecuador" label="Ecuador">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1857000"/>
<attvalue for="world_Imp" value="1573000"/>
</attvalues>
</node>
<node id="FrenchOceania" label="French Oceania">
<attvalues>
<attvalue for="type" value="colonial_area"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="76981513.6"/>
<attvalue for="world_Imp" value="76116835.19999999"/>
</attvalues>
</node>
<node id="Greece" label="Greece">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="2596429584.0000005"/>
<attvalue for="world_Imp" value="4397838144"/>
</attvalues>
</node>
<node id="Guadeloupe" label="Guadeloupe">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="393063471.056"/>
<attvalue for="world_Imp" value="337788099.98399997"/>
</attvalues>
</node>
<node id="CostaRica_ElSalvador_Guatemala_Honduras_Nicaragua">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="FrenchGuyana" label="French Guyana">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="249839045.776"/>
<attvalue for="world_Imp" value="287540130"/>
</attvalues>
</node>
<node id="DominicanRepublicSantoDomingo_Haiti">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Reunion" label="Reunion">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="244026622.272"/>
<attvalue for="world_Imp" value="457093736.064"/>
</attvalues>
</node>
<node id="India" label="India">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="23684090482.531998"/>
<attvalue for="world_Imp" value="16785669437.268"/>
</attvalues>
</node>
<node id="FrenchIndochina" label="French Indochina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="3066818224"/>
<attvalue for="world_Imp" value="6398620160"/>
</attvalues>
</node>
<node id="MalagasyRepublicMadagascar_MalagasyRepublicMadagascarDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Martinique" label="Martinique">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="454192991.39199996"/>
<attvalue for="world_Imp" value="370986547.39199996"/>
</attvalues>
</node>
<node id="Mexico" label="Mexico">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1854265217.332305"/>
<attvalue for="world_Imp" value="430610000"/>
</attvalues>
</node>
<node id="Norway" label="Norway">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="12109000"/>
<attvalue for="world_Imp" value="17352000"/>
</attvalues>
</node>
<node id="Peru" label="Peru">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="5606853.84486"/>
<attvalue for="world_Imp" value="4243786.80042"/>
</attvalues>
</node>
<node id="Portugal" label="Portugal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="138997000"/>
<attvalue for="world_Imp" value="292373000"/>
</attvalues>
</node>
<node id="BritishMediterranean">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Mediterranean"/>
</attvalues>
</node>
<node id="BritishAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Morocco_LibyaTripolitaniaCyrenaicaFezzan">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Argentina" label="Argentina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1607763120"/>
<attvalue for="world_Imp" value="1021666920"/>
</attvalues>
</node>
<node id="Romania" label="Romania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="11427525000"/>
<attvalue for="world_Imp" value="8438450000"/>
</attvalues>
</node>
<node id="ThailandSiam" label="Thailand (Siam)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="1707677474.996562"/>
<attvalue for="world_Imp" value="1138700024.9977076"/>
</attvalues>
</node>
<node id="RussiaUSSR" label="Russia/USSR">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="10145169525"/>
<attvalue for="world_Imp" value="5980614279"/>
</attvalues>
</node>
<node id="St.PierreandMiquelon" label="St. Pierre and Miquelon">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="178950724.79999998"/>
<attvalue for="world_Imp" value="136727272"/>
</attvalues>
</node>
<node id="St.Thomas">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Montenegro_YugoslaviaSerbia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Sweden" label="Sweden">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="8185601338.699999"/>
<attvalue for="world_Imp" value="10434404903.2"/>
</attvalues>
</node>
<node id="Tunisia" label="Tunisia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1464850672"/>
<attvalue for="world_Imp" value="2286244880"/>
</attvalues>
</node>
<node id="Turkey" label="Turkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="24100000"/>
<attvalue for="world_Imp" value="26100000"/>
</attvalues>
</node>
<node id="Uruguay" label="Uruguay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="142400530.20000002"/>
<attvalue for="world_Imp" value="142419039.4"/>
</attvalues>
</node>
<node id="Venezuela" label="Venezuela">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1971628262.9999998"/>
<attvalue for="world_Imp" value="1094448214.5"/>
</attvalues>
</node>
<node id="PaysdeGex_Savoy">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="EthiopiaAbyssinia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Aden" label="Aden">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="2735278"/>
<attvalue for="world_Imp" value="3127353"/>
</attvalues>
</node>
<node id="Afghanistan_BaluchistanKalat">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Antigua_Barbuda">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Arabia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Bahamas" label="Bahamas">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="209962"/>
<attvalue for="world_Imp" value="291953"/>
</attvalues>
</node>
<node id="Barbados" label="Barbados">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="935844"/>
<attvalue for="world_Imp" value="1042562"/>
</attvalues>
</node>
<node id="Bosnia-Herzegovina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Bremen">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="CapeColony" label="Cape Colony">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="13038055"/>
<attvalue for="world_Imp" value="19771181"/>
</attvalues>
</node>
<node id="Cyprus" label="Cyprus">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="438241"/>
<attvalue for="world_Imp" value="482079"/>
</attvalues>
</node>
<node id="KoreaChosen" label="Korea (Chosen)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="76075735.85028893"/>
<attvalue for="world_Imp" value="284113954.5710505"/>
</attvalues>
</node>
<node id="CostaRica" label="Costa Rica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="39626363.4"/>
<attvalue for="world_Imp" value="25510262.7"/>
</attvalues>
</node>
<node id="GermanWestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="BritishWestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="SpanishWestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FrenchWestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="PortugueseWestAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="TanzaniaTanganyikaGermanEastAfrica" label="Tanzania (Tanganyika) (German East Africa)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="203318300.00000003"/>
<attvalue for="world_Imp" value="360762270"/>
</attvalues>
</node>
<node id="BritishEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="DjiboutiAfarandIssasFrenchSomaliland" label="Djibouti (Afar and Issas) (French Somaliland)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="457952784"/>
<attvalue for="world_Imp" value="299869966.4"/>
</attvalues>
</node>
<node id="ItalianEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="PortugueseEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Cuba" label="Cuba">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="522310333.8"/>
<attvalue for="world_Imp" value="518604796.5"/>
</attvalues>
</node>
<node id="ZaireKinshasaBelgianCongo" label="Zaire (Kinshasa) (Belgian Congo)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="2121000"/>
<attvalue for="world_Imp" value="803000"/>
</attvalues>
</node>
<node id="FalklandIs." label="Falkland Is.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="167450"/>
<attvalue for="world_Imp" value="57655"/>
</attvalues>
</node>
<node id="Gibraltar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Luxemburg">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Grenada" label="Grenada">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="283756"/>
<attvalue for="world_Imp" value="233943"/>
</attvalues>
</node>
<node id="Guatemala" label="Guatemala">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1648000"/>
<attvalue for="world_Imp" value="1369000"/>
</attvalues>
</node>
<node id="GuyanaBr.Guiana" label="Guyana (Br. Guiana)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1916242"/>
<attvalue for="world_Imp" value="1584054"/>
</attvalues>
</node>
<node id="Surinam" label="Surinam">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="369000"/>
<attvalue for="world_Imp" value="546000"/>
</attvalues>
</node>
<node id="Haiti">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Hamburg">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Hawaii" label="Hawaii">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="176132319.6"/>
<attvalue for="world_Imp" value="71909822.4"/>
</attvalues>
</node>
<node id="Honduras" label="Honduras">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="11768918.799999999"/>
<attvalue for="world_Imp" value="11496467.6"/>
</attvalues>
</node>
<node id="PortugueseIndiaincl.GoaDiuDaman">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BurmaMyanmar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Jamaica" label="Jamaica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="1436725"/>
<attvalue for="world_Imp" value="1682356"/>
</attvalues>
</node>
<node id="Liberia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Lubeck">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="MalagasyRepublicMadagascar" label="Malagasy Republic (Madagascar)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="574372681.5999999"/>
<attvalue for="world_Imp" value="784202982.4"/>
</attvalues>
</node>
<node id="Malta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Morocco">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Mauritius" label="Mauritius">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="2346406"/>
<attvalue for="world_Imp" value="1823167"/>
</attvalues>
</node>
<node id="Monaco">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Montenegro">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Natal" label="Natal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1757428"/>
<attvalue for="world_Imp" value="10396779"/>
</attvalues>
</node>
<node id="Nicaragua" label="Nicaragua">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="17247060.6"/>
<attvalue for="world_Imp" value="16589705.1"/>
</attvalues>
</node>
<node id="NewCaledoniaandDependencies" label="New Caledonia and Dependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="278265574.4"/>
<attvalue for="world_Imp" value="269626331.2"/>
</attvalues>
</node>
<node id="NewGuineaGermanNewGuineaKaiserWilhelmsland_PapuaNewGuinea_WestIrianDutchNewGuinea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="NewZealand" label="New Zealand">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="62000000"/>
<attvalue for="world_Imp" value="51200000"/>
</attvalues>
</node>
<node id="OrangeFreeStateOrangeRiverColony" label="Orange Free State (Orange River Colony)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="2263925"/>
<attvalue for="world_Imp" value="3251098"/>
</attvalues>
</node>
<node id="Paraguay" label="Paraguay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="567000"/>
<attvalue for="world_Imp" value="936000"/>
</attvalues>
</node>
<node id="IranPersia" label="Iran (Persia)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="17442008500"/>
<attvalue for="world_Imp" value="22994548500"/>
</attvalues>
</node>
<node id="PuertoRico" label="Puerto Rico">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="91104603"/>
<attvalue for="world_Imp" value="80518744.8"/>
</attvalues>
</node>
<node id="St.Lucia" label="St. Lucia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="109028"/>
<attvalue for="world_Imp" value="285987"/>
</attvalues>
</node>
<node id="Samoa" label="Samoa">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="41460586"/>
<attvalue for="world_Imp" value="69209958"/>
</attvalues>
</node>
<node id="ElSalvador" label="El Salvador">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="177647400"/>
<attvalue for="world_Imp" value="21730000"/>
</attvalues>
</node>
<node id="Serbia" label="Serbia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="1809691456"/>
<attvalue for="world_Imp" value="1397586736"/>
</attvalues>
</node>
<node id="Seychelles" label="Seychelles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="57320"/>
<attvalue for="world_Imp" value="52652"/>
</attvalues>
</node>
<node id="LeewardIs." label="Leeward Is.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="394387"/>
<attvalue for="world_Imp" value="418706"/>
</attvalues>
</node>
<node id="Tahiti">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Newfoundland" label="Newfoundland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="2193143"/>
<attvalue for="world_Imp" value="2112966"/>
</attvalues>
</node>
<node id="Transvaal" label="Transvaal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="2162030"/>
<attvalue for="world_Imp" value="15849903"/>
</attvalues>
</node>
<node id="TrinidadandTobago" label="Trinidad and Tobago">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="3168706"/>
<attvalue for="world_Imp" value="3303611"/>
</attvalues>
</node>
<node id="LibyaTripolitaniaCyrenaicaFezzan">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="StraitsSettlements" label="Straits Settlements">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="28296069"/>
<attvalue for="world_Imp" value="33223382"/>
</attvalues>
</node>
<node id="SriLankaCeylon" label="Sri Lanka (Ceylon)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="6832671"/>
<attvalue for="world_Imp" value="7682482"/>
</attvalues>
</node>
<node id="LabuanI." label="Labuan I.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="130135"/>
<attvalue for="world_Imp" value="108767"/>
</attvalues>
</node>
<node id="FederatedMalayStates" label="Federated Malay States">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="792323173.6078594"/>
<attvalue for="world_Imp" value="500540585.5667653"/>
</attvalues>
</node>
<node id="Johore">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SabahNorthBorneo" label="Sabah (North Borneo)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="44902268.04121513"/>
<attvalue for="world_Imp" value="28077525.773182128"/>
</attvalues>
</node>
<node id="Sarawak" label="Sarawak">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="74633576.90717995"/>
<attvalue for="world_Imp" value="58204859.3814148"/>
</attvalues>
</node>
<node id="BritishColoniesother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="NatunaIslands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="DutchColoniesother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="FrenchColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="MalaysiaMalayaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Philippines_SuluSultanate">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Brunei">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MaldiveIslands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Java">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Borneo">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MauritiusDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="KenyaBritishEastAfricaProtectorate_Zanzibar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="DutchColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Pondicherry">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MaputoBayDelagoaBay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="NewSouthWales">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Victoria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="SouthAustralia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="WesternAustralia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Tasmania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Queensland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Fiji" label="Fiji">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="706403"/>
<attvalue for="world_Imp" value="442852"/>
</attvalues>
</node>
<node id="MaldenI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="WesternAnatolia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="PacificIslands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Pacific"/>
</attvalues>
</node>
<node id="MalawiNyasaland" label="Malawi (Nyasaland)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="68850"/>
<attvalue for="world_Imp" value="235749"/>
</attvalues>
</node>
<node id="Aden_BritishEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Othercountries_ZimbabweRhodesiaSouthernRhodesia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="GermanEastAfrica_Germany">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Portugal_PortugueseEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="EastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Uganda" label="Uganda">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="67375"/>
<attvalue for="world_Imp" value="149737"/>
</attvalues>
</node>
<node id="KenyaBritishEastAfricaProtectorate" label="Kenya (British East Africa Protectorate)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="214577"/>
<attvalue for="world_Imp" value="518143"/>
</attvalues>
</node>
<node id="Europeother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="BritishSouthAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Zanzibar" label="Zanzibar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1120640"/>
<attvalue for="world_Imp" value="1109956"/>
</attvalues>
</node>
<node id="Norway_Sweden">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="AfricaPortsother_AsiaPortsother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="BritishSomalilandSomalilandRepublic" label="British Somaliland (Somaliland Republic)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="202732"/>
<attvalue for="world_Imp" value="261827.99999999997"/>
</attvalues>
</node>
<node id="PerimI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Karachi">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MumbaiBombay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="KolkataCalcutta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BenderKassim">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Assab_Bailul_Massawah">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Bussarah">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Mocha">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="AlMukalla">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SouthernNigeria" label="Southern Nigeria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1710941"/>
<attvalue for="world_Imp" value="1753536"/>
</attvalues>
</node>
<node id="Lagos" label="Lagos">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1139271"/>
<attvalue for="world_Imp" value="1222765"/>
</attvalues>
</node>
<node id="GhanaGoldCoast" label="Ghana (Gold Coast)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="1646145"/>
<attvalue for="world_Imp" value="1486068"/>
</attvalues>
</node>
<node id="SierraLeone" label="Sierra Leone">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="563150"/>
<attvalue for="world_Imp" value="702648"/>
</attvalues>
</node>
<node id="PortoNovo">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="WestAfricanColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="PortugueseColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="SpanishColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Africa">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Gambia" label="Gambia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="280272"/>
<attvalue for="world_Imp" value="305181"/>
</attvalues>
</node>
<node id="WindwardCoastofAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="LeewardCoastofAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Nigeria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="BritishWestIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Antillesother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Bermuda" label="Bermuda">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="158421"/>
<attvalue for="world_Imp" value="543222"/>
</attvalues>
</node>
<node id="EastIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BritishNorthAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="FrenchWestIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Portugal_PortugueseColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="SouthernAmericaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Tenerife">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="BelizeBritishHonduras" label="Belize (British Honduras)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="377246"/>
<attvalue for="world_Imp" value="385737"/>
</attvalues>
</node>
<node id="BritishColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Finland" label="Finland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="6286483040"/>
<attvalue for="world_Imp" value="6805147320"/>
</attvalues>
</node>
<node id="NorthernAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="SouthernAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Finland_RussiaUSSR">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="FaeroeIs._Iceland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="MadeiraIsles_Portugal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="CanaryIs._Spain">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Greece_Turkey_Romania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Australia_NewZealand">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Iceland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="FaeroeIs._Greenland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="VirginIslandsDanishWestIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Asiaother_EastIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="EuropeanRussia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Bulgaria_Romania_YugoslaviaSerbia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="ChinaPeople'sRepublicofChina_FrenchIndochina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Antilles_CentralAmerica_Mexico">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Argentina_Uruguay_Paraguay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="EuropeanTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="IranPersia_Middle-East_AsianTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BarbaryCoast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Austria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Angola" label="Angola">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="21089200"/>
<attvalue for="world_Imp" value="29716600.000000004"/>
</attvalues>
</node>
<node id="CapeVerde">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="GuineaFrenchGuineaRivieresduSud" label="Guinea (French Guinea) (Rivieres du Sud)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="411569323.2"/>
<attvalue for="world_Imp" value="475693772.79999995"/>
</attvalues>
</node>
<node id="St.Thomas_PrinceEdwardIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Mozambique">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Macao_PortugueseTimor">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Panama">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Alaska" label="Alaska">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="102006965.7"/>
<attvalue for="world_Imp" value="63081781.5"/>
</attvalues>
</node>
<node id="AsianRussia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="CanaryIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Algeria_France">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="ChinaPeople'sRepublicofChina_Japan">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Germany_GermanColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="DutchColonies_Netherlands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="France_FrenchColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="ItalianColonies_Italy">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="AmericanColonies_UnitedStatesofAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Afghanistan">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="EuropeanTurkey_AsianTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Australiaother_Tasmania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Singapore">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Portugal_Spain">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="DominicanRepublicSantoDomingo">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Japan_RepublicofChinaTaiwanFormosa">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="HoChiMinhCity">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SuezCanalZone">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FranceFrenchproduce">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="FrenchColoniesFrenchproduce">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="FrenchColoniesForeignproduce">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Antilles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="AzoresWesternIsles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="CentralAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="CochinChina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="ColombiaGranColombia_Ecuador_Venezuela">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Curacao" label="Curacao">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="38000"/>
<attvalue for="world_Imp" value="227000"/>
</attvalues>
</node>
<node id="IndonesiaDutchEastIndiesother_Java">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MecklenburgSchwerin">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Bolivia_Peru">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="BuenosAires">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="SouthWestAfricaGermanWestAfricaNamibia" label="South West Africa (German West Africa) (Namibia)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="11000"/>
<attvalue for="world_Imp" value="1162000"/>
</attvalues>
</node>
<node id="EastIndiesother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="EuropeanTurkey_AsianTurkey_AfricanTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Americaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Trieste">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="FrenchEquatorialAfrica" label="French Equatorial Africa">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="349817712"/>
<attvalue for="world_Imp" value="260886544"/>
</attvalues>
</node>
<node id="GermanColonies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Bosnia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="America">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Belgium_Luxemburg">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussiaNorthPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussiaSouthPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Denmark_FaeroeIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Greenland_Iceland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="NewGuineaGermanNewGuineaKaiserWilhelmsland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="GermanOceania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="BanjermassinDutchBorneo">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="DutchOceaniaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="FrenchEastAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Annam_CochinChina_KampucheaCambodia_Tonkin">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MadeiraIsles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Macao">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Crete" label="Crete">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
<attvalue for="world_Exp" value="449000"/>
<attvalue for="world_Imp" value="607000"/>
</attvalues>
</node>
<node id="AsianTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Tunis">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="UnitedStatesofAmericaAtlanticCoast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="UnitedStatesofAmericaPacificCoast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Guam_Philippines">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="ChannelIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Gozo_Malta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="AscensionI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="St.Helena" label="St. Helena">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="7635"/>
<attvalue for="world_Imp" value="52787"/>
</attvalues>
</node>
<node id="PembaIsland_Zanzibar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Mauritius_MauritiusDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Aden_AdenDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Karachi_MumbaiBombay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="ChennaiMadras">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Bengal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="StraitsSettlements_StraitsSettlementsDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="SriLankaCeylon_SriLankaCeylonDependencies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="PapuaNewGuinea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="NorthernTerritory_SouthAustralia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="BritishOceaniaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="CanadaAtlanticCoast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="CanadaPacificCoast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="RussiaPacificPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="SpanishNorthAfricaPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Muscat">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="PacificIslandsother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Pacific"/>
</attvalues>
</node>
<node id="Weihaiwei">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="AlHoceima">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Andorra">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Ceuta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Chafarinas">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Melilla">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="GermanAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="DanishAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="DanishEurope">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="FrenchAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FrenchAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="FrenchAsia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="DutchAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="DutchAsia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="DutchOceania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="BritishEurope">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="BritishOceania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="PortugueseAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="PortugueseAsia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Bremen_Hanover">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Baden">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Heligoland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Cyprus_Gibraltar_Malta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="BritishAmericaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Kamerun" label="Kamerun">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="458000"/>
<attvalue for="world_Imp" value="862000"/>
</attvalues>
</node>
<node id="TogoFrenchTogoland" label="Togo (French Togoland)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="195000"/>
<attvalue for="world_Imp" value="382000"/>
</attvalues>
</node>
<node id="SouthAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Vietnam">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MalaysiaMalaya">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="AzoresWesternIsles_MadeiraIsles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="BritishChina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BritishColumbia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="FrenchChina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="FaeroeIs._Greenland_Iceland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Cyprus_Gozo_Malta">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="NewBrunswick_NovaScotia_PrinceEdwardIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="BritishEastIndies">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="QuebecLowerCanada_OntarioUpperCanada_Manitoba_Rupert'sLand_NorthwestTerritories">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="RussiaBalticSea_RussiaWhiteSea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussiaBlackSea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussianChina">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SpanishAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Tonga" label="Tonga">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="117855"/>
<attvalue for="world_Imp" value="70868"/>
</attvalues>
</node>
<node id="Trengganu">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Brooketon">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Sambas">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Pontianak">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SungaiPetani">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Benadir">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="SouthernAfricaPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="OthercountriesnonBritish">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Penang">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Malacca">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="FranceForeignproduce">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="MalagasyRepublicMadagascar_Mayotte_NossiBe">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FrenchOceaniaother_NewCaledonia">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Senegal" label="Senegal">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="617449627.28"/>
<attvalue for="world_Imp" value="1340120259.8079998"/>
</attvalues>
</node>
<node id="Paraguay_Uruguay">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="***NA">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="null"/>
</attvalues>
</node>
<node id="Othercountries">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="AfricaCoastWestother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FanningI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="NorfolkI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="IndianOceanIslands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Papua" label="Papua">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="24125"/>
<attvalue for="world_Imp" value="66888"/>
</attvalues>
</node>
<node id="SulawesiCelebes">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="MalukuIslandsMollucas">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="WestIrianDutchNewGuinea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Sumatra">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="PortugueseTimor">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BismarckArchipelago">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="CarolineIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="Guam">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="MarshallIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="NewHebrides">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="SocietyIs.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="SouthSeaIslands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Pacific"/>
</attvalues>
</node>
<node id="ChristmasI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="CentralAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="CongoBrazzavilleFrenchCongoMiddleCongo" label="Congo (Brazzaville) (French Congo) (Middle Congo)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="350212347.20000005"/>
<attvalue for="world_Imp" value="260889057.6"/>
</attvalues>
</node>
<node id="Greenland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="NewBritainNeuPommern">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="SocotraI.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="SpanishColoniesother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Singapore_StraitsSettlements">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="IndonesiaDutchEastIndies_NetherlandsAntilles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Aden_Algeria_EgyptUnitedArabRepublic_IranPersia_Morocco_AsianTurkey">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="Gibraltar_Spain">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussiaEuropeanPorts">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="RussiaandSiberialand">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Hawaii_UnitedStatesofAmerica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="CentralAmerica_Mexico_Panama">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Mauritius_SouthAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="LabuanI._StraitsSettlements">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Mauritius_MauritiusDependencies_Seychelles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="World"/>
</attvalues>
</node>
<node id="BritishEastAfrica_PembaIsland_Zanzibar">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="EuropeanTurkey_Crete">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="Makran_Sonmiani">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Eritrea_ItalianSomaliland">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="EastAfricaPortsother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Bahrain">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Brunei_LabuanI._SabahNorthBorneo_Sarawak">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="NorthernAfrica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="Samos">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Europe"/>
</attvalues>
</node>
<node id="India_SriLankaCeylon">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="BritishAsiaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
</attvalues>
</node>
<node id="Eritrea">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
</attvalues>
</node>
<node id="FrenchAntilles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="CentralAmericaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Oceaniaother">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="BritishAntilles">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Arica">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Tacna">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
</attvalues>
</node>
<node id="Australia_Oceania">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
</attvalues>
</node>
<node id="BeninDahomey" label="Benin (Dahomey)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="191890737.6"/>
<attvalue for="world_Imp" value="269772120"/>
</attvalues>
</node>
<node id="Gabon" label="Gabon">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="144934176"/>
<attvalue for="world_Imp" value="130506112"/>
</attvalues>
</node>
<node id="GilbertandElliceIs." label="Gilbert and Ellice Is.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="33911"/>
<attvalue for="world_Imp" value="30101"/>
</attvalues>
</node>
<node id="Guinea-BissauPortugueseGuinea" label="Guinea-Bissau (Portuguese Guinea)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="2060989.9999999998"/>
<attvalue for="world_Imp" value="3403030"/>
</attvalues>
</node>
<node id="IvoryCoast" label="Ivory Coast">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="191933468.8"/>
<attvalue for="world_Imp" value="349272260.8"/>
</attvalues>
</node>
<node id="Kiauchau" label="Kiauchau">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="982000"/>
<attvalue for="world_Imp" value="2206000"/>
</attvalues>
</node>
<node id="LesothoBasutoland" label="Lesotho (Basutoland)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="164817"/>
<attvalue for="world_Imp" value="149821"/>
</attvalues>
</node>
<node id="Mayotte" label="Mayotte">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="77838651.19999999"/>
<attvalue for="world_Imp" value="19402478.4"/>
</attvalues>
</node>
<node id="NewGuineaGermanNewGuineaKaiserWilhelmsland_NewGuineaGermanNewGuineaKaiserWilhelmslanddependencies" label="New Guinea (German New Guinea) (Kaiser Wilhelmsland) and New Guinea (German New Guinea) (Kaiser Wilhelmsland) dependencies">
<attvalues>
<attvalue for="type" value="group"/>
<attvalue for="continent" value="World"/>
<attvalue for="world_Exp" value="116000"/>
<attvalue for="world_Imp" value="269000"/>
</attvalues>
</node>
<node id="NorthernNigeria" label="Northern Nigeria">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="148258"/>
</attvalues>
</node>
<node id="RepublicofChinaTaiwanFormosa" label="Republic of China (Taiwan) (Formosa)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Asia"/>
<attvalue for="world_Exp" value="594000000"/>
<attvalue for="world_Imp" value="485100000"/>
</attvalues>
</node>
<node id="SolomonIslands" label="Solomon Islands">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Oceania"/>
<attvalue for="world_Exp" value="47405"/>
<attvalue for="world_Imp" value="33656"/>
</attvalues>
</node>
<node id="St.VincentandtheGrenadines" label="St. Vincent and the Grenadines">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="53078"/>
<attvalue for="world_Imp" value="69097"/>
</attvalues>
</node>
<node id="TurksandCaicosIs." label="Turks and Caicos Is.">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="America"/>
<attvalue for="world_Exp" value="24022"/>
<attvalue for="world_Imp" value="28230"/>
</attvalues>
</node>
<node id="ZimbabweRhodesiaSouthernRhodesia" label="Zimbabwe (Rhodesia) (Southern Rhodesia)">
<attvalues>
<attvalue for="type" value="country"/>
<attvalue for="continent" value="Africa"/>
<attvalue for="world_Exp" value="488953"/>
<attvalue for="world_Imp" value="1209936"/>
</attvalues>
</node>
</nodes>
<edges>
<edge id="_geid0_" source="Philippines" target="UnitedStatesofAmerica" weight="288243433.40037876">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid1_" source="Philippines" target="Canada" weight="0">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid2_" source="Philippines" target="UnitedKingdom" weight="163774678.068397">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid3_" source="Philippines" target="France" weight="45856909.859151155">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid4_" source="Philippines" target="Germany" weight="6550987.12273588">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid5_" source="Philippines" target="Spain" weight="32754935.613679398">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid6_" source="Philippines" target="Belgium" weight="0">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid7_" source="Philippines" target="Switzerland" weight="0">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid8_" source="Philippines" target="Italy" weight="0">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid9_" source="Philippines" target="Netherlands" weight="0">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
<edge id="_geid10_" source="Philippines" target="BritishAsia" weight="13101974.24547176">
<attvalues>
<attvalue for="direction" value="Exp"/>
</attvalues>
</edge>
</edges>
</graph>
</gexf>