diff --git a/reverse.php b/reverse.php new file mode 100755 index 00000000..9be7aba7 --- /dev/null +++ b/reverse.php @@ -0,0 +1,161 @@ + 2) sleep(60); + if ($fLoadAvg > 4) sleep(120); + if ($fLoadAvg > 6) + { + echo "Bulk User: Temporary block due to high server load\n"; + exit; + } + } + + ini_set('memory_limit', '200M'); + + // Format for output + $sOutputFormat = 'xml'; + if (isset($_GET['format']) && ($_GET['format'] == 'xml' || $_GET['format'] == 'json')) + { + $sOutputFormat = $_GET['format']; + } + + // Prefered language + $aLangPrefOrder = getPrefferedLangauges(); + $sLanguagePrefArraySQL = "ARRAY[".join(',',array_map("getDBQuoted",$aLangPrefOrder))."]"; + + $hLog = logStart($oDB, 'reverse', $_SERVER['QUERY_STRING'], $aLangPrefOrder); + + if (isset($_GET['osm_type']) && isset($_GET['osm_id']) && (int)$_GET['osm_id'] && ($_GET['osm_type'] == 'N' || $_GET['osm_type'] == 'W' || $_GET['osm_type'] == 'R')) + { + $iPlaceID = $oDB->getOne("select place_id from placex where osm_type = '".$_GET['osm_type']."' and osm_id = ".(int)$_GET['osm_id']." order by type = 'postcode' asc"); + if (!$iPlaceID) $sError = 'OSM ID Not Found'; + } + else + { + // Location to look up + $fLat = (float)$_GET['lat']; + $fLon = (float)$_GET['lon']; + $sPointSQL = "ST_SetSRID(ST_Point($fLon,$fLat),4326)"; + + // Zoom to rank, this could probably be calculated but a lookup gives fine control + $aZoomRank = array( + 0 => 2, // Continent / Sea + 1 => 2, + 2 => 2, + 3 => 4, // Country + 4 => 4, + 5 => 8, // State + 6 => 10, // Region + 7 => 10, + 8 => 12, // County + 9 => 12, + 10 => 17, // City + 11 => 17, + 12 => 18, // Town / Village + 13 => 18, + 14 => 22, // Suburb + 15 => 22, + 16 => 26, // Street, TODO: major street? + 17 => 26, + 18 => 28, // or >, Building + 19 => 30, // or >, Building + ); + $iMaxRank = isset($aZoomRank[$_GET['zoom']])?$aZoomRank[$_GET['zoom']]:28; + + // Find the nearest point + $fSearchDiam = 0.0001; + $iPlaceID = null; + $aArea = false; + $fMaxAreaDistance = 10; + while(!$iPlaceID && $fSearchDiam < $fMaxAreaDistance) + { + $fSearchDiam = $fSearchDiam * 2; + + // If we have to expand the search area by a large amount then we need a larger feature + // then there is a limit to how small the feature should be + if ($fSearchDiam > 2 && $iMaxRank > 4) $iMaxRank = 4; + if ($fSearchDiam > 1 && $iMaxRank > 9) $iMaxRank = 8; + if ($fSearchDiam > 0.8 && $iMaxRank > 10) $iMaxRank = 10; + if ($fSearchDiam > 0.6 && $iMaxRank > 12) $iMaxRank = 12; + if ($fSearchDiam > 0.2 && $iMaxRank > 17) $iMaxRank = 17; + if ($fSearchDiam > 0.1 && $iMaxRank > 18) $iMaxRank = 18; + if ($fSearchDiam > 0.01 && $iMaxRank > 22) $iMaxRank = 22; + + if ($iMaxRank >= 26) + { + // Street level search is done using placex table + $sSQL = 'select place_id from placex'; + $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', geometry, '.$fSearchDiam.')'; + $sSQL .= ' and rank_search >= 26 and rank_search <= '.$iMaxRank; + $sSQL .= ' and (ST_GeometryType(geometry) not in (\'ST_Polygon\',\'ST_MultiPolygon\') '; + $sSQL .= ' OR ST_DWithin('.$sPointSQL.', ST_Centroid(geometry), '.$fSearchDiam.'))'; + $sSQL .= ' ORDER BY rank_search desc, ST_distance('.$sPointSQL.', geometry) ASC limit 1'; + $iPlaceID = $oDB->getOne($sSQL); + if (PEAR::IsError($iPlaceID)) + { + var_Dump($sSQL, $iPlaceID); + exit; + } + } + else + { + // Other search uses the location_point and location_area tables + + // If we've not yet done the area search do it now + if ($aArea === false) + { + $sSQL = 'select place_id,rank_address,ST_distance('.$sPointSQL.', centroid) as distance from location_area'; + $sSQL .= ' WHERE ST_Contains(area,'.$sPointSQL.') and rank_search <= '.$iMaxRank; + $sSQL .= ' ORDER BY rank_address desc, ST_distance('.$sPointSQL.', centroid) ASC limit 1'; + $aArea = $oDB->getRow($sSQL); + if ($aArea) $fMaxAreaDistance = $aArea['distance']; + } + + // Different search depending if we found an area match + if ($aArea) + { + // Found best match area - is there a better point match? + $sSQL = 'select place_id from location_point_'.($iMaxRank+1); + $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.') '; + $sSQL .= ' and rank_search > '.($aArea['rank_address']+3); + $sSQL .= ' ORDER BY rank_address desc, ST_distance('.$sPointSQL.', centroid) ASC limit 1'; + $iPlaceID = $oDB->getOne($sSQL); + if (PEAR::IsError($iPlaceID)) + { + var_Dump($sSQL, $iPlaceID); + exit; + } + } + else + { + $sSQL = 'select place_id from location_point_'.($iMaxRank+1); + $sSQL .= ' WHERE ST_DWithin('.$sPointSQL.', centroid, '.$fSearchDiam.') '; + $sSQL .= ' ORDER BY rank_address desc, ST_distance('.$sPointSQL.', centroid) ASC limit 1'; + $iPlaceID = $oDB->getOne($sSQL); + if (PEAR::IsError($iPlaceID)) + { + var_Dump($sSQL, $iPlaceID); + exit; + } + } + } + } + if (!$iPlaceID && $aArea) $iPlaceID = $aArea['place_id']; + } + + if ($iPlaceID) + { + $sSQL = "select placex.*,"; + $sSQL .= " get_address_by_language(place_id, $sLanguagePrefArraySQL) as langaddress,"; + $sSQL .= " get_name_by_language(name, $sLanguagePrefArraySQL) as placename,"; + $sSQL .= " get_name_by_language(name, ARRAY['ref']) as ref"; + $sSQL .= " from placex where place_id = $iPlaceID "; + $aPlace = $oDB->getRow($sSQL); + + $aAddress = getAddressDetails($oDB, $sLanguagePrefArraySQL, $iPlaceID, $aPlace['country_code']); + } + include('.htlib/output/address-'.$sOutputFormat.'.php'); diff --git a/website/images/logo.gif b/website/images/logo.gif new file mode 100644 index 00000000..c8b68dfc Binary files /dev/null and b/website/images/logo.gif differ diff --git a/website/images/mapicons/accommodation_alpinehut.glow.12.png b/website/images/mapicons/accommodation_alpinehut.glow.12.png new file mode 100644 index 00000000..476dcf20 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.glow.12.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.glow.16.png b/website/images/mapicons/accommodation_alpinehut.glow.16.png new file mode 100644 index 00000000..cb0841bb Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.glow.16.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.glow.20.png b/website/images/mapicons/accommodation_alpinehut.glow.20.png new file mode 100644 index 00000000..dab3f13e Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.glow.20.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.glow.24.png b/website/images/mapicons/accommodation_alpinehut.glow.24.png new file mode 100644 index 00000000..5e601d21 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.glow.24.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.glow.32.png b/website/images/mapicons/accommodation_alpinehut.glow.32.png new file mode 100644 index 00000000..37d8fe93 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.glow.32.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.n.12.png b/website/images/mapicons/accommodation_alpinehut.n.12.png new file mode 100644 index 00000000..60591bc3 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.n.12.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.n.16.png b/website/images/mapicons/accommodation_alpinehut.n.16.png new file mode 100644 index 00000000..2fdad623 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.n.16.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.n.20.png b/website/images/mapicons/accommodation_alpinehut.n.20.png new file mode 100644 index 00000000..6c51b819 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.n.20.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.n.24.png b/website/images/mapicons/accommodation_alpinehut.n.24.png new file mode 100644 index 00000000..2a6ec573 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.n.24.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.n.32.png b/website/images/mapicons/accommodation_alpinehut.n.32.png new file mode 100644 index 00000000..bc20fef6 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.n.32.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.p.12.png b/website/images/mapicons/accommodation_alpinehut.p.12.png new file mode 100644 index 00000000..a561662c Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.p.12.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.p.16.png b/website/images/mapicons/accommodation_alpinehut.p.16.png new file mode 100644 index 00000000..d89da3dd Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.p.16.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.p.20.png b/website/images/mapicons/accommodation_alpinehut.p.20.png new file mode 100644 index 00000000..768480e1 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.p.20.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.p.24.png b/website/images/mapicons/accommodation_alpinehut.p.24.png new file mode 100644 index 00000000..0b7bf91a Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.p.24.png differ diff --git a/website/images/mapicons/accommodation_alpinehut.p.32.png b/website/images/mapicons/accommodation_alpinehut.p.32.png new file mode 100644 index 00000000..7eb84ed9 Binary files /dev/null and b/website/images/mapicons/accommodation_alpinehut.p.32.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.glow.12.png b/website/images/mapicons/accommodation_bed_and_breakfast.glow.12.png new file mode 100644 index 00000000..6e12e949 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.glow.12.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.glow.16.png b/website/images/mapicons/accommodation_bed_and_breakfast.glow.16.png new file mode 100644 index 00000000..d39280f1 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.glow.16.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.glow.20.png b/website/images/mapicons/accommodation_bed_and_breakfast.glow.20.png new file mode 100644 index 00000000..0fcbc47d Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.glow.20.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.glow.24.png b/website/images/mapicons/accommodation_bed_and_breakfast.glow.24.png new file mode 100644 index 00000000..16c196bb Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.glow.24.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.glow.32.png b/website/images/mapicons/accommodation_bed_and_breakfast.glow.32.png new file mode 100644 index 00000000..35326794 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.glow.32.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.n.12.png b/website/images/mapicons/accommodation_bed_and_breakfast.n.12.png new file mode 100644 index 00000000..e28135b1 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.n.12.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.n.16.png b/website/images/mapicons/accommodation_bed_and_breakfast.n.16.png new file mode 100644 index 00000000..ab2d3bef Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.n.16.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.n.20.png b/website/images/mapicons/accommodation_bed_and_breakfast.n.20.png new file mode 100644 index 00000000..e72dd4ff Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.n.20.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.n.24.png b/website/images/mapicons/accommodation_bed_and_breakfast.n.24.png new file mode 100644 index 00000000..e40e3d80 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.n.24.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.n.32.png b/website/images/mapicons/accommodation_bed_and_breakfast.n.32.png new file mode 100644 index 00000000..f476c304 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.n.32.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.p.12.png b/website/images/mapicons/accommodation_bed_and_breakfast.p.12.png new file mode 100644 index 00000000..51550a05 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.p.12.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.p.16.png b/website/images/mapicons/accommodation_bed_and_breakfast.p.16.png new file mode 100644 index 00000000..9ab4ce2b Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.p.16.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.p.20.png b/website/images/mapicons/accommodation_bed_and_breakfast.p.20.png new file mode 100644 index 00000000..88a71139 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.p.20.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.p.24.png b/website/images/mapicons/accommodation_bed_and_breakfast.p.24.png new file mode 100644 index 00000000..63ffc7d8 Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.p.24.png differ diff --git a/website/images/mapicons/accommodation_bed_and_breakfast.p.32.png b/website/images/mapicons/accommodation_bed_and_breakfast.p.32.png new file mode 100644 index 00000000..ce86f12e Binary files /dev/null and b/website/images/mapicons/accommodation_bed_and_breakfast.p.32.png differ diff --git a/website/images/mapicons/accommodation_camping.glow.12.png b/website/images/mapicons/accommodation_camping.glow.12.png new file mode 100644 index 00000000..625c9c10 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.glow.12.png differ diff --git a/website/images/mapicons/accommodation_camping.glow.16.png b/website/images/mapicons/accommodation_camping.glow.16.png new file mode 100644 index 00000000..4fa42409 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.glow.16.png differ diff --git a/website/images/mapicons/accommodation_camping.glow.20.png b/website/images/mapicons/accommodation_camping.glow.20.png new file mode 100644 index 00000000..319f64aa Binary files /dev/null and b/website/images/mapicons/accommodation_camping.glow.20.png differ diff --git a/website/images/mapicons/accommodation_camping.glow.24.png b/website/images/mapicons/accommodation_camping.glow.24.png new file mode 100644 index 00000000..4f51be24 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.glow.24.png differ diff --git a/website/images/mapicons/accommodation_camping.glow.32.png b/website/images/mapicons/accommodation_camping.glow.32.png new file mode 100644 index 00000000..68646d2b Binary files /dev/null and b/website/images/mapicons/accommodation_camping.glow.32.png differ diff --git a/website/images/mapicons/accommodation_camping.n.12.png b/website/images/mapicons/accommodation_camping.n.12.png new file mode 100644 index 00000000..d5317183 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.n.12.png differ diff --git a/website/images/mapicons/accommodation_camping.n.16.png b/website/images/mapicons/accommodation_camping.n.16.png new file mode 100644 index 00000000..b2e7a24e Binary files /dev/null and b/website/images/mapicons/accommodation_camping.n.16.png differ diff --git a/website/images/mapicons/accommodation_camping.n.20.png b/website/images/mapicons/accommodation_camping.n.20.png new file mode 100644 index 00000000..c68ee3c4 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.n.20.png differ diff --git a/website/images/mapicons/accommodation_camping.n.24.png b/website/images/mapicons/accommodation_camping.n.24.png new file mode 100644 index 00000000..926bd4a4 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.n.24.png differ diff --git a/website/images/mapicons/accommodation_camping.n.32.png b/website/images/mapicons/accommodation_camping.n.32.png new file mode 100644 index 00000000..d17ca532 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.n.32.png differ diff --git a/website/images/mapicons/accommodation_camping.p.12.png b/website/images/mapicons/accommodation_camping.p.12.png new file mode 100644 index 00000000..808f2d32 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.p.12.png differ diff --git a/website/images/mapicons/accommodation_camping.p.16.png b/website/images/mapicons/accommodation_camping.p.16.png new file mode 100644 index 00000000..8d58535e Binary files /dev/null and b/website/images/mapicons/accommodation_camping.p.16.png differ diff --git a/website/images/mapicons/accommodation_camping.p.20.png b/website/images/mapicons/accommodation_camping.p.20.png new file mode 100644 index 00000000..d086e23e Binary files /dev/null and b/website/images/mapicons/accommodation_camping.p.20.png differ diff --git a/website/images/mapicons/accommodation_camping.p.24.png b/website/images/mapicons/accommodation_camping.p.24.png new file mode 100644 index 00000000..2488eb5d Binary files /dev/null and b/website/images/mapicons/accommodation_camping.p.24.png differ diff --git a/website/images/mapicons/accommodation_camping.p.32.png b/website/images/mapicons/accommodation_camping.p.32.png new file mode 100644 index 00000000..5455d602 Binary files /dev/null and b/website/images/mapicons/accommodation_camping.p.32.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.glow.12.png b/website/images/mapicons/accommodation_caravan_park.glow.12.png new file mode 100644 index 00000000..f870de29 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.glow.12.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.glow.16.png b/website/images/mapicons/accommodation_caravan_park.glow.16.png new file mode 100644 index 00000000..8cf25de7 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.glow.16.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.glow.20.png b/website/images/mapicons/accommodation_caravan_park.glow.20.png new file mode 100644 index 00000000..6dd2e1e4 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.glow.20.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.glow.24.png b/website/images/mapicons/accommodation_caravan_park.glow.24.png new file mode 100644 index 00000000..66872a68 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.glow.24.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.glow.32.png b/website/images/mapicons/accommodation_caravan_park.glow.32.png new file mode 100644 index 00000000..ac73bee9 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.glow.32.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.n.12.png b/website/images/mapicons/accommodation_caravan_park.n.12.png new file mode 100644 index 00000000..dde542ee Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.n.12.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.n.16.png b/website/images/mapicons/accommodation_caravan_park.n.16.png new file mode 100644 index 00000000..aeae7df3 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.n.16.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.n.20.png b/website/images/mapicons/accommodation_caravan_park.n.20.png new file mode 100644 index 00000000..82fc276e Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.n.20.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.n.24.png b/website/images/mapicons/accommodation_caravan_park.n.24.png new file mode 100644 index 00000000..6a0c952d Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.n.24.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.n.32.png b/website/images/mapicons/accommodation_caravan_park.n.32.png new file mode 100644 index 00000000..d95d7d95 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.n.32.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.p.12.png b/website/images/mapicons/accommodation_caravan_park.p.12.png new file mode 100644 index 00000000..3840be5d Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.p.12.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.p.16.png b/website/images/mapicons/accommodation_caravan_park.p.16.png new file mode 100644 index 00000000..3efc02a7 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.p.16.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.p.20.png b/website/images/mapicons/accommodation_caravan_park.p.20.png new file mode 100644 index 00000000..10dccf90 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.p.20.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.p.24.png b/website/images/mapicons/accommodation_caravan_park.p.24.png new file mode 100644 index 00000000..c9ff86c7 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.p.24.png differ diff --git a/website/images/mapicons/accommodation_caravan_park.p.32.png b/website/images/mapicons/accommodation_caravan_park.p.32.png new file mode 100644 index 00000000..0b82b856 Binary files /dev/null and b/website/images/mapicons/accommodation_caravan_park.p.32.png differ diff --git a/website/images/mapicons/accommodation_hotel.glow.12.png b/website/images/mapicons/accommodation_hotel.glow.12.png new file mode 100644 index 00000000..c920177a Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.glow.12.png differ diff --git a/website/images/mapicons/accommodation_hotel.glow.16.png b/website/images/mapicons/accommodation_hotel.glow.16.png new file mode 100644 index 00000000..8c1ce9f7 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.glow.16.png differ diff --git a/website/images/mapicons/accommodation_hotel.glow.20.png b/website/images/mapicons/accommodation_hotel.glow.20.png new file mode 100644 index 00000000..c2407e96 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.glow.20.png differ diff --git a/website/images/mapicons/accommodation_hotel.glow.24.png b/website/images/mapicons/accommodation_hotel.glow.24.png new file mode 100644 index 00000000..9289a600 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.glow.24.png differ diff --git a/website/images/mapicons/accommodation_hotel.glow.32.png b/website/images/mapicons/accommodation_hotel.glow.32.png new file mode 100644 index 00000000..be55442b Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.glow.32.png differ diff --git a/website/images/mapicons/accommodation_hotel.n.12.png b/website/images/mapicons/accommodation_hotel.n.12.png new file mode 100644 index 00000000..b80d81cb Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.n.12.png differ diff --git a/website/images/mapicons/accommodation_hotel.n.16.png b/website/images/mapicons/accommodation_hotel.n.16.png new file mode 100644 index 00000000..4c3bb706 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.n.16.png differ diff --git a/website/images/mapicons/accommodation_hotel.n.20.png b/website/images/mapicons/accommodation_hotel.n.20.png new file mode 100644 index 00000000..7d1fd03b Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.n.20.png differ diff --git a/website/images/mapicons/accommodation_hotel.n.24.png b/website/images/mapicons/accommodation_hotel.n.24.png new file mode 100644 index 00000000..129a44c6 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.n.24.png differ diff --git a/website/images/mapicons/accommodation_hotel.n.32.png b/website/images/mapicons/accommodation_hotel.n.32.png new file mode 100644 index 00000000..71fe0351 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.n.32.png differ diff --git a/website/images/mapicons/accommodation_hotel.p.12.png b/website/images/mapicons/accommodation_hotel.p.12.png new file mode 100644 index 00000000..c30c0904 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.p.12.png differ diff --git a/website/images/mapicons/accommodation_hotel.p.16.png b/website/images/mapicons/accommodation_hotel.p.16.png new file mode 100644 index 00000000..855216e5 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.p.16.png differ diff --git a/website/images/mapicons/accommodation_hotel.p.20.png b/website/images/mapicons/accommodation_hotel.p.20.png new file mode 100644 index 00000000..68c57580 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.p.20.png differ diff --git a/website/images/mapicons/accommodation_hotel.p.24.png b/website/images/mapicons/accommodation_hotel.p.24.png new file mode 100644 index 00000000..a0b0b7c7 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.p.24.png differ diff --git a/website/images/mapicons/accommodation_hotel.p.32.png b/website/images/mapicons/accommodation_hotel.p.32.png new file mode 100644 index 00000000..9e52e765 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel.p.32.png differ diff --git a/website/images/mapicons/accommodation_hotel2.glow.12.png b/website/images/mapicons/accommodation_hotel2.glow.12.png new file mode 100644 index 00000000..c918dfe3 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.glow.12.png differ diff --git a/website/images/mapicons/accommodation_hotel2.glow.16.png b/website/images/mapicons/accommodation_hotel2.glow.16.png new file mode 100644 index 00000000..7ba6faa6 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.glow.16.png differ diff --git a/website/images/mapicons/accommodation_hotel2.glow.20.png b/website/images/mapicons/accommodation_hotel2.glow.20.png new file mode 100644 index 00000000..d38d5ac0 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.glow.20.png differ diff --git a/website/images/mapicons/accommodation_hotel2.glow.24.png b/website/images/mapicons/accommodation_hotel2.glow.24.png new file mode 100644 index 00000000..9ad94931 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.glow.24.png differ diff --git a/website/images/mapicons/accommodation_hotel2.glow.32.png b/website/images/mapicons/accommodation_hotel2.glow.32.png new file mode 100644 index 00000000..8a8daf91 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.glow.32.png differ diff --git a/website/images/mapicons/accommodation_hotel2.n.12.png b/website/images/mapicons/accommodation_hotel2.n.12.png new file mode 100644 index 00000000..c39ed3b7 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.n.12.png differ diff --git a/website/images/mapicons/accommodation_hotel2.n.16.png b/website/images/mapicons/accommodation_hotel2.n.16.png new file mode 100644 index 00000000..271c10b5 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.n.16.png differ diff --git a/website/images/mapicons/accommodation_hotel2.n.20.png b/website/images/mapicons/accommodation_hotel2.n.20.png new file mode 100644 index 00000000..a9b7c051 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.n.20.png differ diff --git a/website/images/mapicons/accommodation_hotel2.n.24.png b/website/images/mapicons/accommodation_hotel2.n.24.png new file mode 100644 index 00000000..66a46cb3 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.n.24.png differ diff --git a/website/images/mapicons/accommodation_hotel2.n.32.png b/website/images/mapicons/accommodation_hotel2.n.32.png new file mode 100644 index 00000000..39746416 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.n.32.png differ diff --git a/website/images/mapicons/accommodation_hotel2.p.12.png b/website/images/mapicons/accommodation_hotel2.p.12.png new file mode 100644 index 00000000..94c76b18 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.p.12.png differ diff --git a/website/images/mapicons/accommodation_hotel2.p.16.png b/website/images/mapicons/accommodation_hotel2.p.16.png new file mode 100644 index 00000000..e1eb2671 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.p.16.png differ diff --git a/website/images/mapicons/accommodation_hotel2.p.20.png b/website/images/mapicons/accommodation_hotel2.p.20.png new file mode 100644 index 00000000..5767a02c Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.p.20.png differ diff --git a/website/images/mapicons/accommodation_hotel2.p.24.png b/website/images/mapicons/accommodation_hotel2.p.24.png new file mode 100644 index 00000000..8d99971f Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.p.24.png differ diff --git a/website/images/mapicons/accommodation_hotel2.p.32.png b/website/images/mapicons/accommodation_hotel2.p.32.png new file mode 100644 index 00000000..6a945d56 Binary files /dev/null and b/website/images/mapicons/accommodation_hotel2.p.32.png differ diff --git a/website/images/mapicons/accommodation_shelter.glow.12.png b/website/images/mapicons/accommodation_shelter.glow.12.png new file mode 100644 index 00000000..797d9bd0 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.glow.12.png differ diff --git a/website/images/mapicons/accommodation_shelter.glow.16.png b/website/images/mapicons/accommodation_shelter.glow.16.png new file mode 100644 index 00000000..55b6d387 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.glow.16.png differ diff --git a/website/images/mapicons/accommodation_shelter.glow.20.png b/website/images/mapicons/accommodation_shelter.glow.20.png new file mode 100644 index 00000000..231e9807 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.glow.20.png differ diff --git a/website/images/mapicons/accommodation_shelter.glow.24.png b/website/images/mapicons/accommodation_shelter.glow.24.png new file mode 100644 index 00000000..47c7119f Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.glow.24.png differ diff --git a/website/images/mapicons/accommodation_shelter.glow.32.png b/website/images/mapicons/accommodation_shelter.glow.32.png new file mode 100644 index 00000000..312f87f9 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.glow.32.png differ diff --git a/website/images/mapicons/accommodation_shelter.n.12.png b/website/images/mapicons/accommodation_shelter.n.12.png new file mode 100644 index 00000000..864fa3c3 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.n.12.png differ diff --git a/website/images/mapicons/accommodation_shelter.n.16.png b/website/images/mapicons/accommodation_shelter.n.16.png new file mode 100644 index 00000000..99a1c3b2 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.n.16.png differ diff --git a/website/images/mapicons/accommodation_shelter.n.20.png b/website/images/mapicons/accommodation_shelter.n.20.png new file mode 100644 index 00000000..19882dc4 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.n.20.png differ diff --git a/website/images/mapicons/accommodation_shelter.n.24.png b/website/images/mapicons/accommodation_shelter.n.24.png new file mode 100644 index 00000000..e48a4343 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.n.24.png differ diff --git a/website/images/mapicons/accommodation_shelter.n.32.png b/website/images/mapicons/accommodation_shelter.n.32.png new file mode 100644 index 00000000..6abac26e Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.n.32.png differ diff --git a/website/images/mapicons/accommodation_shelter.p.12.png b/website/images/mapicons/accommodation_shelter.p.12.png new file mode 100644 index 00000000..537f4925 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.p.12.png differ diff --git a/website/images/mapicons/accommodation_shelter.p.16.png b/website/images/mapicons/accommodation_shelter.p.16.png new file mode 100644 index 00000000..c1a9a769 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.p.16.png differ diff --git a/website/images/mapicons/accommodation_shelter.p.20.png b/website/images/mapicons/accommodation_shelter.p.20.png new file mode 100644 index 00000000..d6d77669 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.p.20.png differ diff --git a/website/images/mapicons/accommodation_shelter.p.24.png b/website/images/mapicons/accommodation_shelter.p.24.png new file mode 100644 index 00000000..82c61f0b Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.p.24.png differ diff --git a/website/images/mapicons/accommodation_shelter.p.32.png b/website/images/mapicons/accommodation_shelter.p.32.png new file mode 100644 index 00000000..d43676a8 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter.p.32.png differ diff --git a/website/images/mapicons/accommodation_shelter2.glow.12.png b/website/images/mapicons/accommodation_shelter2.glow.12.png new file mode 100644 index 00000000..97d2706b Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.glow.12.png differ diff --git a/website/images/mapicons/accommodation_shelter2.glow.16.png b/website/images/mapicons/accommodation_shelter2.glow.16.png new file mode 100644 index 00000000..e54e220f Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.glow.16.png differ diff --git a/website/images/mapicons/accommodation_shelter2.glow.20.png b/website/images/mapicons/accommodation_shelter2.glow.20.png new file mode 100644 index 00000000..fe02d40c Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.glow.20.png differ diff --git a/website/images/mapicons/accommodation_shelter2.glow.24.png b/website/images/mapicons/accommodation_shelter2.glow.24.png new file mode 100644 index 00000000..bc99cd09 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.glow.24.png differ diff --git a/website/images/mapicons/accommodation_shelter2.glow.32.png b/website/images/mapicons/accommodation_shelter2.glow.32.png new file mode 100644 index 00000000..8dceeb14 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.glow.32.png differ diff --git a/website/images/mapicons/accommodation_shelter2.n.12.png b/website/images/mapicons/accommodation_shelter2.n.12.png new file mode 100644 index 00000000..62f3741a Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.n.12.png differ diff --git a/website/images/mapicons/accommodation_shelter2.n.16.png b/website/images/mapicons/accommodation_shelter2.n.16.png new file mode 100644 index 00000000..2c6e3fe3 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.n.16.png differ diff --git a/website/images/mapicons/accommodation_shelter2.n.20.png b/website/images/mapicons/accommodation_shelter2.n.20.png new file mode 100644 index 00000000..da54a0cd Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.n.20.png differ diff --git a/website/images/mapicons/accommodation_shelter2.n.24.png b/website/images/mapicons/accommodation_shelter2.n.24.png new file mode 100644 index 00000000..71d79bd1 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.n.24.png differ diff --git a/website/images/mapicons/accommodation_shelter2.n.32.png b/website/images/mapicons/accommodation_shelter2.n.32.png new file mode 100644 index 00000000..14eae5ce Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.n.32.png differ diff --git a/website/images/mapicons/accommodation_shelter2.p.12.png b/website/images/mapicons/accommodation_shelter2.p.12.png new file mode 100644 index 00000000..91d4209f Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.p.12.png differ diff --git a/website/images/mapicons/accommodation_shelter2.p.16.png b/website/images/mapicons/accommodation_shelter2.p.16.png new file mode 100644 index 00000000..fa9bfa0c Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.p.16.png differ diff --git a/website/images/mapicons/accommodation_shelter2.p.20.png b/website/images/mapicons/accommodation_shelter2.p.20.png new file mode 100644 index 00000000..41556884 Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.p.20.png differ diff --git a/website/images/mapicons/accommodation_shelter2.p.24.png b/website/images/mapicons/accommodation_shelter2.p.24.png new file mode 100644 index 00000000..277d34bf Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.p.24.png differ diff --git a/website/images/mapicons/accommodation_shelter2.p.32.png b/website/images/mapicons/accommodation_shelter2.p.32.png new file mode 100644 index 00000000..222db74a Binary files /dev/null and b/website/images/mapicons/accommodation_shelter2.p.32.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.glow.12.png b/website/images/mapicons/accommodation_youth_hostel.glow.12.png new file mode 100644 index 00000000..5cd57be3 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.glow.12.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.glow.16.png b/website/images/mapicons/accommodation_youth_hostel.glow.16.png new file mode 100644 index 00000000..5baaef2b Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.glow.16.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.glow.20.png b/website/images/mapicons/accommodation_youth_hostel.glow.20.png new file mode 100644 index 00000000..0b318744 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.glow.20.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.glow.24.png b/website/images/mapicons/accommodation_youth_hostel.glow.24.png new file mode 100644 index 00000000..fe5acabc Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.glow.24.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.glow.32.png b/website/images/mapicons/accommodation_youth_hostel.glow.32.png new file mode 100644 index 00000000..572900d8 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.glow.32.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.n.12.png b/website/images/mapicons/accommodation_youth_hostel.n.12.png new file mode 100644 index 00000000..ff5e01de Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.n.12.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.n.16.png b/website/images/mapicons/accommodation_youth_hostel.n.16.png new file mode 100644 index 00000000..d2ca4fee Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.n.16.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.n.20.png b/website/images/mapicons/accommodation_youth_hostel.n.20.png new file mode 100644 index 00000000..e8e8d2e1 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.n.20.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.n.24.png b/website/images/mapicons/accommodation_youth_hostel.n.24.png new file mode 100644 index 00000000..13f18df6 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.n.24.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.n.32.png b/website/images/mapicons/accommodation_youth_hostel.n.32.png new file mode 100644 index 00000000..4cb9813c Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.n.32.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.p.12.png b/website/images/mapicons/accommodation_youth_hostel.p.12.png new file mode 100644 index 00000000..a20e1fa7 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.p.12.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.p.16.png b/website/images/mapicons/accommodation_youth_hostel.p.16.png new file mode 100644 index 00000000..fd290891 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.p.16.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.p.20.png b/website/images/mapicons/accommodation_youth_hostel.p.20.png new file mode 100644 index 00000000..d8ed446b Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.p.20.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.p.24.png b/website/images/mapicons/accommodation_youth_hostel.p.24.png new file mode 100644 index 00000000..4af90b15 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.p.24.png differ diff --git a/website/images/mapicons/accommodation_youth_hostel.p.32.png b/website/images/mapicons/accommodation_youth_hostel.p.32.png new file mode 100644 index 00000000..64a28822 Binary files /dev/null and b/website/images/mapicons/accommodation_youth_hostel.p.32.png differ diff --git a/website/images/mapicons/amenity_bench.glow.12.png b/website/images/mapicons/amenity_bench.glow.12.png new file mode 100644 index 00000000..2e9929b6 Binary files /dev/null and b/website/images/mapicons/amenity_bench.glow.12.png differ diff --git a/website/images/mapicons/amenity_bench.glow.16.png b/website/images/mapicons/amenity_bench.glow.16.png new file mode 100644 index 00000000..baa60c7b Binary files /dev/null and b/website/images/mapicons/amenity_bench.glow.16.png differ diff --git a/website/images/mapicons/amenity_bench.glow.20.png b/website/images/mapicons/amenity_bench.glow.20.png new file mode 100644 index 00000000..256ad671 Binary files /dev/null and b/website/images/mapicons/amenity_bench.glow.20.png differ diff --git a/website/images/mapicons/amenity_bench.glow.24.png b/website/images/mapicons/amenity_bench.glow.24.png new file mode 100644 index 00000000..4d19deab Binary files /dev/null and b/website/images/mapicons/amenity_bench.glow.24.png differ diff --git a/website/images/mapicons/amenity_bench.glow.32.png b/website/images/mapicons/amenity_bench.glow.32.png new file mode 100644 index 00000000..8ae91e2b Binary files /dev/null and b/website/images/mapicons/amenity_bench.glow.32.png differ diff --git a/website/images/mapicons/amenity_bench.n.12.png b/website/images/mapicons/amenity_bench.n.12.png new file mode 100644 index 00000000..3f12dc1a Binary files /dev/null and b/website/images/mapicons/amenity_bench.n.12.png differ diff --git a/website/images/mapicons/amenity_bench.n.16.png b/website/images/mapicons/amenity_bench.n.16.png new file mode 100644 index 00000000..081cb51c Binary files /dev/null and b/website/images/mapicons/amenity_bench.n.16.png differ diff --git a/website/images/mapicons/amenity_bench.n.20.png b/website/images/mapicons/amenity_bench.n.20.png new file mode 100644 index 00000000..ca38c139 Binary files /dev/null and b/website/images/mapicons/amenity_bench.n.20.png differ diff --git a/website/images/mapicons/amenity_bench.n.24.png b/website/images/mapicons/amenity_bench.n.24.png new file mode 100644 index 00000000..08c66b07 Binary files /dev/null and b/website/images/mapicons/amenity_bench.n.24.png differ diff --git a/website/images/mapicons/amenity_bench.n.32.png b/website/images/mapicons/amenity_bench.n.32.png new file mode 100644 index 00000000..f06899a0 Binary files /dev/null and b/website/images/mapicons/amenity_bench.n.32.png differ diff --git a/website/images/mapicons/amenity_bench.p.12.png b/website/images/mapicons/amenity_bench.p.12.png new file mode 100644 index 00000000..10a43aa0 Binary files /dev/null and b/website/images/mapicons/amenity_bench.p.12.png differ diff --git a/website/images/mapicons/amenity_bench.p.16.png b/website/images/mapicons/amenity_bench.p.16.png new file mode 100644 index 00000000..3ed44557 Binary files /dev/null and b/website/images/mapicons/amenity_bench.p.16.png differ diff --git a/website/images/mapicons/amenity_bench.p.20.png b/website/images/mapicons/amenity_bench.p.20.png new file mode 100644 index 00000000..90169a36 Binary files /dev/null and b/website/images/mapicons/amenity_bench.p.20.png differ diff --git a/website/images/mapicons/amenity_bench.p.24.png b/website/images/mapicons/amenity_bench.p.24.png new file mode 100644 index 00000000..43340f3b Binary files /dev/null and b/website/images/mapicons/amenity_bench.p.24.png differ diff --git a/website/images/mapicons/amenity_bench.p.32.png b/website/images/mapicons/amenity_bench.p.32.png new file mode 100644 index 00000000..eea49d20 Binary files /dev/null and b/website/images/mapicons/amenity_bench.p.32.png differ diff --git a/website/images/mapicons/amenity_court.glow.12.png b/website/images/mapicons/amenity_court.glow.12.png new file mode 100644 index 00000000..5130877c Binary files /dev/null and b/website/images/mapicons/amenity_court.glow.12.png differ diff --git a/website/images/mapicons/amenity_court.glow.16.png b/website/images/mapicons/amenity_court.glow.16.png new file mode 100644 index 00000000..89f99b63 Binary files /dev/null and b/website/images/mapicons/amenity_court.glow.16.png differ diff --git a/website/images/mapicons/amenity_court.glow.20.png b/website/images/mapicons/amenity_court.glow.20.png new file mode 100644 index 00000000..470eec74 Binary files /dev/null and b/website/images/mapicons/amenity_court.glow.20.png differ diff --git a/website/images/mapicons/amenity_court.glow.24.png b/website/images/mapicons/amenity_court.glow.24.png new file mode 100644 index 00000000..a6a52ee1 Binary files /dev/null and b/website/images/mapicons/amenity_court.glow.24.png differ diff --git a/website/images/mapicons/amenity_court.glow.32.png b/website/images/mapicons/amenity_court.glow.32.png new file mode 100644 index 00000000..d0636925 Binary files /dev/null and b/website/images/mapicons/amenity_court.glow.32.png differ diff --git a/website/images/mapicons/amenity_court.n.12.png b/website/images/mapicons/amenity_court.n.12.png new file mode 100644 index 00000000..eb23745f Binary files /dev/null and b/website/images/mapicons/amenity_court.n.12.png differ diff --git a/website/images/mapicons/amenity_court.n.16.png b/website/images/mapicons/amenity_court.n.16.png new file mode 100644 index 00000000..be9660d8 Binary files /dev/null and b/website/images/mapicons/amenity_court.n.16.png differ diff --git a/website/images/mapicons/amenity_court.n.20.png b/website/images/mapicons/amenity_court.n.20.png new file mode 100644 index 00000000..b67c8446 Binary files /dev/null and b/website/images/mapicons/amenity_court.n.20.png differ diff --git a/website/images/mapicons/amenity_court.n.24.png b/website/images/mapicons/amenity_court.n.24.png new file mode 100644 index 00000000..5cee65ae Binary files /dev/null and b/website/images/mapicons/amenity_court.n.24.png differ diff --git a/website/images/mapicons/amenity_court.n.32.png b/website/images/mapicons/amenity_court.n.32.png new file mode 100644 index 00000000..e6c8bdc9 Binary files /dev/null and b/website/images/mapicons/amenity_court.n.32.png differ diff --git a/website/images/mapicons/amenity_court.p.12.png b/website/images/mapicons/amenity_court.p.12.png new file mode 100644 index 00000000..7526e50e Binary files /dev/null and b/website/images/mapicons/amenity_court.p.12.png differ diff --git a/website/images/mapicons/amenity_court.p.16.png b/website/images/mapicons/amenity_court.p.16.png new file mode 100644 index 00000000..4e35dab7 Binary files /dev/null and b/website/images/mapicons/amenity_court.p.16.png differ diff --git a/website/images/mapicons/amenity_court.p.20.png b/website/images/mapicons/amenity_court.p.20.png new file mode 100644 index 00000000..eed9852d Binary files /dev/null and b/website/images/mapicons/amenity_court.p.20.png differ diff --git a/website/images/mapicons/amenity_court.p.24.png b/website/images/mapicons/amenity_court.p.24.png new file mode 100644 index 00000000..c44f7dc6 Binary files /dev/null and b/website/images/mapicons/amenity_court.p.24.png differ diff --git a/website/images/mapicons/amenity_court.p.32.png b/website/images/mapicons/amenity_court.p.32.png new file mode 100644 index 00000000..b0d6b01f Binary files /dev/null and b/website/images/mapicons/amenity_court.p.32.png differ diff --git a/website/images/mapicons/amenity_firestation.glow.12.png b/website/images/mapicons/amenity_firestation.glow.12.png new file mode 100644 index 00000000..999be22b Binary files /dev/null and b/website/images/mapicons/amenity_firestation.glow.12.png differ diff --git a/website/images/mapicons/amenity_firestation.glow.16.png b/website/images/mapicons/amenity_firestation.glow.16.png new file mode 100644 index 00000000..98a987c5 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.glow.16.png differ diff --git a/website/images/mapicons/amenity_firestation.glow.20.png b/website/images/mapicons/amenity_firestation.glow.20.png new file mode 100644 index 00000000..050826c4 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.glow.20.png differ diff --git a/website/images/mapicons/amenity_firestation.glow.24.png b/website/images/mapicons/amenity_firestation.glow.24.png new file mode 100644 index 00000000..89144c59 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.glow.24.png differ diff --git a/website/images/mapicons/amenity_firestation.glow.32.png b/website/images/mapicons/amenity_firestation.glow.32.png new file mode 100644 index 00000000..5c223d50 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.glow.32.png differ diff --git a/website/images/mapicons/amenity_firestation.n.12.png b/website/images/mapicons/amenity_firestation.n.12.png new file mode 100644 index 00000000..806b5b45 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.n.12.png differ diff --git a/website/images/mapicons/amenity_firestation.n.16.png b/website/images/mapicons/amenity_firestation.n.16.png new file mode 100644 index 00000000..5b1c3bfa Binary files /dev/null and b/website/images/mapicons/amenity_firestation.n.16.png differ diff --git a/website/images/mapicons/amenity_firestation.n.20.png b/website/images/mapicons/amenity_firestation.n.20.png new file mode 100644 index 00000000..2bf0bee3 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.n.20.png differ diff --git a/website/images/mapicons/amenity_firestation.n.24.png b/website/images/mapicons/amenity_firestation.n.24.png new file mode 100644 index 00000000..33ea87de Binary files /dev/null and b/website/images/mapicons/amenity_firestation.n.24.png differ diff --git a/website/images/mapicons/amenity_firestation.n.32.png b/website/images/mapicons/amenity_firestation.n.32.png new file mode 100644 index 00000000..debad340 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.n.32.png differ diff --git a/website/images/mapicons/amenity_firestation.p.12.png b/website/images/mapicons/amenity_firestation.p.12.png new file mode 100644 index 00000000..0372fda4 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.p.12.png differ diff --git a/website/images/mapicons/amenity_firestation.p.16.png b/website/images/mapicons/amenity_firestation.p.16.png new file mode 100644 index 00000000..e2b6bb61 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.p.16.png differ diff --git a/website/images/mapicons/amenity_firestation.p.20.png b/website/images/mapicons/amenity_firestation.p.20.png new file mode 100644 index 00000000..9b832e31 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.p.20.png differ diff --git a/website/images/mapicons/amenity_firestation.p.24.png b/website/images/mapicons/amenity_firestation.p.24.png new file mode 100644 index 00000000..d60e0b32 Binary files /dev/null and b/website/images/mapicons/amenity_firestation.p.24.png differ diff --git a/website/images/mapicons/amenity_firestation.p.32.png b/website/images/mapicons/amenity_firestation.p.32.png new file mode 100644 index 00000000..19bbb21c Binary files /dev/null and b/website/images/mapicons/amenity_firestation.p.32.png differ diff --git a/website/images/mapicons/amenity_firestation2.glow.12.png b/website/images/mapicons/amenity_firestation2.glow.12.png new file mode 100644 index 00000000..32e19063 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.glow.12.png differ diff --git a/website/images/mapicons/amenity_firestation2.glow.16.png b/website/images/mapicons/amenity_firestation2.glow.16.png new file mode 100644 index 00000000..8222e479 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.glow.16.png differ diff --git a/website/images/mapicons/amenity_firestation2.glow.20.png b/website/images/mapicons/amenity_firestation2.glow.20.png new file mode 100644 index 00000000..5abb7e08 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.glow.20.png differ diff --git a/website/images/mapicons/amenity_firestation2.glow.24.png b/website/images/mapicons/amenity_firestation2.glow.24.png new file mode 100644 index 00000000..4c68fa8f Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.glow.24.png differ diff --git a/website/images/mapicons/amenity_firestation2.glow.32.png b/website/images/mapicons/amenity_firestation2.glow.32.png new file mode 100644 index 00000000..13b11ec1 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.glow.32.png differ diff --git a/website/images/mapicons/amenity_firestation2.n.12.png b/website/images/mapicons/amenity_firestation2.n.12.png new file mode 100644 index 00000000..c7740bb0 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.n.12.png differ diff --git a/website/images/mapicons/amenity_firestation2.n.16.png b/website/images/mapicons/amenity_firestation2.n.16.png new file mode 100644 index 00000000..8a980bef Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.n.16.png differ diff --git a/website/images/mapicons/amenity_firestation2.n.20.png b/website/images/mapicons/amenity_firestation2.n.20.png new file mode 100644 index 00000000..7366206f Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.n.20.png differ diff --git a/website/images/mapicons/amenity_firestation2.n.24.png b/website/images/mapicons/amenity_firestation2.n.24.png new file mode 100644 index 00000000..443189fb Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.n.24.png differ diff --git a/website/images/mapicons/amenity_firestation2.n.32.png b/website/images/mapicons/amenity_firestation2.n.32.png new file mode 100644 index 00000000..c37c5732 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.n.32.png differ diff --git a/website/images/mapicons/amenity_firestation2.p.12.png b/website/images/mapicons/amenity_firestation2.p.12.png new file mode 100644 index 00000000..272b6e41 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.p.12.png differ diff --git a/website/images/mapicons/amenity_firestation2.p.16.png b/website/images/mapicons/amenity_firestation2.p.16.png new file mode 100644 index 00000000..352ec32b Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.p.16.png differ diff --git a/website/images/mapicons/amenity_firestation2.p.20.png b/website/images/mapicons/amenity_firestation2.p.20.png new file mode 100644 index 00000000..a67c9091 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.p.20.png differ diff --git a/website/images/mapicons/amenity_firestation2.p.24.png b/website/images/mapicons/amenity_firestation2.p.24.png new file mode 100644 index 00000000..de7c58b8 Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.p.24.png differ diff --git a/website/images/mapicons/amenity_firestation2.p.32.png b/website/images/mapicons/amenity_firestation2.p.32.png new file mode 100644 index 00000000..a211daad Binary files /dev/null and b/website/images/mapicons/amenity_firestation2.p.32.png differ diff --git a/website/images/mapicons/amenity_firestation3.glow.12.png b/website/images/mapicons/amenity_firestation3.glow.12.png new file mode 100644 index 00000000..54b9180f Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.glow.12.png differ diff --git a/website/images/mapicons/amenity_firestation3.glow.16.png b/website/images/mapicons/amenity_firestation3.glow.16.png new file mode 100644 index 00000000..67d9d64c Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.glow.16.png differ diff --git a/website/images/mapicons/amenity_firestation3.glow.20.png b/website/images/mapicons/amenity_firestation3.glow.20.png new file mode 100644 index 00000000..90908ff3 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.glow.20.png differ diff --git a/website/images/mapicons/amenity_firestation3.glow.24.png b/website/images/mapicons/amenity_firestation3.glow.24.png new file mode 100644 index 00000000..01177aaf Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.glow.24.png differ diff --git a/website/images/mapicons/amenity_firestation3.glow.32.png b/website/images/mapicons/amenity_firestation3.glow.32.png new file mode 100644 index 00000000..37d23568 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.glow.32.png differ diff --git a/website/images/mapicons/amenity_firestation3.n.12.png b/website/images/mapicons/amenity_firestation3.n.12.png new file mode 100644 index 00000000..e7cedf6c Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.n.12.png differ diff --git a/website/images/mapicons/amenity_firestation3.n.16.png b/website/images/mapicons/amenity_firestation3.n.16.png new file mode 100644 index 00000000..923d4496 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.n.16.png differ diff --git a/website/images/mapicons/amenity_firestation3.n.20.png b/website/images/mapicons/amenity_firestation3.n.20.png new file mode 100644 index 00000000..68218934 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.n.20.png differ diff --git a/website/images/mapicons/amenity_firestation3.n.24.png b/website/images/mapicons/amenity_firestation3.n.24.png new file mode 100644 index 00000000..1f27f794 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.n.24.png differ diff --git a/website/images/mapicons/amenity_firestation3.n.32.png b/website/images/mapicons/amenity_firestation3.n.32.png new file mode 100644 index 00000000..06369d08 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.n.32.png differ diff --git a/website/images/mapicons/amenity_firestation3.p.12.png b/website/images/mapicons/amenity_firestation3.p.12.png new file mode 100644 index 00000000..4bdf3c03 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.p.12.png differ diff --git a/website/images/mapicons/amenity_firestation3.p.16.png b/website/images/mapicons/amenity_firestation3.p.16.png new file mode 100644 index 00000000..a81a79e8 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.p.16.png differ diff --git a/website/images/mapicons/amenity_firestation3.p.20.png b/website/images/mapicons/amenity_firestation3.p.20.png new file mode 100644 index 00000000..959b0887 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.p.20.png differ diff --git a/website/images/mapicons/amenity_firestation3.p.24.png b/website/images/mapicons/amenity_firestation3.p.24.png new file mode 100644 index 00000000..2c68048a Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.p.24.png differ diff --git a/website/images/mapicons/amenity_firestation3.p.32.png b/website/images/mapicons/amenity_firestation3.p.32.png new file mode 100644 index 00000000..62b8ebb8 Binary files /dev/null and b/website/images/mapicons/amenity_firestation3.p.32.png differ diff --git a/website/images/mapicons/amenity_fountain.glow.12.png b/website/images/mapicons/amenity_fountain.glow.12.png new file mode 100644 index 00000000..7247f265 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.glow.12.png differ diff --git a/website/images/mapicons/amenity_fountain.glow.16.png b/website/images/mapicons/amenity_fountain.glow.16.png new file mode 100644 index 00000000..6c9bc13b Binary files /dev/null and b/website/images/mapicons/amenity_fountain.glow.16.png differ diff --git a/website/images/mapicons/amenity_fountain.glow.20.png b/website/images/mapicons/amenity_fountain.glow.20.png new file mode 100644 index 00000000..a855bb0a Binary files /dev/null and b/website/images/mapicons/amenity_fountain.glow.20.png differ diff --git a/website/images/mapicons/amenity_fountain.glow.24.png b/website/images/mapicons/amenity_fountain.glow.24.png new file mode 100644 index 00000000..ce16de52 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.glow.24.png differ diff --git a/website/images/mapicons/amenity_fountain.glow.32.png b/website/images/mapicons/amenity_fountain.glow.32.png new file mode 100644 index 00000000..24de8988 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.glow.32.png differ diff --git a/website/images/mapicons/amenity_fountain.n.12.png b/website/images/mapicons/amenity_fountain.n.12.png new file mode 100644 index 00000000..98141def Binary files /dev/null and b/website/images/mapicons/amenity_fountain.n.12.png differ diff --git a/website/images/mapicons/amenity_fountain.n.16.png b/website/images/mapicons/amenity_fountain.n.16.png new file mode 100644 index 00000000..79e16859 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.n.16.png differ diff --git a/website/images/mapicons/amenity_fountain.n.20.png b/website/images/mapicons/amenity_fountain.n.20.png new file mode 100644 index 00000000..00fbd085 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.n.20.png differ diff --git a/website/images/mapicons/amenity_fountain.n.24.png b/website/images/mapicons/amenity_fountain.n.24.png new file mode 100644 index 00000000..90f15edd Binary files /dev/null and b/website/images/mapicons/amenity_fountain.n.24.png differ diff --git a/website/images/mapicons/amenity_fountain.n.32.png b/website/images/mapicons/amenity_fountain.n.32.png new file mode 100644 index 00000000..7c122cdc Binary files /dev/null and b/website/images/mapicons/amenity_fountain.n.32.png differ diff --git a/website/images/mapicons/amenity_fountain.p.12.png b/website/images/mapicons/amenity_fountain.p.12.png new file mode 100644 index 00000000..106c339e Binary files /dev/null and b/website/images/mapicons/amenity_fountain.p.12.png differ diff --git a/website/images/mapicons/amenity_fountain.p.16.png b/website/images/mapicons/amenity_fountain.p.16.png new file mode 100644 index 00000000..65e25b9c Binary files /dev/null and b/website/images/mapicons/amenity_fountain.p.16.png differ diff --git a/website/images/mapicons/amenity_fountain.p.20.png b/website/images/mapicons/amenity_fountain.p.20.png new file mode 100644 index 00000000..5d122db0 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.p.20.png differ diff --git a/website/images/mapicons/amenity_fountain.p.24.png b/website/images/mapicons/amenity_fountain.p.24.png new file mode 100644 index 00000000..4d7e7fd7 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.p.24.png differ diff --git a/website/images/mapicons/amenity_fountain.p.32.png b/website/images/mapicons/amenity_fountain.p.32.png new file mode 100644 index 00000000..72c2d8b3 Binary files /dev/null and b/website/images/mapicons/amenity_fountain.p.32.png differ diff --git a/website/images/mapicons/amenity_information.glow.12.png b/website/images/mapicons/amenity_information.glow.12.png new file mode 100644 index 00000000..2e4b1ec0 Binary files /dev/null and b/website/images/mapicons/amenity_information.glow.12.png differ diff --git a/website/images/mapicons/amenity_information.glow.16.png b/website/images/mapicons/amenity_information.glow.16.png new file mode 100644 index 00000000..6b6d33d1 Binary files /dev/null and b/website/images/mapicons/amenity_information.glow.16.png differ diff --git a/website/images/mapicons/amenity_information.glow.20.png b/website/images/mapicons/amenity_information.glow.20.png new file mode 100644 index 00000000..0de89580 Binary files /dev/null and b/website/images/mapicons/amenity_information.glow.20.png differ diff --git a/website/images/mapicons/amenity_information.glow.24.png b/website/images/mapicons/amenity_information.glow.24.png new file mode 100644 index 00000000..7db3d0c7 Binary files /dev/null and b/website/images/mapicons/amenity_information.glow.24.png differ diff --git a/website/images/mapicons/amenity_information.glow.32.png b/website/images/mapicons/amenity_information.glow.32.png new file mode 100644 index 00000000..ce125b3b Binary files /dev/null and b/website/images/mapicons/amenity_information.glow.32.png differ diff --git a/website/images/mapicons/amenity_information.n.12.png b/website/images/mapicons/amenity_information.n.12.png new file mode 100644 index 00000000..7feb77f8 Binary files /dev/null and b/website/images/mapicons/amenity_information.n.12.png differ diff --git a/website/images/mapicons/amenity_information.n.16.png b/website/images/mapicons/amenity_information.n.16.png new file mode 100644 index 00000000..d6da71bf Binary files /dev/null and b/website/images/mapicons/amenity_information.n.16.png differ diff --git a/website/images/mapicons/amenity_information.n.20.png b/website/images/mapicons/amenity_information.n.20.png new file mode 100644 index 00000000..2dd37e01 Binary files /dev/null and b/website/images/mapicons/amenity_information.n.20.png differ diff --git a/website/images/mapicons/amenity_information.n.24.png b/website/images/mapicons/amenity_information.n.24.png new file mode 100644 index 00000000..c7fddf7b Binary files /dev/null and b/website/images/mapicons/amenity_information.n.24.png differ diff --git a/website/images/mapicons/amenity_information.n.32.png b/website/images/mapicons/amenity_information.n.32.png new file mode 100644 index 00000000..647c7953 Binary files /dev/null and b/website/images/mapicons/amenity_information.n.32.png differ diff --git a/website/images/mapicons/amenity_information.p.12.png b/website/images/mapicons/amenity_information.p.12.png new file mode 100644 index 00000000..d91b9c47 Binary files /dev/null and b/website/images/mapicons/amenity_information.p.12.png differ diff --git a/website/images/mapicons/amenity_information.p.16.png b/website/images/mapicons/amenity_information.p.16.png new file mode 100644 index 00000000..65d03dbd Binary files /dev/null and b/website/images/mapicons/amenity_information.p.16.png differ diff --git a/website/images/mapicons/amenity_information.p.20.png b/website/images/mapicons/amenity_information.p.20.png new file mode 100644 index 00000000..490084e5 Binary files /dev/null and b/website/images/mapicons/amenity_information.p.20.png differ diff --git a/website/images/mapicons/amenity_information.p.24.png b/website/images/mapicons/amenity_information.p.24.png new file mode 100644 index 00000000..76d631e3 Binary files /dev/null and b/website/images/mapicons/amenity_information.p.24.png differ diff --git a/website/images/mapicons/amenity_information.p.32.png b/website/images/mapicons/amenity_information.p.32.png new file mode 100644 index 00000000..e3a91411 Binary files /dev/null and b/website/images/mapicons/amenity_information.p.32.png differ diff --git a/website/images/mapicons/amenity_library.glow.12.png b/website/images/mapicons/amenity_library.glow.12.png new file mode 100644 index 00000000..e56455e7 Binary files /dev/null and b/website/images/mapicons/amenity_library.glow.12.png differ diff --git a/website/images/mapicons/amenity_library.glow.16.png b/website/images/mapicons/amenity_library.glow.16.png new file mode 100644 index 00000000..67b78d12 Binary files /dev/null and b/website/images/mapicons/amenity_library.glow.16.png differ diff --git a/website/images/mapicons/amenity_library.glow.20.png b/website/images/mapicons/amenity_library.glow.20.png new file mode 100644 index 00000000..345ce6ed Binary files /dev/null and b/website/images/mapicons/amenity_library.glow.20.png differ diff --git a/website/images/mapicons/amenity_library.glow.24.png b/website/images/mapicons/amenity_library.glow.24.png new file mode 100644 index 00000000..14f79ffe Binary files /dev/null and b/website/images/mapicons/amenity_library.glow.24.png differ diff --git a/website/images/mapicons/amenity_library.glow.32.png b/website/images/mapicons/amenity_library.glow.32.png new file mode 100644 index 00000000..4c738e3d Binary files /dev/null and b/website/images/mapicons/amenity_library.glow.32.png differ diff --git a/website/images/mapicons/amenity_library.n.12.png b/website/images/mapicons/amenity_library.n.12.png new file mode 100644 index 00000000..99f3df94 Binary files /dev/null and b/website/images/mapicons/amenity_library.n.12.png differ diff --git a/website/images/mapicons/amenity_library.n.16.png b/website/images/mapicons/amenity_library.n.16.png new file mode 100644 index 00000000..6d153b5c Binary files /dev/null and b/website/images/mapicons/amenity_library.n.16.png differ diff --git a/website/images/mapicons/amenity_library.n.20.png b/website/images/mapicons/amenity_library.n.20.png new file mode 100644 index 00000000..45279f15 Binary files /dev/null and b/website/images/mapicons/amenity_library.n.20.png differ diff --git a/website/images/mapicons/amenity_library.n.24.png b/website/images/mapicons/amenity_library.n.24.png new file mode 100644 index 00000000..658e1f1b Binary files /dev/null and b/website/images/mapicons/amenity_library.n.24.png differ diff --git a/website/images/mapicons/amenity_library.n.32.png b/website/images/mapicons/amenity_library.n.32.png new file mode 100644 index 00000000..66ceb30a Binary files /dev/null and b/website/images/mapicons/amenity_library.n.32.png differ diff --git a/website/images/mapicons/amenity_library.p.12.png b/website/images/mapicons/amenity_library.p.12.png new file mode 100644 index 00000000..d92b7077 Binary files /dev/null and b/website/images/mapicons/amenity_library.p.12.png differ diff --git a/website/images/mapicons/amenity_library.p.16.png b/website/images/mapicons/amenity_library.p.16.png new file mode 100644 index 00000000..0e6f08ec Binary files /dev/null and b/website/images/mapicons/amenity_library.p.16.png differ diff --git a/website/images/mapicons/amenity_library.p.20.png b/website/images/mapicons/amenity_library.p.20.png new file mode 100644 index 00000000..fb50708d Binary files /dev/null and b/website/images/mapicons/amenity_library.p.20.png differ diff --git a/website/images/mapicons/amenity_library.p.24.png b/website/images/mapicons/amenity_library.p.24.png new file mode 100644 index 00000000..3be876e1 Binary files /dev/null and b/website/images/mapicons/amenity_library.p.24.png differ diff --git a/website/images/mapicons/amenity_library.p.32.png b/website/images/mapicons/amenity_library.p.32.png new file mode 100644 index 00000000..f3ef378e Binary files /dev/null and b/website/images/mapicons/amenity_library.p.32.png differ diff --git a/website/images/mapicons/amenity_police.glow.12.png b/website/images/mapicons/amenity_police.glow.12.png new file mode 100644 index 00000000..2cde30b4 Binary files /dev/null and b/website/images/mapicons/amenity_police.glow.12.png differ diff --git a/website/images/mapicons/amenity_police.glow.16.png b/website/images/mapicons/amenity_police.glow.16.png new file mode 100644 index 00000000..fe46579c Binary files /dev/null and b/website/images/mapicons/amenity_police.glow.16.png differ diff --git a/website/images/mapicons/amenity_police.glow.20.png b/website/images/mapicons/amenity_police.glow.20.png new file mode 100644 index 00000000..b27b90e1 Binary files /dev/null and b/website/images/mapicons/amenity_police.glow.20.png differ diff --git a/website/images/mapicons/amenity_police.glow.24.png b/website/images/mapicons/amenity_police.glow.24.png new file mode 100644 index 00000000..517248d7 Binary files /dev/null and b/website/images/mapicons/amenity_police.glow.24.png differ diff --git a/website/images/mapicons/amenity_police.glow.32.png b/website/images/mapicons/amenity_police.glow.32.png new file mode 100644 index 00000000..b23a25ee Binary files /dev/null and b/website/images/mapicons/amenity_police.glow.32.png differ diff --git a/website/images/mapicons/amenity_police.n.12.png b/website/images/mapicons/amenity_police.n.12.png new file mode 100644 index 00000000..51b233bf Binary files /dev/null and b/website/images/mapicons/amenity_police.n.12.png differ diff --git a/website/images/mapicons/amenity_police.n.16.png b/website/images/mapicons/amenity_police.n.16.png new file mode 100644 index 00000000..526b05d9 Binary files /dev/null and b/website/images/mapicons/amenity_police.n.16.png differ diff --git a/website/images/mapicons/amenity_police.n.20.png b/website/images/mapicons/amenity_police.n.20.png new file mode 100644 index 00000000..4fdcf2dc Binary files /dev/null and b/website/images/mapicons/amenity_police.n.20.png differ diff --git a/website/images/mapicons/amenity_police.n.24.png b/website/images/mapicons/amenity_police.n.24.png new file mode 100644 index 00000000..bd81c32b Binary files /dev/null and b/website/images/mapicons/amenity_police.n.24.png differ diff --git a/website/images/mapicons/amenity_police.n.32.png b/website/images/mapicons/amenity_police.n.32.png new file mode 100644 index 00000000..d312df76 Binary files /dev/null and b/website/images/mapicons/amenity_police.n.32.png differ diff --git a/website/images/mapicons/amenity_police.p.12.png b/website/images/mapicons/amenity_police.p.12.png new file mode 100644 index 00000000..5566ea17 Binary files /dev/null and b/website/images/mapicons/amenity_police.p.12.png differ diff --git a/website/images/mapicons/amenity_police.p.16.png b/website/images/mapicons/amenity_police.p.16.png new file mode 100644 index 00000000..5e121eaf Binary files /dev/null and b/website/images/mapicons/amenity_police.p.16.png differ diff --git a/website/images/mapicons/amenity_police.p.20.png b/website/images/mapicons/amenity_police.p.20.png new file mode 100644 index 00000000..81237908 Binary files /dev/null and b/website/images/mapicons/amenity_police.p.20.png differ diff --git a/website/images/mapicons/amenity_police.p.24.png b/website/images/mapicons/amenity_police.p.24.png new file mode 100644 index 00000000..84af5a14 Binary files /dev/null and b/website/images/mapicons/amenity_police.p.24.png differ diff --git a/website/images/mapicons/amenity_police.p.32.png b/website/images/mapicons/amenity_police.p.32.png new file mode 100644 index 00000000..2a63bdac Binary files /dev/null and b/website/images/mapicons/amenity_police.p.32.png differ diff --git a/website/images/mapicons/amenity_police2.glow.12.png b/website/images/mapicons/amenity_police2.glow.12.png new file mode 100644 index 00000000..4b7236bf Binary files /dev/null and b/website/images/mapicons/amenity_police2.glow.12.png differ diff --git a/website/images/mapicons/amenity_police2.glow.16.png b/website/images/mapicons/amenity_police2.glow.16.png new file mode 100644 index 00000000..d567c5d5 Binary files /dev/null and b/website/images/mapicons/amenity_police2.glow.16.png differ diff --git a/website/images/mapicons/amenity_police2.glow.20.png b/website/images/mapicons/amenity_police2.glow.20.png new file mode 100644 index 00000000..dfbb5695 Binary files /dev/null and b/website/images/mapicons/amenity_police2.glow.20.png differ diff --git a/website/images/mapicons/amenity_police2.glow.24.png b/website/images/mapicons/amenity_police2.glow.24.png new file mode 100644 index 00000000..8dc482a3 Binary files /dev/null and b/website/images/mapicons/amenity_police2.glow.24.png differ diff --git a/website/images/mapicons/amenity_police2.glow.32.png b/website/images/mapicons/amenity_police2.glow.32.png new file mode 100644 index 00000000..24579e32 Binary files /dev/null and b/website/images/mapicons/amenity_police2.glow.32.png differ diff --git a/website/images/mapicons/amenity_police2.n.12.png b/website/images/mapicons/amenity_police2.n.12.png new file mode 100644 index 00000000..379a7e94 Binary files /dev/null and b/website/images/mapicons/amenity_police2.n.12.png differ diff --git a/website/images/mapicons/amenity_police2.n.16.png b/website/images/mapicons/amenity_police2.n.16.png new file mode 100644 index 00000000..b2a4aab5 Binary files /dev/null and b/website/images/mapicons/amenity_police2.n.16.png differ diff --git a/website/images/mapicons/amenity_police2.n.20.png b/website/images/mapicons/amenity_police2.n.20.png new file mode 100644 index 00000000..1ee0520a Binary files /dev/null and b/website/images/mapicons/amenity_police2.n.20.png differ diff --git a/website/images/mapicons/amenity_police2.n.24.png b/website/images/mapicons/amenity_police2.n.24.png new file mode 100644 index 00000000..a9d6566f Binary files /dev/null and b/website/images/mapicons/amenity_police2.n.24.png differ diff --git a/website/images/mapicons/amenity_police2.n.32.png b/website/images/mapicons/amenity_police2.n.32.png new file mode 100644 index 00000000..db60ae13 Binary files /dev/null and b/website/images/mapicons/amenity_police2.n.32.png differ diff --git a/website/images/mapicons/amenity_police2.p.12.png b/website/images/mapicons/amenity_police2.p.12.png new file mode 100644 index 00000000..27043a97 Binary files /dev/null and b/website/images/mapicons/amenity_police2.p.12.png differ diff --git a/website/images/mapicons/amenity_police2.p.16.png b/website/images/mapicons/amenity_police2.p.16.png new file mode 100644 index 00000000..990b9889 Binary files /dev/null and b/website/images/mapicons/amenity_police2.p.16.png differ diff --git a/website/images/mapicons/amenity_police2.p.20.png b/website/images/mapicons/amenity_police2.p.20.png new file mode 100644 index 00000000..680fbbbb Binary files /dev/null and b/website/images/mapicons/amenity_police2.p.20.png differ diff --git a/website/images/mapicons/amenity_police2.p.24.png b/website/images/mapicons/amenity_police2.p.24.png new file mode 100644 index 00000000..3eaa7f35 Binary files /dev/null and b/website/images/mapicons/amenity_police2.p.24.png differ diff --git a/website/images/mapicons/amenity_police2.p.32.png b/website/images/mapicons/amenity_police2.p.32.png new file mode 100644 index 00000000..6e5f63a7 Binary files /dev/null and b/website/images/mapicons/amenity_police2.p.32.png differ diff --git a/website/images/mapicons/amenity_post_box.glow.12.png b/website/images/mapicons/amenity_post_box.glow.12.png new file mode 100644 index 00000000..494d0c92 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.glow.12.png differ diff --git a/website/images/mapicons/amenity_post_box.glow.16.png b/website/images/mapicons/amenity_post_box.glow.16.png new file mode 100644 index 00000000..dc2a0cf8 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.glow.16.png differ diff --git a/website/images/mapicons/amenity_post_box.glow.20.png b/website/images/mapicons/amenity_post_box.glow.20.png new file mode 100644 index 00000000..acab7237 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.glow.20.png differ diff --git a/website/images/mapicons/amenity_post_box.glow.24.png b/website/images/mapicons/amenity_post_box.glow.24.png new file mode 100644 index 00000000..a529fb03 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.glow.24.png differ diff --git a/website/images/mapicons/amenity_post_box.glow.32.png b/website/images/mapicons/amenity_post_box.glow.32.png new file mode 100644 index 00000000..03ba7fd2 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.glow.32.png differ diff --git a/website/images/mapicons/amenity_post_box.n.12.png b/website/images/mapicons/amenity_post_box.n.12.png new file mode 100644 index 00000000..96e55ca5 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.n.12.png differ diff --git a/website/images/mapicons/amenity_post_box.n.16.png b/website/images/mapicons/amenity_post_box.n.16.png new file mode 100644 index 00000000..f72efcf7 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.n.16.png differ diff --git a/website/images/mapicons/amenity_post_box.n.20.png b/website/images/mapicons/amenity_post_box.n.20.png new file mode 100644 index 00000000..039321c5 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.n.20.png differ diff --git a/website/images/mapicons/amenity_post_box.n.24.png b/website/images/mapicons/amenity_post_box.n.24.png new file mode 100644 index 00000000..4b5eb86a Binary files /dev/null and b/website/images/mapicons/amenity_post_box.n.24.png differ diff --git a/website/images/mapicons/amenity_post_box.n.32.png b/website/images/mapicons/amenity_post_box.n.32.png new file mode 100644 index 00000000..4a197c85 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.n.32.png differ diff --git a/website/images/mapicons/amenity_post_box.p.12.png b/website/images/mapicons/amenity_post_box.p.12.png new file mode 100644 index 00000000..f6978b5f Binary files /dev/null and b/website/images/mapicons/amenity_post_box.p.12.png differ diff --git a/website/images/mapicons/amenity_post_box.p.16.png b/website/images/mapicons/amenity_post_box.p.16.png new file mode 100644 index 00000000..1d88ffe9 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.p.16.png differ diff --git a/website/images/mapicons/amenity_post_box.p.20.png b/website/images/mapicons/amenity_post_box.p.20.png new file mode 100644 index 00000000..8890b812 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.p.20.png differ diff --git a/website/images/mapicons/amenity_post_box.p.24.png b/website/images/mapicons/amenity_post_box.p.24.png new file mode 100644 index 00000000..550c914e Binary files /dev/null and b/website/images/mapicons/amenity_post_box.p.24.png differ diff --git a/website/images/mapicons/amenity_post_box.p.32.png b/website/images/mapicons/amenity_post_box.p.32.png new file mode 100644 index 00000000..c09187c2 Binary files /dev/null and b/website/images/mapicons/amenity_post_box.p.32.png differ diff --git a/website/images/mapicons/amenity_post_office.glow.12.png b/website/images/mapicons/amenity_post_office.glow.12.png new file mode 100644 index 00000000..bc53b33e Binary files /dev/null and b/website/images/mapicons/amenity_post_office.glow.12.png differ diff --git a/website/images/mapicons/amenity_post_office.glow.16.png b/website/images/mapicons/amenity_post_office.glow.16.png new file mode 100644 index 00000000..0e509646 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.glow.16.png differ diff --git a/website/images/mapicons/amenity_post_office.glow.20.png b/website/images/mapicons/amenity_post_office.glow.20.png new file mode 100644 index 00000000..3d804881 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.glow.20.png differ diff --git a/website/images/mapicons/amenity_post_office.glow.24.png b/website/images/mapicons/amenity_post_office.glow.24.png new file mode 100644 index 00000000..f231061a Binary files /dev/null and b/website/images/mapicons/amenity_post_office.glow.24.png differ diff --git a/website/images/mapicons/amenity_post_office.glow.32.png b/website/images/mapicons/amenity_post_office.glow.32.png new file mode 100644 index 00000000..c2a15ed9 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.glow.32.png differ diff --git a/website/images/mapicons/amenity_post_office.n.12.png b/website/images/mapicons/amenity_post_office.n.12.png new file mode 100644 index 00000000..7441513e Binary files /dev/null and b/website/images/mapicons/amenity_post_office.n.12.png differ diff --git a/website/images/mapicons/amenity_post_office.n.16.png b/website/images/mapicons/amenity_post_office.n.16.png new file mode 100644 index 00000000..f0e3f814 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.n.16.png differ diff --git a/website/images/mapicons/amenity_post_office.n.20.png b/website/images/mapicons/amenity_post_office.n.20.png new file mode 100644 index 00000000..7fb2b248 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.n.20.png differ diff --git a/website/images/mapicons/amenity_post_office.n.24.png b/website/images/mapicons/amenity_post_office.n.24.png new file mode 100644 index 00000000..803665d0 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.n.24.png differ diff --git a/website/images/mapicons/amenity_post_office.n.32.png b/website/images/mapicons/amenity_post_office.n.32.png new file mode 100644 index 00000000..a8040dbc Binary files /dev/null and b/website/images/mapicons/amenity_post_office.n.32.png differ diff --git a/website/images/mapicons/amenity_post_office.p.12.png b/website/images/mapicons/amenity_post_office.p.12.png new file mode 100644 index 00000000..d90c7c0d Binary files /dev/null and b/website/images/mapicons/amenity_post_office.p.12.png differ diff --git a/website/images/mapicons/amenity_post_office.p.16.png b/website/images/mapicons/amenity_post_office.p.16.png new file mode 100644 index 00000000..baac3bf3 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.p.16.png differ diff --git a/website/images/mapicons/amenity_post_office.p.20.png b/website/images/mapicons/amenity_post_office.p.20.png new file mode 100644 index 00000000..cec1e185 Binary files /dev/null and b/website/images/mapicons/amenity_post_office.p.20.png differ diff --git a/website/images/mapicons/amenity_post_office.p.24.png b/website/images/mapicons/amenity_post_office.p.24.png new file mode 100644 index 00000000..071917ae Binary files /dev/null and b/website/images/mapicons/amenity_post_office.p.24.png differ diff --git a/website/images/mapicons/amenity_post_office.p.32.png b/website/images/mapicons/amenity_post_office.p.32.png new file mode 100644 index 00000000..cd6cfded Binary files /dev/null and b/website/images/mapicons/amenity_post_office.p.32.png differ diff --git a/website/images/mapicons/amenity_prison.glow.12.png b/website/images/mapicons/amenity_prison.glow.12.png new file mode 100644 index 00000000..7d15d3c1 Binary files /dev/null and b/website/images/mapicons/amenity_prison.glow.12.png differ diff --git a/website/images/mapicons/amenity_prison.glow.16.png b/website/images/mapicons/amenity_prison.glow.16.png new file mode 100644 index 00000000..f9d5bad7 Binary files /dev/null and b/website/images/mapicons/amenity_prison.glow.16.png differ diff --git a/website/images/mapicons/amenity_prison.glow.20.png b/website/images/mapicons/amenity_prison.glow.20.png new file mode 100644 index 00000000..8b324ab4 Binary files /dev/null and b/website/images/mapicons/amenity_prison.glow.20.png differ diff --git a/website/images/mapicons/amenity_prison.glow.24.png b/website/images/mapicons/amenity_prison.glow.24.png new file mode 100644 index 00000000..e5805ca3 Binary files /dev/null and b/website/images/mapicons/amenity_prison.glow.24.png differ diff --git a/website/images/mapicons/amenity_prison.glow.32.png b/website/images/mapicons/amenity_prison.glow.32.png new file mode 100644 index 00000000..d6df298a Binary files /dev/null and b/website/images/mapicons/amenity_prison.glow.32.png differ diff --git a/website/images/mapicons/amenity_prison.n.12.png b/website/images/mapicons/amenity_prison.n.12.png new file mode 100644 index 00000000..4311fbbf Binary files /dev/null and b/website/images/mapicons/amenity_prison.n.12.png differ diff --git a/website/images/mapicons/amenity_prison.n.16.png b/website/images/mapicons/amenity_prison.n.16.png new file mode 100644 index 00000000..a9a64470 Binary files /dev/null and b/website/images/mapicons/amenity_prison.n.16.png differ diff --git a/website/images/mapicons/amenity_prison.n.20.png b/website/images/mapicons/amenity_prison.n.20.png new file mode 100644 index 00000000..de381566 Binary files /dev/null and b/website/images/mapicons/amenity_prison.n.20.png differ diff --git a/website/images/mapicons/amenity_prison.n.24.png b/website/images/mapicons/amenity_prison.n.24.png new file mode 100644 index 00000000..040df076 Binary files /dev/null and b/website/images/mapicons/amenity_prison.n.24.png differ diff --git a/website/images/mapicons/amenity_prison.n.32.png b/website/images/mapicons/amenity_prison.n.32.png new file mode 100644 index 00000000..ae80d848 Binary files /dev/null and b/website/images/mapicons/amenity_prison.n.32.png differ diff --git a/website/images/mapicons/amenity_prison.p.12.png b/website/images/mapicons/amenity_prison.p.12.png new file mode 100644 index 00000000..53d02120 Binary files /dev/null and b/website/images/mapicons/amenity_prison.p.12.png differ diff --git a/website/images/mapicons/amenity_prison.p.16.png b/website/images/mapicons/amenity_prison.p.16.png new file mode 100644 index 00000000..32ccbe23 Binary files /dev/null and b/website/images/mapicons/amenity_prison.p.16.png differ diff --git a/website/images/mapicons/amenity_prison.p.20.png b/website/images/mapicons/amenity_prison.p.20.png new file mode 100644 index 00000000..c5d739fa Binary files /dev/null and b/website/images/mapicons/amenity_prison.p.20.png differ diff --git a/website/images/mapicons/amenity_prison.p.24.png b/website/images/mapicons/amenity_prison.p.24.png new file mode 100644 index 00000000..c0ea5d62 Binary files /dev/null and b/website/images/mapicons/amenity_prison.p.24.png differ diff --git a/website/images/mapicons/amenity_prison.p.32.png b/website/images/mapicons/amenity_prison.p.32.png new file mode 100644 index 00000000..f7ac8c06 Binary files /dev/null and b/website/images/mapicons/amenity_prison.p.32.png differ diff --git a/website/images/mapicons/amenity_recycling.glow.12.png b/website/images/mapicons/amenity_recycling.glow.12.png new file mode 100644 index 00000000..ac70ce73 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.glow.12.png differ diff --git a/website/images/mapicons/amenity_recycling.glow.16.png b/website/images/mapicons/amenity_recycling.glow.16.png new file mode 100644 index 00000000..e37945f2 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.glow.16.png differ diff --git a/website/images/mapicons/amenity_recycling.glow.20.png b/website/images/mapicons/amenity_recycling.glow.20.png new file mode 100644 index 00000000..852d235a Binary files /dev/null and b/website/images/mapicons/amenity_recycling.glow.20.png differ diff --git a/website/images/mapicons/amenity_recycling.glow.24.png b/website/images/mapicons/amenity_recycling.glow.24.png new file mode 100644 index 00000000..0d0a5f7d Binary files /dev/null and b/website/images/mapicons/amenity_recycling.glow.24.png differ diff --git a/website/images/mapicons/amenity_recycling.glow.32.png b/website/images/mapicons/amenity_recycling.glow.32.png new file mode 100644 index 00000000..2dadd954 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.glow.32.png differ diff --git a/website/images/mapicons/amenity_recycling.n.12.png b/website/images/mapicons/amenity_recycling.n.12.png new file mode 100644 index 00000000..775995b8 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.n.12.png differ diff --git a/website/images/mapicons/amenity_recycling.n.16.png b/website/images/mapicons/amenity_recycling.n.16.png new file mode 100644 index 00000000..567779b2 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.n.16.png differ diff --git a/website/images/mapicons/amenity_recycling.n.20.png b/website/images/mapicons/amenity_recycling.n.20.png new file mode 100644 index 00000000..a567e120 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.n.20.png differ diff --git a/website/images/mapicons/amenity_recycling.n.24.png b/website/images/mapicons/amenity_recycling.n.24.png new file mode 100644 index 00000000..d608f7d7 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.n.24.png differ diff --git a/website/images/mapicons/amenity_recycling.n.32.png b/website/images/mapicons/amenity_recycling.n.32.png new file mode 100644 index 00000000..5b0c1209 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.n.32.png differ diff --git a/website/images/mapicons/amenity_recycling.p.12.png b/website/images/mapicons/amenity_recycling.p.12.png new file mode 100644 index 00000000..7e95dbae Binary files /dev/null and b/website/images/mapicons/amenity_recycling.p.12.png differ diff --git a/website/images/mapicons/amenity_recycling.p.16.png b/website/images/mapicons/amenity_recycling.p.16.png new file mode 100644 index 00000000..f978728c Binary files /dev/null and b/website/images/mapicons/amenity_recycling.p.16.png differ diff --git a/website/images/mapicons/amenity_recycling.p.20.png b/website/images/mapicons/amenity_recycling.p.20.png new file mode 100644 index 00000000..aa9342d2 Binary files /dev/null and b/website/images/mapicons/amenity_recycling.p.20.png differ diff --git a/website/images/mapicons/amenity_recycling.p.24.png b/website/images/mapicons/amenity_recycling.p.24.png new file mode 100644 index 00000000..2ef3d56c Binary files /dev/null and b/website/images/mapicons/amenity_recycling.p.24.png differ diff --git a/website/images/mapicons/amenity_recycling.p.32.png b/website/images/mapicons/amenity_recycling.p.32.png new file mode 100644 index 00000000..6531d72d Binary files /dev/null and b/website/images/mapicons/amenity_recycling.p.32.png differ diff --git a/website/images/mapicons/amenity_survey_point.glow.12.png b/website/images/mapicons/amenity_survey_point.glow.12.png new file mode 100644 index 00000000..683bd75c Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.glow.12.png differ diff --git a/website/images/mapicons/amenity_survey_point.glow.16.png b/website/images/mapicons/amenity_survey_point.glow.16.png new file mode 100644 index 00000000..e2144f27 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.glow.16.png differ diff --git a/website/images/mapicons/amenity_survey_point.glow.20.png b/website/images/mapicons/amenity_survey_point.glow.20.png new file mode 100644 index 00000000..a395a906 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.glow.20.png differ diff --git a/website/images/mapicons/amenity_survey_point.glow.24.png b/website/images/mapicons/amenity_survey_point.glow.24.png new file mode 100644 index 00000000..dcccbe27 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.glow.24.png differ diff --git a/website/images/mapicons/amenity_survey_point.glow.32.png b/website/images/mapicons/amenity_survey_point.glow.32.png new file mode 100644 index 00000000..9a063f67 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.glow.32.png differ diff --git a/website/images/mapicons/amenity_survey_point.n.12.png b/website/images/mapicons/amenity_survey_point.n.12.png new file mode 100644 index 00000000..6a03ec3f Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.n.12.png differ diff --git a/website/images/mapicons/amenity_survey_point.n.16.png b/website/images/mapicons/amenity_survey_point.n.16.png new file mode 100644 index 00000000..e40d8a3c Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.n.16.png differ diff --git a/website/images/mapicons/amenity_survey_point.n.20.png b/website/images/mapicons/amenity_survey_point.n.20.png new file mode 100644 index 00000000..f192eb75 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.n.20.png differ diff --git a/website/images/mapicons/amenity_survey_point.n.24.png b/website/images/mapicons/amenity_survey_point.n.24.png new file mode 100644 index 00000000..05faac0f Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.n.24.png differ diff --git a/website/images/mapicons/amenity_survey_point.n.32.png b/website/images/mapicons/amenity_survey_point.n.32.png new file mode 100644 index 00000000..77dbc5bb Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.n.32.png differ diff --git a/website/images/mapicons/amenity_survey_point.p.12.png b/website/images/mapicons/amenity_survey_point.p.12.png new file mode 100644 index 00000000..078c8090 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.p.12.png differ diff --git a/website/images/mapicons/amenity_survey_point.p.16.png b/website/images/mapicons/amenity_survey_point.p.16.png new file mode 100644 index 00000000..7453d83c Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.p.16.png differ diff --git a/website/images/mapicons/amenity_survey_point.p.20.png b/website/images/mapicons/amenity_survey_point.p.20.png new file mode 100644 index 00000000..cc8860b4 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.p.20.png differ diff --git a/website/images/mapicons/amenity_survey_point.p.24.png b/website/images/mapicons/amenity_survey_point.p.24.png new file mode 100644 index 00000000..075cfabd Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.p.24.png differ diff --git a/website/images/mapicons/amenity_survey_point.p.32.png b/website/images/mapicons/amenity_survey_point.p.32.png new file mode 100644 index 00000000..d6d8d715 Binary files /dev/null and b/website/images/mapicons/amenity_survey_point.p.32.png differ diff --git a/website/images/mapicons/amenity_telephone.glow.12.png b/website/images/mapicons/amenity_telephone.glow.12.png new file mode 100644 index 00000000..ca83a211 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.glow.12.png differ diff --git a/website/images/mapicons/amenity_telephone.glow.16.png b/website/images/mapicons/amenity_telephone.glow.16.png new file mode 100644 index 00000000..432009ef Binary files /dev/null and b/website/images/mapicons/amenity_telephone.glow.16.png differ diff --git a/website/images/mapicons/amenity_telephone.glow.20.png b/website/images/mapicons/amenity_telephone.glow.20.png new file mode 100644 index 00000000..c13aff79 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.glow.20.png differ diff --git a/website/images/mapicons/amenity_telephone.glow.24.png b/website/images/mapicons/amenity_telephone.glow.24.png new file mode 100644 index 00000000..6a18aae0 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.glow.24.png differ diff --git a/website/images/mapicons/amenity_telephone.glow.32.png b/website/images/mapicons/amenity_telephone.glow.32.png new file mode 100644 index 00000000..b21700ed Binary files /dev/null and b/website/images/mapicons/amenity_telephone.glow.32.png differ diff --git a/website/images/mapicons/amenity_telephone.n.12.png b/website/images/mapicons/amenity_telephone.n.12.png new file mode 100644 index 00000000..32aee8b5 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.n.12.png differ diff --git a/website/images/mapicons/amenity_telephone.n.16.png b/website/images/mapicons/amenity_telephone.n.16.png new file mode 100644 index 00000000..b6981ec8 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.n.16.png differ diff --git a/website/images/mapicons/amenity_telephone.n.20.png b/website/images/mapicons/amenity_telephone.n.20.png new file mode 100644 index 00000000..81b8eef3 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.n.20.png differ diff --git a/website/images/mapicons/amenity_telephone.n.24.png b/website/images/mapicons/amenity_telephone.n.24.png new file mode 100644 index 00000000..0fc460d2 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.n.24.png differ diff --git a/website/images/mapicons/amenity_telephone.n.32.png b/website/images/mapicons/amenity_telephone.n.32.png new file mode 100644 index 00000000..f1f8e175 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.n.32.png differ diff --git a/website/images/mapicons/amenity_telephone.p.12.png b/website/images/mapicons/amenity_telephone.p.12.png new file mode 100644 index 00000000..2e006f72 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.p.12.png differ diff --git a/website/images/mapicons/amenity_telephone.p.16.png b/website/images/mapicons/amenity_telephone.p.16.png new file mode 100644 index 00000000..18856dc0 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.p.16.png differ diff --git a/website/images/mapicons/amenity_telephone.p.20.png b/website/images/mapicons/amenity_telephone.p.20.png new file mode 100644 index 00000000..5ed25712 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.p.20.png differ diff --git a/website/images/mapicons/amenity_telephone.p.24.png b/website/images/mapicons/amenity_telephone.p.24.png new file mode 100644 index 00000000..f9cdb0f5 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.p.24.png differ diff --git a/website/images/mapicons/amenity_telephone.p.32.png b/website/images/mapicons/amenity_telephone.p.32.png new file mode 100644 index 00000000..eb8b9213 Binary files /dev/null and b/website/images/mapicons/amenity_telephone.p.32.png differ diff --git a/website/images/mapicons/amenity_toilets.glow.12.png b/website/images/mapicons/amenity_toilets.glow.12.png new file mode 100644 index 00000000..38079ef8 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.glow.12.png differ diff --git a/website/images/mapicons/amenity_toilets.glow.16.png b/website/images/mapicons/amenity_toilets.glow.16.png new file mode 100644 index 00000000..87188002 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.glow.16.png differ diff --git a/website/images/mapicons/amenity_toilets.glow.20.png b/website/images/mapicons/amenity_toilets.glow.20.png new file mode 100644 index 00000000..9a87bc2a Binary files /dev/null and b/website/images/mapicons/amenity_toilets.glow.20.png differ diff --git a/website/images/mapicons/amenity_toilets.glow.24.png b/website/images/mapicons/amenity_toilets.glow.24.png new file mode 100644 index 00000000..bd7d81de Binary files /dev/null and b/website/images/mapicons/amenity_toilets.glow.24.png differ diff --git a/website/images/mapicons/amenity_toilets.glow.32.png b/website/images/mapicons/amenity_toilets.glow.32.png new file mode 100644 index 00000000..9e73c3c3 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.glow.32.png differ diff --git a/website/images/mapicons/amenity_toilets.n.12.png b/website/images/mapicons/amenity_toilets.n.12.png new file mode 100644 index 00000000..81bacefd Binary files /dev/null and b/website/images/mapicons/amenity_toilets.n.12.png differ diff --git a/website/images/mapicons/amenity_toilets.n.16.png b/website/images/mapicons/amenity_toilets.n.16.png new file mode 100644 index 00000000..5d80dd5b Binary files /dev/null and b/website/images/mapicons/amenity_toilets.n.16.png differ diff --git a/website/images/mapicons/amenity_toilets.n.20.png b/website/images/mapicons/amenity_toilets.n.20.png new file mode 100644 index 00000000..55699af4 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.n.20.png differ diff --git a/website/images/mapicons/amenity_toilets.n.24.png b/website/images/mapicons/amenity_toilets.n.24.png new file mode 100644 index 00000000..f8475f06 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.n.24.png differ diff --git a/website/images/mapicons/amenity_toilets.n.32.png b/website/images/mapicons/amenity_toilets.n.32.png new file mode 100644 index 00000000..29e351d8 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.n.32.png differ diff --git a/website/images/mapicons/amenity_toilets.p.12.png b/website/images/mapicons/amenity_toilets.p.12.png new file mode 100644 index 00000000..9737a402 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.p.12.png differ diff --git a/website/images/mapicons/amenity_toilets.p.16.png b/website/images/mapicons/amenity_toilets.p.16.png new file mode 100644 index 00000000..c762e06e Binary files /dev/null and b/website/images/mapicons/amenity_toilets.p.16.png differ diff --git a/website/images/mapicons/amenity_toilets.p.20.png b/website/images/mapicons/amenity_toilets.p.20.png new file mode 100644 index 00000000..fc42b9f6 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.p.20.png differ diff --git a/website/images/mapicons/amenity_toilets.p.24.png b/website/images/mapicons/amenity_toilets.p.24.png new file mode 100644 index 00000000..6817dae0 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.p.24.png differ diff --git a/website/images/mapicons/amenity_toilets.p.32.png b/website/images/mapicons/amenity_toilets.p.32.png new file mode 100644 index 00000000..6cad1c89 Binary files /dev/null and b/website/images/mapicons/amenity_toilets.p.32.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.glow.12.png b/website/images/mapicons/amenity_toilets_disabled.glow.12.png new file mode 100644 index 00000000..9781f384 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.glow.12.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.glow.16.png b/website/images/mapicons/amenity_toilets_disabled.glow.16.png new file mode 100644 index 00000000..25a54e1e Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.glow.16.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.glow.20.png b/website/images/mapicons/amenity_toilets_disabled.glow.20.png new file mode 100644 index 00000000..249881b9 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.glow.20.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.glow.24.png b/website/images/mapicons/amenity_toilets_disabled.glow.24.png new file mode 100644 index 00000000..b4b0d16a Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.glow.24.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.glow.32.png b/website/images/mapicons/amenity_toilets_disabled.glow.32.png new file mode 100644 index 00000000..4d7b4a26 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.glow.32.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.n.12.png b/website/images/mapicons/amenity_toilets_disabled.n.12.png new file mode 100644 index 00000000..72c66504 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.n.12.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.n.16.png b/website/images/mapicons/amenity_toilets_disabled.n.16.png new file mode 100644 index 00000000..1a676f9b Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.n.16.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.n.20.png b/website/images/mapicons/amenity_toilets_disabled.n.20.png new file mode 100644 index 00000000..3fc9dfc8 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.n.20.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.n.24.png b/website/images/mapicons/amenity_toilets_disabled.n.24.png new file mode 100644 index 00000000..eb08ef24 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.n.24.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.n.32.png b/website/images/mapicons/amenity_toilets_disabled.n.32.png new file mode 100644 index 00000000..52a34eb2 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.n.32.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.p.12.png b/website/images/mapicons/amenity_toilets_disabled.p.12.png new file mode 100644 index 00000000..7570b969 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.p.12.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.p.16.png b/website/images/mapicons/amenity_toilets_disabled.p.16.png new file mode 100644 index 00000000..24e7ba59 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.p.16.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.p.20.png b/website/images/mapicons/amenity_toilets_disabled.p.20.png new file mode 100644 index 00000000..0763a6b4 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.p.20.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.p.24.png b/website/images/mapicons/amenity_toilets_disabled.p.24.png new file mode 100644 index 00000000..72fc94df Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.p.24.png differ diff --git a/website/images/mapicons/amenity_toilets_disabled.p.32.png b/website/images/mapicons/amenity_toilets_disabled.p.32.png new file mode 100644 index 00000000..52a8a3a2 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_disabled.p.32.png differ diff --git a/website/images/mapicons/amenity_toilets_men.glow.12.png b/website/images/mapicons/amenity_toilets_men.glow.12.png new file mode 100644 index 00000000..63d2591b Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.glow.12.png differ diff --git a/website/images/mapicons/amenity_toilets_men.glow.16.png b/website/images/mapicons/amenity_toilets_men.glow.16.png new file mode 100644 index 00000000..65b53d45 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.glow.16.png differ diff --git a/website/images/mapicons/amenity_toilets_men.glow.20.png b/website/images/mapicons/amenity_toilets_men.glow.20.png new file mode 100644 index 00000000..e2ff7566 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.glow.20.png differ diff --git a/website/images/mapicons/amenity_toilets_men.glow.24.png b/website/images/mapicons/amenity_toilets_men.glow.24.png new file mode 100644 index 00000000..f7d65f66 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.glow.24.png differ diff --git a/website/images/mapicons/amenity_toilets_men.glow.32.png b/website/images/mapicons/amenity_toilets_men.glow.32.png new file mode 100644 index 00000000..a6f30e3e Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.glow.32.png differ diff --git a/website/images/mapicons/amenity_toilets_men.n.12.png b/website/images/mapicons/amenity_toilets_men.n.12.png new file mode 100644 index 00000000..b50fbe76 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.n.12.png differ diff --git a/website/images/mapicons/amenity_toilets_men.n.16.png b/website/images/mapicons/amenity_toilets_men.n.16.png new file mode 100644 index 00000000..d557fb7e Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.n.16.png differ diff --git a/website/images/mapicons/amenity_toilets_men.n.20.png b/website/images/mapicons/amenity_toilets_men.n.20.png new file mode 100644 index 00000000..07df0f36 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.n.20.png differ diff --git a/website/images/mapicons/amenity_toilets_men.n.24.png b/website/images/mapicons/amenity_toilets_men.n.24.png new file mode 100644 index 00000000..175092a4 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.n.24.png differ diff --git a/website/images/mapicons/amenity_toilets_men.n.32.png b/website/images/mapicons/amenity_toilets_men.n.32.png new file mode 100644 index 00000000..c6c6b335 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.n.32.png differ diff --git a/website/images/mapicons/amenity_toilets_men.p.12.png b/website/images/mapicons/amenity_toilets_men.p.12.png new file mode 100644 index 00000000..8e449dfd Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.p.12.png differ diff --git a/website/images/mapicons/amenity_toilets_men.p.16.png b/website/images/mapicons/amenity_toilets_men.p.16.png new file mode 100644 index 00000000..511ea4d4 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.p.16.png differ diff --git a/website/images/mapicons/amenity_toilets_men.p.20.png b/website/images/mapicons/amenity_toilets_men.p.20.png new file mode 100644 index 00000000..6d01ddc1 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.p.20.png differ diff --git a/website/images/mapicons/amenity_toilets_men.p.24.png b/website/images/mapicons/amenity_toilets_men.p.24.png new file mode 100644 index 00000000..054a0e22 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.p.24.png differ diff --git a/website/images/mapicons/amenity_toilets_men.p.32.png b/website/images/mapicons/amenity_toilets_men.p.32.png new file mode 100644 index 00000000..504e3ed9 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_men.p.32.png differ diff --git a/website/images/mapicons/amenity_toilets_women.glow.12.png b/website/images/mapicons/amenity_toilets_women.glow.12.png new file mode 100644 index 00000000..3562e2c8 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.glow.12.png differ diff --git a/website/images/mapicons/amenity_toilets_women.glow.16.png b/website/images/mapicons/amenity_toilets_women.glow.16.png new file mode 100644 index 00000000..64359c1f Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.glow.16.png differ diff --git a/website/images/mapicons/amenity_toilets_women.glow.20.png b/website/images/mapicons/amenity_toilets_women.glow.20.png new file mode 100644 index 00000000..c78535cb Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.glow.20.png differ diff --git a/website/images/mapicons/amenity_toilets_women.glow.24.png b/website/images/mapicons/amenity_toilets_women.glow.24.png new file mode 100644 index 00000000..05473048 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.glow.24.png differ diff --git a/website/images/mapicons/amenity_toilets_women.glow.32.png b/website/images/mapicons/amenity_toilets_women.glow.32.png new file mode 100644 index 00000000..b1e6f2dd Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.glow.32.png differ diff --git a/website/images/mapicons/amenity_toilets_women.n.12.png b/website/images/mapicons/amenity_toilets_women.n.12.png new file mode 100644 index 00000000..6ac98f01 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.n.12.png differ diff --git a/website/images/mapicons/amenity_toilets_women.n.16.png b/website/images/mapicons/amenity_toilets_women.n.16.png new file mode 100644 index 00000000..e973f5ed Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.n.16.png differ diff --git a/website/images/mapicons/amenity_toilets_women.n.20.png b/website/images/mapicons/amenity_toilets_women.n.20.png new file mode 100644 index 00000000..dcb3f5c4 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.n.20.png differ diff --git a/website/images/mapicons/amenity_toilets_women.n.24.png b/website/images/mapicons/amenity_toilets_women.n.24.png new file mode 100644 index 00000000..c3219a82 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.n.24.png differ diff --git a/website/images/mapicons/amenity_toilets_women.n.32.png b/website/images/mapicons/amenity_toilets_women.n.32.png new file mode 100644 index 00000000..9445dd27 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.n.32.png differ diff --git a/website/images/mapicons/amenity_toilets_women.p.12.png b/website/images/mapicons/amenity_toilets_women.p.12.png new file mode 100644 index 00000000..ef24cbe2 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.p.12.png differ diff --git a/website/images/mapicons/amenity_toilets_women.p.16.png b/website/images/mapicons/amenity_toilets_women.p.16.png new file mode 100644 index 00000000..afc18691 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.p.16.png differ diff --git a/website/images/mapicons/amenity_toilets_women.p.20.png b/website/images/mapicons/amenity_toilets_women.p.20.png new file mode 100644 index 00000000..6687047f Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.p.20.png differ diff --git a/website/images/mapicons/amenity_toilets_women.p.24.png b/website/images/mapicons/amenity_toilets_women.p.24.png new file mode 100644 index 00000000..434c34e0 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.p.24.png differ diff --git a/website/images/mapicons/amenity_toilets_women.p.32.png b/website/images/mapicons/amenity_toilets_women.p.32.png new file mode 100644 index 00000000..c76594d9 Binary files /dev/null and b/website/images/mapicons/amenity_toilets_women.p.32.png differ diff --git a/website/images/mapicons/amenity_waste_bin.glow.12.png b/website/images/mapicons/amenity_waste_bin.glow.12.png new file mode 100644 index 00000000..5c6b2d14 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.glow.12.png differ diff --git a/website/images/mapicons/amenity_waste_bin.glow.16.png b/website/images/mapicons/amenity_waste_bin.glow.16.png new file mode 100644 index 00000000..6b188252 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.glow.16.png differ diff --git a/website/images/mapicons/amenity_waste_bin.glow.20.png b/website/images/mapicons/amenity_waste_bin.glow.20.png new file mode 100644 index 00000000..ce72aed5 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.glow.20.png differ diff --git a/website/images/mapicons/amenity_waste_bin.glow.24.png b/website/images/mapicons/amenity_waste_bin.glow.24.png new file mode 100644 index 00000000..7ebf8edb Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.glow.24.png differ diff --git a/website/images/mapicons/amenity_waste_bin.glow.32.png b/website/images/mapicons/amenity_waste_bin.glow.32.png new file mode 100644 index 00000000..5438fa7b Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.glow.32.png differ diff --git a/website/images/mapicons/amenity_waste_bin.n.12.png b/website/images/mapicons/amenity_waste_bin.n.12.png new file mode 100644 index 00000000..2f02d4bc Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.n.12.png differ diff --git a/website/images/mapicons/amenity_waste_bin.n.16.png b/website/images/mapicons/amenity_waste_bin.n.16.png new file mode 100644 index 00000000..f0310103 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.n.16.png differ diff --git a/website/images/mapicons/amenity_waste_bin.n.20.png b/website/images/mapicons/amenity_waste_bin.n.20.png new file mode 100644 index 00000000..b8a13d68 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.n.20.png differ diff --git a/website/images/mapicons/amenity_waste_bin.n.24.png b/website/images/mapicons/amenity_waste_bin.n.24.png new file mode 100644 index 00000000..fb06a04b Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.n.24.png differ diff --git a/website/images/mapicons/amenity_waste_bin.n.32.png b/website/images/mapicons/amenity_waste_bin.n.32.png new file mode 100644 index 00000000..9fc5ce7c Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.n.32.png differ diff --git a/website/images/mapicons/amenity_waste_bin.p.12.png b/website/images/mapicons/amenity_waste_bin.p.12.png new file mode 100644 index 00000000..b2446dce Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.p.12.png differ diff --git a/website/images/mapicons/amenity_waste_bin.p.16.png b/website/images/mapicons/amenity_waste_bin.p.16.png new file mode 100644 index 00000000..1d835449 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.p.16.png differ diff --git a/website/images/mapicons/amenity_waste_bin.p.20.png b/website/images/mapicons/amenity_waste_bin.p.20.png new file mode 100644 index 00000000..70450995 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.p.20.png differ diff --git a/website/images/mapicons/amenity_waste_bin.p.24.png b/website/images/mapicons/amenity_waste_bin.p.24.png new file mode 100644 index 00000000..7034f174 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.p.24.png differ diff --git a/website/images/mapicons/amenity_waste_bin.p.32.png b/website/images/mapicons/amenity_waste_bin.p.32.png new file mode 100644 index 00000000..1b73b3b7 Binary files /dev/null and b/website/images/mapicons/amenity_waste_bin.p.32.png differ diff --git a/website/images/mapicons/barrier_bollard.glow.12.png b/website/images/mapicons/barrier_bollard.glow.12.png new file mode 100644 index 00000000..2107a50a Binary files /dev/null and b/website/images/mapicons/barrier_bollard.glow.12.png differ diff --git a/website/images/mapicons/barrier_bollard.glow.16.png b/website/images/mapicons/barrier_bollard.glow.16.png new file mode 100644 index 00000000..233325e6 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.glow.16.png differ diff --git a/website/images/mapicons/barrier_bollard.glow.20.png b/website/images/mapicons/barrier_bollard.glow.20.png new file mode 100644 index 00000000..a5549ded Binary files /dev/null and b/website/images/mapicons/barrier_bollard.glow.20.png differ diff --git a/website/images/mapicons/barrier_bollard.glow.24.png b/website/images/mapicons/barrier_bollard.glow.24.png new file mode 100644 index 00000000..86900e67 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.glow.24.png differ diff --git a/website/images/mapicons/barrier_bollard.glow.32.png b/website/images/mapicons/barrier_bollard.glow.32.png new file mode 100644 index 00000000..668f4eb2 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.glow.32.png differ diff --git a/website/images/mapicons/barrier_bollard.n.12.png b/website/images/mapicons/barrier_bollard.n.12.png new file mode 100644 index 00000000..b948e29e Binary files /dev/null and b/website/images/mapicons/barrier_bollard.n.12.png differ diff --git a/website/images/mapicons/barrier_bollard.n.16.png b/website/images/mapicons/barrier_bollard.n.16.png new file mode 100644 index 00000000..989feae5 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.n.16.png differ diff --git a/website/images/mapicons/barrier_bollard.n.20.png b/website/images/mapicons/barrier_bollard.n.20.png new file mode 100644 index 00000000..6844b868 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.n.20.png differ diff --git a/website/images/mapicons/barrier_bollard.n.24.png b/website/images/mapicons/barrier_bollard.n.24.png new file mode 100644 index 00000000..3000661f Binary files /dev/null and b/website/images/mapicons/barrier_bollard.n.24.png differ diff --git a/website/images/mapicons/barrier_bollard.n.32.png b/website/images/mapicons/barrier_bollard.n.32.png new file mode 100644 index 00000000..5075e567 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.n.32.png differ diff --git a/website/images/mapicons/barrier_bollard.p.12.png b/website/images/mapicons/barrier_bollard.p.12.png new file mode 100644 index 00000000..81147ea4 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.p.12.png differ diff --git a/website/images/mapicons/barrier_bollard.p.16.png b/website/images/mapicons/barrier_bollard.p.16.png new file mode 100644 index 00000000..5364d160 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.p.16.png differ diff --git a/website/images/mapicons/barrier_bollard.p.20.png b/website/images/mapicons/barrier_bollard.p.20.png new file mode 100644 index 00000000..ebd21834 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.p.20.png differ diff --git a/website/images/mapicons/barrier_bollard.p.24.png b/website/images/mapicons/barrier_bollard.p.24.png new file mode 100644 index 00000000..f210c940 Binary files /dev/null and b/website/images/mapicons/barrier_bollard.p.24.png differ diff --git a/website/images/mapicons/barrier_bollard.p.32.png b/website/images/mapicons/barrier_bollard.p.32.png new file mode 100644 index 00000000..6c27afba Binary files /dev/null and b/website/images/mapicons/barrier_bollard.p.32.png differ diff --git a/website/images/mapicons/barrier_enterance.glow.12.png b/website/images/mapicons/barrier_enterance.glow.12.png new file mode 100644 index 00000000..9121d5a6 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.glow.12.png differ diff --git a/website/images/mapicons/barrier_enterance.glow.16.png b/website/images/mapicons/barrier_enterance.glow.16.png new file mode 100644 index 00000000..6390f84b Binary files /dev/null and b/website/images/mapicons/barrier_enterance.glow.16.png differ diff --git a/website/images/mapicons/barrier_enterance.glow.20.png b/website/images/mapicons/barrier_enterance.glow.20.png new file mode 100644 index 00000000..cd8c08d6 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.glow.20.png differ diff --git a/website/images/mapicons/barrier_enterance.glow.24.png b/website/images/mapicons/barrier_enterance.glow.24.png new file mode 100644 index 00000000..383cfda3 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.glow.24.png differ diff --git a/website/images/mapicons/barrier_enterance.glow.32.png b/website/images/mapicons/barrier_enterance.glow.32.png new file mode 100644 index 00000000..76f36feb Binary files /dev/null and b/website/images/mapicons/barrier_enterance.glow.32.png differ diff --git a/website/images/mapicons/barrier_enterance.n.12.png b/website/images/mapicons/barrier_enterance.n.12.png new file mode 100644 index 00000000..c05eaa4d Binary files /dev/null and b/website/images/mapicons/barrier_enterance.n.12.png differ diff --git a/website/images/mapicons/barrier_enterance.n.16.png b/website/images/mapicons/barrier_enterance.n.16.png new file mode 100644 index 00000000..8b205878 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.n.16.png differ diff --git a/website/images/mapicons/barrier_enterance.n.20.png b/website/images/mapicons/barrier_enterance.n.20.png new file mode 100644 index 00000000..74869817 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.n.20.png differ diff --git a/website/images/mapicons/barrier_enterance.n.24.png b/website/images/mapicons/barrier_enterance.n.24.png new file mode 100644 index 00000000..b9a648b9 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.n.24.png differ diff --git a/website/images/mapicons/barrier_enterance.n.32.png b/website/images/mapicons/barrier_enterance.n.32.png new file mode 100644 index 00000000..f75b2c11 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.n.32.png differ diff --git a/website/images/mapicons/barrier_enterance.p.12.png b/website/images/mapicons/barrier_enterance.p.12.png new file mode 100644 index 00000000..cf142090 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.p.12.png differ diff --git a/website/images/mapicons/barrier_enterance.p.16.png b/website/images/mapicons/barrier_enterance.p.16.png new file mode 100644 index 00000000..553cfd67 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.p.16.png differ diff --git a/website/images/mapicons/barrier_enterance.p.20.png b/website/images/mapicons/barrier_enterance.p.20.png new file mode 100644 index 00000000..cc0fd220 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.p.20.png differ diff --git a/website/images/mapicons/barrier_enterance.p.24.png b/website/images/mapicons/barrier_enterance.p.24.png new file mode 100644 index 00000000..220d61c8 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.p.24.png differ diff --git a/website/images/mapicons/barrier_enterance.p.32.png b/website/images/mapicons/barrier_enterance.p.32.png new file mode 100644 index 00000000..0c727cd7 Binary files /dev/null and b/website/images/mapicons/barrier_enterance.p.32.png differ diff --git a/website/images/mapicons/barrier_gate.glow.12.png b/website/images/mapicons/barrier_gate.glow.12.png new file mode 100644 index 00000000..db9a4ecb Binary files /dev/null and b/website/images/mapicons/barrier_gate.glow.12.png differ diff --git a/website/images/mapicons/barrier_gate.glow.16.png b/website/images/mapicons/barrier_gate.glow.16.png new file mode 100644 index 00000000..63cebad0 Binary files /dev/null and b/website/images/mapicons/barrier_gate.glow.16.png differ diff --git a/website/images/mapicons/barrier_gate.glow.20.png b/website/images/mapicons/barrier_gate.glow.20.png new file mode 100644 index 00000000..bccf7ceb Binary files /dev/null and b/website/images/mapicons/barrier_gate.glow.20.png differ diff --git a/website/images/mapicons/barrier_gate.glow.24.png b/website/images/mapicons/barrier_gate.glow.24.png new file mode 100644 index 00000000..56bea30b Binary files /dev/null and b/website/images/mapicons/barrier_gate.glow.24.png differ diff --git a/website/images/mapicons/barrier_gate.glow.32.png b/website/images/mapicons/barrier_gate.glow.32.png new file mode 100644 index 00000000..ab603bb7 Binary files /dev/null and b/website/images/mapicons/barrier_gate.glow.32.png differ diff --git a/website/images/mapicons/barrier_gate.n.12.png b/website/images/mapicons/barrier_gate.n.12.png new file mode 100644 index 00000000..79fc8411 Binary files /dev/null and b/website/images/mapicons/barrier_gate.n.12.png differ diff --git a/website/images/mapicons/barrier_gate.n.16.png b/website/images/mapicons/barrier_gate.n.16.png new file mode 100644 index 00000000..f8c2f58a Binary files /dev/null and b/website/images/mapicons/barrier_gate.n.16.png differ diff --git a/website/images/mapicons/barrier_gate.n.20.png b/website/images/mapicons/barrier_gate.n.20.png new file mode 100644 index 00000000..6f5a6531 Binary files /dev/null and b/website/images/mapicons/barrier_gate.n.20.png differ diff --git a/website/images/mapicons/barrier_gate.n.24.png b/website/images/mapicons/barrier_gate.n.24.png new file mode 100644 index 00000000..0c18c5ed Binary files /dev/null and b/website/images/mapicons/barrier_gate.n.24.png differ diff --git a/website/images/mapicons/barrier_gate.n.32.png b/website/images/mapicons/barrier_gate.n.32.png new file mode 100644 index 00000000..6992e65b Binary files /dev/null and b/website/images/mapicons/barrier_gate.n.32.png differ diff --git a/website/images/mapicons/barrier_gate.p.12.png b/website/images/mapicons/barrier_gate.p.12.png new file mode 100644 index 00000000..bc4d8446 Binary files /dev/null and b/website/images/mapicons/barrier_gate.p.12.png differ diff --git a/website/images/mapicons/barrier_gate.p.16.png b/website/images/mapicons/barrier_gate.p.16.png new file mode 100644 index 00000000..03f81aab Binary files /dev/null and b/website/images/mapicons/barrier_gate.p.16.png differ diff --git a/website/images/mapicons/barrier_gate.p.20.png b/website/images/mapicons/barrier_gate.p.20.png new file mode 100644 index 00000000..2e0365ca Binary files /dev/null and b/website/images/mapicons/barrier_gate.p.20.png differ diff --git a/website/images/mapicons/barrier_gate.p.24.png b/website/images/mapicons/barrier_gate.p.24.png new file mode 100644 index 00000000..67b9d0d0 Binary files /dev/null and b/website/images/mapicons/barrier_gate.p.24.png differ diff --git a/website/images/mapicons/barrier_gate.p.32.png b/website/images/mapicons/barrier_gate.p.32.png new file mode 100644 index 00000000..5c1c0d94 Binary files /dev/null and b/website/images/mapicons/barrier_gate.p.32.png differ diff --git a/website/images/mapicons/barrier_lift_gate.glow.12.png b/website/images/mapicons/barrier_lift_gate.glow.12.png new file mode 100644 index 00000000..a39b65b9 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.glow.12.png differ diff --git a/website/images/mapicons/barrier_lift_gate.glow.16.png b/website/images/mapicons/barrier_lift_gate.glow.16.png new file mode 100644 index 00000000..808670cf Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.glow.16.png differ diff --git a/website/images/mapicons/barrier_lift_gate.glow.20.png b/website/images/mapicons/barrier_lift_gate.glow.20.png new file mode 100644 index 00000000..7db3ec51 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.glow.20.png differ diff --git a/website/images/mapicons/barrier_lift_gate.glow.24.png b/website/images/mapicons/barrier_lift_gate.glow.24.png new file mode 100644 index 00000000..3d0b3f5b Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.glow.24.png differ diff --git a/website/images/mapicons/barrier_lift_gate.glow.32.png b/website/images/mapicons/barrier_lift_gate.glow.32.png new file mode 100644 index 00000000..07b11e74 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.glow.32.png differ diff --git a/website/images/mapicons/barrier_lift_gate.n.12.png b/website/images/mapicons/barrier_lift_gate.n.12.png new file mode 100644 index 00000000..3c8f552c Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.n.12.png differ diff --git a/website/images/mapicons/barrier_lift_gate.n.16.png b/website/images/mapicons/barrier_lift_gate.n.16.png new file mode 100644 index 00000000..80ef74bd Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.n.16.png differ diff --git a/website/images/mapicons/barrier_lift_gate.n.20.png b/website/images/mapicons/barrier_lift_gate.n.20.png new file mode 100644 index 00000000..7b78b667 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.n.20.png differ diff --git a/website/images/mapicons/barrier_lift_gate.n.24.png b/website/images/mapicons/barrier_lift_gate.n.24.png new file mode 100644 index 00000000..a41a3679 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.n.24.png differ diff --git a/website/images/mapicons/barrier_lift_gate.n.32.png b/website/images/mapicons/barrier_lift_gate.n.32.png new file mode 100644 index 00000000..8d4d8caa Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.n.32.png differ diff --git a/website/images/mapicons/barrier_lift_gate.p.12.png b/website/images/mapicons/barrier_lift_gate.p.12.png new file mode 100644 index 00000000..01a382b5 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.p.12.png differ diff --git a/website/images/mapicons/barrier_lift_gate.p.16.png b/website/images/mapicons/barrier_lift_gate.p.16.png new file mode 100644 index 00000000..1b12a081 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.p.16.png differ diff --git a/website/images/mapicons/barrier_lift_gate.p.20.png b/website/images/mapicons/barrier_lift_gate.p.20.png new file mode 100644 index 00000000..626f7475 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.p.20.png differ diff --git a/website/images/mapicons/barrier_lift_gate.p.24.png b/website/images/mapicons/barrier_lift_gate.p.24.png new file mode 100644 index 00000000..22ce18ff Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.p.24.png differ diff --git a/website/images/mapicons/barrier_lift_gate.p.32.png b/website/images/mapicons/barrier_lift_gate.p.32.png new file mode 100644 index 00000000..c7ad3845 Binary files /dev/null and b/website/images/mapicons/barrier_lift_gate.p.32.png differ diff --git a/website/images/mapicons/barrier_stile.glow.12.png b/website/images/mapicons/barrier_stile.glow.12.png new file mode 100644 index 00000000..482f0077 Binary files /dev/null and b/website/images/mapicons/barrier_stile.glow.12.png differ diff --git a/website/images/mapicons/barrier_stile.glow.16.png b/website/images/mapicons/barrier_stile.glow.16.png new file mode 100644 index 00000000..aa1f4342 Binary files /dev/null and b/website/images/mapicons/barrier_stile.glow.16.png differ diff --git a/website/images/mapicons/barrier_stile.glow.20.png b/website/images/mapicons/barrier_stile.glow.20.png new file mode 100644 index 00000000..5e13893f Binary files /dev/null and b/website/images/mapicons/barrier_stile.glow.20.png differ diff --git a/website/images/mapicons/barrier_stile.glow.24.png b/website/images/mapicons/barrier_stile.glow.24.png new file mode 100644 index 00000000..2de42b61 Binary files /dev/null and b/website/images/mapicons/barrier_stile.glow.24.png differ diff --git a/website/images/mapicons/barrier_stile.glow.32.png b/website/images/mapicons/barrier_stile.glow.32.png new file mode 100644 index 00000000..03f16a9f Binary files /dev/null and b/website/images/mapicons/barrier_stile.glow.32.png differ diff --git a/website/images/mapicons/barrier_stile.n.12.png b/website/images/mapicons/barrier_stile.n.12.png new file mode 100644 index 00000000..709d193d Binary files /dev/null and b/website/images/mapicons/barrier_stile.n.12.png differ diff --git a/website/images/mapicons/barrier_stile.n.16.png b/website/images/mapicons/barrier_stile.n.16.png new file mode 100644 index 00000000..3b18ae70 Binary files /dev/null and b/website/images/mapicons/barrier_stile.n.16.png differ diff --git a/website/images/mapicons/barrier_stile.n.20.png b/website/images/mapicons/barrier_stile.n.20.png new file mode 100644 index 00000000..bf73f865 Binary files /dev/null and b/website/images/mapicons/barrier_stile.n.20.png differ diff --git a/website/images/mapicons/barrier_stile.n.24.png b/website/images/mapicons/barrier_stile.n.24.png new file mode 100644 index 00000000..9e04ae23 Binary files /dev/null and b/website/images/mapicons/barrier_stile.n.24.png differ diff --git a/website/images/mapicons/barrier_stile.n.32.png b/website/images/mapicons/barrier_stile.n.32.png new file mode 100644 index 00000000..df3dd407 Binary files /dev/null and b/website/images/mapicons/barrier_stile.n.32.png differ diff --git a/website/images/mapicons/barrier_stile.p.12.png b/website/images/mapicons/barrier_stile.p.12.png new file mode 100644 index 00000000..7297e7d2 Binary files /dev/null and b/website/images/mapicons/barrier_stile.p.12.png differ diff --git a/website/images/mapicons/barrier_stile.p.16.png b/website/images/mapicons/barrier_stile.p.16.png new file mode 100644 index 00000000..88ac8c8e Binary files /dev/null and b/website/images/mapicons/barrier_stile.p.16.png differ diff --git a/website/images/mapicons/barrier_stile.p.20.png b/website/images/mapicons/barrier_stile.p.20.png new file mode 100644 index 00000000..090e9640 Binary files /dev/null and b/website/images/mapicons/barrier_stile.p.20.png differ diff --git a/website/images/mapicons/barrier_stile.p.24.png b/website/images/mapicons/barrier_stile.p.24.png new file mode 100644 index 00000000..4aea319a Binary files /dev/null and b/website/images/mapicons/barrier_stile.p.24.png differ diff --git a/website/images/mapicons/barrier_stile.p.32.png b/website/images/mapicons/barrier_stile.p.32.png new file mode 100644 index 00000000..335d040a Binary files /dev/null and b/website/images/mapicons/barrier_stile.p.32.png differ diff --git a/website/images/mapicons/barrier_toll_booth.glow.12.png b/website/images/mapicons/barrier_toll_booth.glow.12.png new file mode 100644 index 00000000..a3b06584 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.glow.12.png differ diff --git a/website/images/mapicons/barrier_toll_booth.glow.16.png b/website/images/mapicons/barrier_toll_booth.glow.16.png new file mode 100644 index 00000000..c97acef4 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.glow.16.png differ diff --git a/website/images/mapicons/barrier_toll_booth.glow.20.png b/website/images/mapicons/barrier_toll_booth.glow.20.png new file mode 100644 index 00000000..9741b6fc Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.glow.20.png differ diff --git a/website/images/mapicons/barrier_toll_booth.glow.24.png b/website/images/mapicons/barrier_toll_booth.glow.24.png new file mode 100644 index 00000000..3a0d8ccc Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.glow.24.png differ diff --git a/website/images/mapicons/barrier_toll_booth.glow.32.png b/website/images/mapicons/barrier_toll_booth.glow.32.png new file mode 100644 index 00000000..110f23d8 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.glow.32.png differ diff --git a/website/images/mapicons/barrier_toll_booth.n.12.png b/website/images/mapicons/barrier_toll_booth.n.12.png new file mode 100644 index 00000000..89e69e53 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.n.12.png differ diff --git a/website/images/mapicons/barrier_toll_booth.n.16.png b/website/images/mapicons/barrier_toll_booth.n.16.png new file mode 100644 index 00000000..cc78d874 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.n.16.png differ diff --git a/website/images/mapicons/barrier_toll_booth.n.20.png b/website/images/mapicons/barrier_toll_booth.n.20.png new file mode 100644 index 00000000..1ebfc381 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.n.20.png differ diff --git a/website/images/mapicons/barrier_toll_booth.n.24.png b/website/images/mapicons/barrier_toll_booth.n.24.png new file mode 100644 index 00000000..302492ad Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.n.24.png differ diff --git a/website/images/mapicons/barrier_toll_booth.n.32.png b/website/images/mapicons/barrier_toll_booth.n.32.png new file mode 100644 index 00000000..a9bd486d Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.n.32.png differ diff --git a/website/images/mapicons/barrier_toll_booth.p.12.png b/website/images/mapicons/barrier_toll_booth.p.12.png new file mode 100644 index 00000000..aca9386c Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.p.12.png differ diff --git a/website/images/mapicons/barrier_toll_booth.p.16.png b/website/images/mapicons/barrier_toll_booth.p.16.png new file mode 100644 index 00000000..68eec32a Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.p.16.png differ diff --git a/website/images/mapicons/barrier_toll_booth.p.20.png b/website/images/mapicons/barrier_toll_booth.p.20.png new file mode 100644 index 00000000..dba5f861 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.p.20.png differ diff --git a/website/images/mapicons/barrier_toll_booth.p.24.png b/website/images/mapicons/barrier_toll_booth.p.24.png new file mode 100644 index 00000000..518f20dc Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.p.24.png differ diff --git a/website/images/mapicons/barrier_toll_booth.p.32.png b/website/images/mapicons/barrier_toll_booth.p.32.png new file mode 100644 index 00000000..0a4816e1 Binary files /dev/null and b/website/images/mapicons/barrier_toll_booth.p.32.png differ diff --git a/website/images/mapicons/education_nursery.glow.12.png b/website/images/mapicons/education_nursery.glow.12.png new file mode 100644 index 00000000..66e9d75e Binary files /dev/null and b/website/images/mapicons/education_nursery.glow.12.png differ diff --git a/website/images/mapicons/education_nursery.glow.16.png b/website/images/mapicons/education_nursery.glow.16.png new file mode 100644 index 00000000..21257cd9 Binary files /dev/null and b/website/images/mapicons/education_nursery.glow.16.png differ diff --git a/website/images/mapicons/education_nursery.glow.20.png b/website/images/mapicons/education_nursery.glow.20.png new file mode 100644 index 00000000..86647114 Binary files /dev/null and b/website/images/mapicons/education_nursery.glow.20.png differ diff --git a/website/images/mapicons/education_nursery.glow.24.png b/website/images/mapicons/education_nursery.glow.24.png new file mode 100644 index 00000000..3f3e53f7 Binary files /dev/null and b/website/images/mapicons/education_nursery.glow.24.png differ diff --git a/website/images/mapicons/education_nursery.glow.32.png b/website/images/mapicons/education_nursery.glow.32.png new file mode 100644 index 00000000..59cce40f Binary files /dev/null and b/website/images/mapicons/education_nursery.glow.32.png differ diff --git a/website/images/mapicons/education_nursery.n.12.png b/website/images/mapicons/education_nursery.n.12.png new file mode 100644 index 00000000..f767822d Binary files /dev/null and b/website/images/mapicons/education_nursery.n.12.png differ diff --git a/website/images/mapicons/education_nursery.n.16.png b/website/images/mapicons/education_nursery.n.16.png new file mode 100644 index 00000000..89e9d4b3 Binary files /dev/null and b/website/images/mapicons/education_nursery.n.16.png differ diff --git a/website/images/mapicons/education_nursery.n.20.png b/website/images/mapicons/education_nursery.n.20.png new file mode 100644 index 00000000..0d197d32 Binary files /dev/null and b/website/images/mapicons/education_nursery.n.20.png differ diff --git a/website/images/mapicons/education_nursery.n.24.png b/website/images/mapicons/education_nursery.n.24.png new file mode 100644 index 00000000..e7614f98 Binary files /dev/null and b/website/images/mapicons/education_nursery.n.24.png differ diff --git a/website/images/mapicons/education_nursery.n.32.png b/website/images/mapicons/education_nursery.n.32.png new file mode 100644 index 00000000..9e96c3d4 Binary files /dev/null and b/website/images/mapicons/education_nursery.n.32.png differ diff --git a/website/images/mapicons/education_nursery.p.12.png b/website/images/mapicons/education_nursery.p.12.png new file mode 100644 index 00000000..00845d6b Binary files /dev/null and b/website/images/mapicons/education_nursery.p.12.png differ diff --git a/website/images/mapicons/education_nursery.p.16.png b/website/images/mapicons/education_nursery.p.16.png new file mode 100644 index 00000000..63651ef8 Binary files /dev/null and b/website/images/mapicons/education_nursery.p.16.png differ diff --git a/website/images/mapicons/education_nursery.p.20.png b/website/images/mapicons/education_nursery.p.20.png new file mode 100644 index 00000000..980e74c1 Binary files /dev/null and b/website/images/mapicons/education_nursery.p.20.png differ diff --git a/website/images/mapicons/education_nursery.p.24.png b/website/images/mapicons/education_nursery.p.24.png new file mode 100644 index 00000000..885056f7 Binary files /dev/null and b/website/images/mapicons/education_nursery.p.24.png differ diff --git a/website/images/mapicons/education_nursery.p.32.png b/website/images/mapicons/education_nursery.p.32.png new file mode 100644 index 00000000..c58703a1 Binary files /dev/null and b/website/images/mapicons/education_nursery.p.32.png differ diff --git a/website/images/mapicons/education_school.glow.12.png b/website/images/mapicons/education_school.glow.12.png new file mode 100644 index 00000000..c89be1c6 Binary files /dev/null and b/website/images/mapicons/education_school.glow.12.png differ diff --git a/website/images/mapicons/education_school.glow.16.png b/website/images/mapicons/education_school.glow.16.png new file mode 100644 index 00000000..99d97045 Binary files /dev/null and b/website/images/mapicons/education_school.glow.16.png differ diff --git a/website/images/mapicons/education_school.glow.20.png b/website/images/mapicons/education_school.glow.20.png new file mode 100644 index 00000000..0035b986 Binary files /dev/null and b/website/images/mapicons/education_school.glow.20.png differ diff --git a/website/images/mapicons/education_school.glow.24.png b/website/images/mapicons/education_school.glow.24.png new file mode 100644 index 00000000..8234920e Binary files /dev/null and b/website/images/mapicons/education_school.glow.24.png differ diff --git a/website/images/mapicons/education_school.glow.32.png b/website/images/mapicons/education_school.glow.32.png new file mode 100644 index 00000000..3c86ac35 Binary files /dev/null and b/website/images/mapicons/education_school.glow.32.png differ diff --git a/website/images/mapicons/education_school.n.12.png b/website/images/mapicons/education_school.n.12.png new file mode 100644 index 00000000..8df73b1a Binary files /dev/null and b/website/images/mapicons/education_school.n.12.png differ diff --git a/website/images/mapicons/education_school.n.16.png b/website/images/mapicons/education_school.n.16.png new file mode 100644 index 00000000..a93e2d3c Binary files /dev/null and b/website/images/mapicons/education_school.n.16.png differ diff --git a/website/images/mapicons/education_school.n.20.png b/website/images/mapicons/education_school.n.20.png new file mode 100644 index 00000000..da88c004 Binary files /dev/null and b/website/images/mapicons/education_school.n.20.png differ diff --git a/website/images/mapicons/education_school.n.24.png b/website/images/mapicons/education_school.n.24.png new file mode 100644 index 00000000..40abf2b6 Binary files /dev/null and b/website/images/mapicons/education_school.n.24.png differ diff --git a/website/images/mapicons/education_school.n.32.png b/website/images/mapicons/education_school.n.32.png new file mode 100644 index 00000000..79d7383c Binary files /dev/null and b/website/images/mapicons/education_school.n.32.png differ diff --git a/website/images/mapicons/education_school.p.12.png b/website/images/mapicons/education_school.p.12.png new file mode 100644 index 00000000..cdef7dbb Binary files /dev/null and b/website/images/mapicons/education_school.p.12.png differ diff --git a/website/images/mapicons/education_school.p.16.png b/website/images/mapicons/education_school.p.16.png new file mode 100644 index 00000000..95744bf6 Binary files /dev/null and b/website/images/mapicons/education_school.p.16.png differ diff --git a/website/images/mapicons/education_school.p.20.png b/website/images/mapicons/education_school.p.20.png new file mode 100644 index 00000000..bf72f5b2 Binary files /dev/null and b/website/images/mapicons/education_school.p.20.png differ diff --git a/website/images/mapicons/education_school.p.24.png b/website/images/mapicons/education_school.p.24.png new file mode 100644 index 00000000..f0058f8d Binary files /dev/null and b/website/images/mapicons/education_school.p.24.png differ diff --git a/website/images/mapicons/education_school.p.32.png b/website/images/mapicons/education_school.p.32.png new file mode 100644 index 00000000..2c6e35fb Binary files /dev/null and b/website/images/mapicons/education_school.p.32.png differ diff --git a/website/images/mapicons/education_university.glow.12.png b/website/images/mapicons/education_university.glow.12.png new file mode 100644 index 00000000..22fd23f9 Binary files /dev/null and b/website/images/mapicons/education_university.glow.12.png differ diff --git a/website/images/mapicons/education_university.glow.16.png b/website/images/mapicons/education_university.glow.16.png new file mode 100644 index 00000000..e0af23b6 Binary files /dev/null and b/website/images/mapicons/education_university.glow.16.png differ diff --git a/website/images/mapicons/education_university.glow.20.png b/website/images/mapicons/education_university.glow.20.png new file mode 100644 index 00000000..f0cbcb69 Binary files /dev/null and b/website/images/mapicons/education_university.glow.20.png differ diff --git a/website/images/mapicons/education_university.glow.24.png b/website/images/mapicons/education_university.glow.24.png new file mode 100644 index 00000000..547f3e99 Binary files /dev/null and b/website/images/mapicons/education_university.glow.24.png differ diff --git a/website/images/mapicons/education_university.glow.32.png b/website/images/mapicons/education_university.glow.32.png new file mode 100644 index 00000000..b22fa729 Binary files /dev/null and b/website/images/mapicons/education_university.glow.32.png differ diff --git a/website/images/mapicons/education_university.n.12.png b/website/images/mapicons/education_university.n.12.png new file mode 100644 index 00000000..2d7ab9c4 Binary files /dev/null and b/website/images/mapicons/education_university.n.12.png differ diff --git a/website/images/mapicons/education_university.n.16.png b/website/images/mapicons/education_university.n.16.png new file mode 100644 index 00000000..da7193dc Binary files /dev/null and b/website/images/mapicons/education_university.n.16.png differ diff --git a/website/images/mapicons/education_university.n.20.png b/website/images/mapicons/education_university.n.20.png new file mode 100644 index 00000000..384bb818 Binary files /dev/null and b/website/images/mapicons/education_university.n.20.png differ diff --git a/website/images/mapicons/education_university.n.24.png b/website/images/mapicons/education_university.n.24.png new file mode 100644 index 00000000..62936341 Binary files /dev/null and b/website/images/mapicons/education_university.n.24.png differ diff --git a/website/images/mapicons/education_university.n.32.png b/website/images/mapicons/education_university.n.32.png new file mode 100644 index 00000000..c16eec9b Binary files /dev/null and b/website/images/mapicons/education_university.n.32.png differ diff --git a/website/images/mapicons/education_university.p.12.png b/website/images/mapicons/education_university.p.12.png new file mode 100644 index 00000000..1a20f84f Binary files /dev/null and b/website/images/mapicons/education_university.p.12.png differ diff --git a/website/images/mapicons/education_university.p.16.png b/website/images/mapicons/education_university.p.16.png new file mode 100644 index 00000000..57c92c39 Binary files /dev/null and b/website/images/mapicons/education_university.p.16.png differ diff --git a/website/images/mapicons/education_university.p.20.png b/website/images/mapicons/education_university.p.20.png new file mode 100644 index 00000000..532c3a7d Binary files /dev/null and b/website/images/mapicons/education_university.p.20.png differ diff --git a/website/images/mapicons/education_university.p.24.png b/website/images/mapicons/education_university.p.24.png new file mode 100644 index 00000000..f7cdb1aa Binary files /dev/null and b/website/images/mapicons/education_university.p.24.png differ diff --git a/website/images/mapicons/education_university.p.32.png b/website/images/mapicons/education_university.p.32.png new file mode 100644 index 00000000..e793c160 Binary files /dev/null and b/website/images/mapicons/education_university.p.32.png differ diff --git a/website/images/mapicons/food_bar.glow.12.png b/website/images/mapicons/food_bar.glow.12.png new file mode 100644 index 00000000..92397692 Binary files /dev/null and b/website/images/mapicons/food_bar.glow.12.png differ diff --git a/website/images/mapicons/food_bar.glow.16.png b/website/images/mapicons/food_bar.glow.16.png new file mode 100644 index 00000000..dae2d448 Binary files /dev/null and b/website/images/mapicons/food_bar.glow.16.png differ diff --git a/website/images/mapicons/food_bar.glow.20.png b/website/images/mapicons/food_bar.glow.20.png new file mode 100644 index 00000000..ab4eb680 Binary files /dev/null and b/website/images/mapicons/food_bar.glow.20.png differ diff --git a/website/images/mapicons/food_bar.glow.24.png b/website/images/mapicons/food_bar.glow.24.png new file mode 100644 index 00000000..99392e4d Binary files /dev/null and b/website/images/mapicons/food_bar.glow.24.png differ diff --git a/website/images/mapicons/food_bar.glow.32.png b/website/images/mapicons/food_bar.glow.32.png new file mode 100644 index 00000000..d1fc349b Binary files /dev/null and b/website/images/mapicons/food_bar.glow.32.png differ diff --git a/website/images/mapicons/food_bar.n.12.png b/website/images/mapicons/food_bar.n.12.png new file mode 100644 index 00000000..a7bb2201 Binary files /dev/null and b/website/images/mapicons/food_bar.n.12.png differ diff --git a/website/images/mapicons/food_bar.n.16.png b/website/images/mapicons/food_bar.n.16.png new file mode 100644 index 00000000..fadd3e26 Binary files /dev/null and b/website/images/mapicons/food_bar.n.16.png differ diff --git a/website/images/mapicons/food_bar.n.20.png b/website/images/mapicons/food_bar.n.20.png new file mode 100644 index 00000000..65b26b27 Binary files /dev/null and b/website/images/mapicons/food_bar.n.20.png differ diff --git a/website/images/mapicons/food_bar.n.24.png b/website/images/mapicons/food_bar.n.24.png new file mode 100644 index 00000000..a63a09d4 Binary files /dev/null and b/website/images/mapicons/food_bar.n.24.png differ diff --git a/website/images/mapicons/food_bar.n.32.png b/website/images/mapicons/food_bar.n.32.png new file mode 100644 index 00000000..058e9dac Binary files /dev/null and b/website/images/mapicons/food_bar.n.32.png differ diff --git a/website/images/mapicons/food_bar.p.12.png b/website/images/mapicons/food_bar.p.12.png new file mode 100644 index 00000000..76ed3364 Binary files /dev/null and b/website/images/mapicons/food_bar.p.12.png differ diff --git a/website/images/mapicons/food_bar.p.16.png b/website/images/mapicons/food_bar.p.16.png new file mode 100644 index 00000000..61f1103d Binary files /dev/null and b/website/images/mapicons/food_bar.p.16.png differ diff --git a/website/images/mapicons/food_bar.p.20.png b/website/images/mapicons/food_bar.p.20.png new file mode 100644 index 00000000..2bd06ecb Binary files /dev/null and b/website/images/mapicons/food_bar.p.20.png differ diff --git a/website/images/mapicons/food_bar.p.24.png b/website/images/mapicons/food_bar.p.24.png new file mode 100644 index 00000000..0c81caf7 Binary files /dev/null and b/website/images/mapicons/food_bar.p.24.png differ diff --git a/website/images/mapicons/food_bar.p.32.png b/website/images/mapicons/food_bar.p.32.png new file mode 100644 index 00000000..45ad3870 Binary files /dev/null and b/website/images/mapicons/food_bar.p.32.png differ diff --git a/website/images/mapicons/food_cafe.glow.12.png b/website/images/mapicons/food_cafe.glow.12.png new file mode 100644 index 00000000..05d24368 Binary files /dev/null and b/website/images/mapicons/food_cafe.glow.12.png differ diff --git a/website/images/mapicons/food_cafe.glow.16.png b/website/images/mapicons/food_cafe.glow.16.png new file mode 100644 index 00000000..b8184686 Binary files /dev/null and b/website/images/mapicons/food_cafe.glow.16.png differ diff --git a/website/images/mapicons/food_cafe.glow.20.png b/website/images/mapicons/food_cafe.glow.20.png new file mode 100644 index 00000000..12e72c80 Binary files /dev/null and b/website/images/mapicons/food_cafe.glow.20.png differ diff --git a/website/images/mapicons/food_cafe.glow.24.png b/website/images/mapicons/food_cafe.glow.24.png new file mode 100644 index 00000000..dce0d0c7 Binary files /dev/null and b/website/images/mapicons/food_cafe.glow.24.png differ diff --git a/website/images/mapicons/food_cafe.glow.32.png b/website/images/mapicons/food_cafe.glow.32.png new file mode 100644 index 00000000..7b46190c Binary files /dev/null and b/website/images/mapicons/food_cafe.glow.32.png differ diff --git a/website/images/mapicons/food_cafe.n.12.png b/website/images/mapicons/food_cafe.n.12.png new file mode 100644 index 00000000..9a85f54c Binary files /dev/null and b/website/images/mapicons/food_cafe.n.12.png differ diff --git a/website/images/mapicons/food_cafe.n.16.png b/website/images/mapicons/food_cafe.n.16.png new file mode 100644 index 00000000..d5cc5a86 Binary files /dev/null and b/website/images/mapicons/food_cafe.n.16.png differ diff --git a/website/images/mapicons/food_cafe.n.20.png b/website/images/mapicons/food_cafe.n.20.png new file mode 100644 index 00000000..e37aedad Binary files /dev/null and b/website/images/mapicons/food_cafe.n.20.png differ diff --git a/website/images/mapicons/food_cafe.n.24.png b/website/images/mapicons/food_cafe.n.24.png new file mode 100644 index 00000000..9e9b3173 Binary files /dev/null and b/website/images/mapicons/food_cafe.n.24.png differ diff --git a/website/images/mapicons/food_cafe.n.32.png b/website/images/mapicons/food_cafe.n.32.png new file mode 100644 index 00000000..2e485a67 Binary files /dev/null and b/website/images/mapicons/food_cafe.n.32.png differ diff --git a/website/images/mapicons/food_cafe.p.12.png b/website/images/mapicons/food_cafe.p.12.png new file mode 100644 index 00000000..d8df1f7d Binary files /dev/null and b/website/images/mapicons/food_cafe.p.12.png differ diff --git a/website/images/mapicons/food_cafe.p.16.png b/website/images/mapicons/food_cafe.p.16.png new file mode 100644 index 00000000..dd3333fa Binary files /dev/null and b/website/images/mapicons/food_cafe.p.16.png differ diff --git a/website/images/mapicons/food_cafe.p.20.png b/website/images/mapicons/food_cafe.p.20.png new file mode 100644 index 00000000..a5ddbe2a Binary files /dev/null and b/website/images/mapicons/food_cafe.p.20.png differ diff --git a/website/images/mapicons/food_cafe.p.24.png b/website/images/mapicons/food_cafe.p.24.png new file mode 100644 index 00000000..3d1e8585 Binary files /dev/null and b/website/images/mapicons/food_cafe.p.24.png differ diff --git a/website/images/mapicons/food_cafe.p.32.png b/website/images/mapicons/food_cafe.p.32.png new file mode 100644 index 00000000..0da5a351 Binary files /dev/null and b/website/images/mapicons/food_cafe.p.32.png differ diff --git a/website/images/mapicons/food_drinkingtap.glow.12.png b/website/images/mapicons/food_drinkingtap.glow.12.png new file mode 100644 index 00000000..0949e6f4 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.glow.12.png differ diff --git a/website/images/mapicons/food_drinkingtap.glow.16.png b/website/images/mapicons/food_drinkingtap.glow.16.png new file mode 100644 index 00000000..4f963ac6 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.glow.16.png differ diff --git a/website/images/mapicons/food_drinkingtap.glow.20.png b/website/images/mapicons/food_drinkingtap.glow.20.png new file mode 100644 index 00000000..51b5a00f Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.glow.20.png differ diff --git a/website/images/mapicons/food_drinkingtap.glow.24.png b/website/images/mapicons/food_drinkingtap.glow.24.png new file mode 100644 index 00000000..49cfa8ce Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.glow.24.png differ diff --git a/website/images/mapicons/food_drinkingtap.glow.32.png b/website/images/mapicons/food_drinkingtap.glow.32.png new file mode 100644 index 00000000..bdc4cdd0 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.glow.32.png differ diff --git a/website/images/mapicons/food_drinkingtap.n.12.png b/website/images/mapicons/food_drinkingtap.n.12.png new file mode 100644 index 00000000..edc74eec Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.n.12.png differ diff --git a/website/images/mapicons/food_drinkingtap.n.16.png b/website/images/mapicons/food_drinkingtap.n.16.png new file mode 100644 index 00000000..81e254e5 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.n.16.png differ diff --git a/website/images/mapicons/food_drinkingtap.n.20.png b/website/images/mapicons/food_drinkingtap.n.20.png new file mode 100644 index 00000000..48e74c51 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.n.20.png differ diff --git a/website/images/mapicons/food_drinkingtap.n.24.png b/website/images/mapicons/food_drinkingtap.n.24.png new file mode 100644 index 00000000..313572e5 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.n.24.png differ diff --git a/website/images/mapicons/food_drinkingtap.n.32.png b/website/images/mapicons/food_drinkingtap.n.32.png new file mode 100644 index 00000000..061a70cc Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.n.32.png differ diff --git a/website/images/mapicons/food_drinkingtap.p.12.png b/website/images/mapicons/food_drinkingtap.p.12.png new file mode 100644 index 00000000..c67c7622 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.p.12.png differ diff --git a/website/images/mapicons/food_drinkingtap.p.16.png b/website/images/mapicons/food_drinkingtap.p.16.png new file mode 100644 index 00000000..6b7e9145 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.p.16.png differ diff --git a/website/images/mapicons/food_drinkingtap.p.20.png b/website/images/mapicons/food_drinkingtap.p.20.png new file mode 100644 index 00000000..8fb0d3a0 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.p.20.png differ diff --git a/website/images/mapicons/food_drinkingtap.p.24.png b/website/images/mapicons/food_drinkingtap.p.24.png new file mode 100644 index 00000000..05151839 Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.p.24.png differ diff --git a/website/images/mapicons/food_drinkingtap.p.32.png b/website/images/mapicons/food_drinkingtap.p.32.png new file mode 100644 index 00000000..29a7cc8b Binary files /dev/null and b/website/images/mapicons/food_drinkingtap.p.32.png differ diff --git a/website/images/mapicons/food_fastfood.glow.12.png b/website/images/mapicons/food_fastfood.glow.12.png new file mode 100644 index 00000000..7a04aad3 Binary files /dev/null and b/website/images/mapicons/food_fastfood.glow.12.png differ diff --git a/website/images/mapicons/food_fastfood.glow.16.png b/website/images/mapicons/food_fastfood.glow.16.png new file mode 100644 index 00000000..517d4419 Binary files /dev/null and b/website/images/mapicons/food_fastfood.glow.16.png differ diff --git a/website/images/mapicons/food_fastfood.glow.20.png b/website/images/mapicons/food_fastfood.glow.20.png new file mode 100644 index 00000000..658996b1 Binary files /dev/null and b/website/images/mapicons/food_fastfood.glow.20.png differ diff --git a/website/images/mapicons/food_fastfood.glow.24.png b/website/images/mapicons/food_fastfood.glow.24.png new file mode 100644 index 00000000..8cb3ed85 Binary files /dev/null and b/website/images/mapicons/food_fastfood.glow.24.png differ diff --git a/website/images/mapicons/food_fastfood.glow.32.png b/website/images/mapicons/food_fastfood.glow.32.png new file mode 100644 index 00000000..c6977a72 Binary files /dev/null and b/website/images/mapicons/food_fastfood.glow.32.png differ diff --git a/website/images/mapicons/food_fastfood.n.12.png b/website/images/mapicons/food_fastfood.n.12.png new file mode 100644 index 00000000..c9120c7d Binary files /dev/null and b/website/images/mapicons/food_fastfood.n.12.png differ diff --git a/website/images/mapicons/food_fastfood.n.16.png b/website/images/mapicons/food_fastfood.n.16.png new file mode 100644 index 00000000..075fc803 Binary files /dev/null and b/website/images/mapicons/food_fastfood.n.16.png differ diff --git a/website/images/mapicons/food_fastfood.n.20.png b/website/images/mapicons/food_fastfood.n.20.png new file mode 100644 index 00000000..7e756c66 Binary files /dev/null and b/website/images/mapicons/food_fastfood.n.20.png differ diff --git a/website/images/mapicons/food_fastfood.n.24.png b/website/images/mapicons/food_fastfood.n.24.png new file mode 100644 index 00000000..96f5e770 Binary files /dev/null and b/website/images/mapicons/food_fastfood.n.24.png differ diff --git a/website/images/mapicons/food_fastfood.n.32.png b/website/images/mapicons/food_fastfood.n.32.png new file mode 100644 index 00000000..a67c5cff Binary files /dev/null and b/website/images/mapicons/food_fastfood.n.32.png differ diff --git a/website/images/mapicons/food_fastfood.p.12.png b/website/images/mapicons/food_fastfood.p.12.png new file mode 100644 index 00000000..a46ddcce Binary files /dev/null and b/website/images/mapicons/food_fastfood.p.12.png differ diff --git a/website/images/mapicons/food_fastfood.p.16.png b/website/images/mapicons/food_fastfood.p.16.png new file mode 100644 index 00000000..9cfb7ae1 Binary files /dev/null and b/website/images/mapicons/food_fastfood.p.16.png differ diff --git a/website/images/mapicons/food_fastfood.p.20.png b/website/images/mapicons/food_fastfood.p.20.png new file mode 100644 index 00000000..3ce6ba94 Binary files /dev/null and b/website/images/mapicons/food_fastfood.p.20.png differ diff --git a/website/images/mapicons/food_fastfood.p.24.png b/website/images/mapicons/food_fastfood.p.24.png new file mode 100644 index 00000000..67e598ab Binary files /dev/null and b/website/images/mapicons/food_fastfood.p.24.png differ diff --git a/website/images/mapicons/food_fastfood.p.32.png b/website/images/mapicons/food_fastfood.p.32.png new file mode 100644 index 00000000..9b861a0d Binary files /dev/null and b/website/images/mapicons/food_fastfood.p.32.png differ diff --git a/website/images/mapicons/food_fastfood2.glow.12.png b/website/images/mapicons/food_fastfood2.glow.12.png new file mode 100644 index 00000000..d263b242 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.glow.12.png differ diff --git a/website/images/mapicons/food_fastfood2.glow.16.png b/website/images/mapicons/food_fastfood2.glow.16.png new file mode 100644 index 00000000..f983ded1 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.glow.16.png differ diff --git a/website/images/mapicons/food_fastfood2.glow.20.png b/website/images/mapicons/food_fastfood2.glow.20.png new file mode 100644 index 00000000..093e9b91 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.glow.20.png differ diff --git a/website/images/mapicons/food_fastfood2.glow.24.png b/website/images/mapicons/food_fastfood2.glow.24.png new file mode 100644 index 00000000..7494a4fa Binary files /dev/null and b/website/images/mapicons/food_fastfood2.glow.24.png differ diff --git a/website/images/mapicons/food_fastfood2.glow.32.png b/website/images/mapicons/food_fastfood2.glow.32.png new file mode 100644 index 00000000..145eb45f Binary files /dev/null and b/website/images/mapicons/food_fastfood2.glow.32.png differ diff --git a/website/images/mapicons/food_fastfood2.n.12.png b/website/images/mapicons/food_fastfood2.n.12.png new file mode 100644 index 00000000..813b5b7c Binary files /dev/null and b/website/images/mapicons/food_fastfood2.n.12.png differ diff --git a/website/images/mapicons/food_fastfood2.n.16.png b/website/images/mapicons/food_fastfood2.n.16.png new file mode 100644 index 00000000..4af5b2b2 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.n.16.png differ diff --git a/website/images/mapicons/food_fastfood2.n.20.png b/website/images/mapicons/food_fastfood2.n.20.png new file mode 100644 index 00000000..5ded4504 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.n.20.png differ diff --git a/website/images/mapicons/food_fastfood2.n.24.png b/website/images/mapicons/food_fastfood2.n.24.png new file mode 100644 index 00000000..287059b8 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.n.24.png differ diff --git a/website/images/mapicons/food_fastfood2.n.32.png b/website/images/mapicons/food_fastfood2.n.32.png new file mode 100644 index 00000000..b0bffff4 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.n.32.png differ diff --git a/website/images/mapicons/food_fastfood2.p.12.png b/website/images/mapicons/food_fastfood2.p.12.png new file mode 100644 index 00000000..492d953d Binary files /dev/null and b/website/images/mapicons/food_fastfood2.p.12.png differ diff --git a/website/images/mapicons/food_fastfood2.p.16.png b/website/images/mapicons/food_fastfood2.p.16.png new file mode 100644 index 00000000..ee65c2d4 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.p.16.png differ diff --git a/website/images/mapicons/food_fastfood2.p.20.png b/website/images/mapicons/food_fastfood2.p.20.png new file mode 100644 index 00000000..97df378a Binary files /dev/null and b/website/images/mapicons/food_fastfood2.p.20.png differ diff --git a/website/images/mapicons/food_fastfood2.p.24.png b/website/images/mapicons/food_fastfood2.p.24.png new file mode 100644 index 00000000..ea62b772 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.p.24.png differ diff --git a/website/images/mapicons/food_fastfood2.p.32.png b/website/images/mapicons/food_fastfood2.p.32.png new file mode 100644 index 00000000..ca3ed136 Binary files /dev/null and b/website/images/mapicons/food_fastfood2.p.32.png differ diff --git a/website/images/mapicons/food_pub.glow.12.png b/website/images/mapicons/food_pub.glow.12.png new file mode 100644 index 00000000..4c9a80f0 Binary files /dev/null and b/website/images/mapicons/food_pub.glow.12.png differ diff --git a/website/images/mapicons/food_pub.glow.16.png b/website/images/mapicons/food_pub.glow.16.png new file mode 100644 index 00000000..3987bcf4 Binary files /dev/null and b/website/images/mapicons/food_pub.glow.16.png differ diff --git a/website/images/mapicons/food_pub.glow.20.png b/website/images/mapicons/food_pub.glow.20.png new file mode 100644 index 00000000..ff17a517 Binary files /dev/null and b/website/images/mapicons/food_pub.glow.20.png differ diff --git a/website/images/mapicons/food_pub.glow.24.png b/website/images/mapicons/food_pub.glow.24.png new file mode 100644 index 00000000..69214495 Binary files /dev/null and b/website/images/mapicons/food_pub.glow.24.png differ diff --git a/website/images/mapicons/food_pub.glow.32.png b/website/images/mapicons/food_pub.glow.32.png new file mode 100644 index 00000000..c550babf Binary files /dev/null and b/website/images/mapicons/food_pub.glow.32.png differ diff --git a/website/images/mapicons/food_pub.n.12.png b/website/images/mapicons/food_pub.n.12.png new file mode 100644 index 00000000..e077e2b8 Binary files /dev/null and b/website/images/mapicons/food_pub.n.12.png differ diff --git a/website/images/mapicons/food_pub.n.16.png b/website/images/mapicons/food_pub.n.16.png new file mode 100644 index 00000000..c3d339de Binary files /dev/null and b/website/images/mapicons/food_pub.n.16.png differ diff --git a/website/images/mapicons/food_pub.n.20.png b/website/images/mapicons/food_pub.n.20.png new file mode 100644 index 00000000..f729b3dd Binary files /dev/null and b/website/images/mapicons/food_pub.n.20.png differ diff --git a/website/images/mapicons/food_pub.n.24.png b/website/images/mapicons/food_pub.n.24.png new file mode 100644 index 00000000..714914f7 Binary files /dev/null and b/website/images/mapicons/food_pub.n.24.png differ diff --git a/website/images/mapicons/food_pub.n.32.png b/website/images/mapicons/food_pub.n.32.png new file mode 100644 index 00000000..2509ef27 Binary files /dev/null and b/website/images/mapicons/food_pub.n.32.png differ diff --git a/website/images/mapicons/food_pub.p.12.png b/website/images/mapicons/food_pub.p.12.png new file mode 100644 index 00000000..2b5913c1 Binary files /dev/null and b/website/images/mapicons/food_pub.p.12.png differ diff --git a/website/images/mapicons/food_pub.p.16.png b/website/images/mapicons/food_pub.p.16.png new file mode 100644 index 00000000..e0f6dc2d Binary files /dev/null and b/website/images/mapicons/food_pub.p.16.png differ diff --git a/website/images/mapicons/food_pub.p.20.png b/website/images/mapicons/food_pub.p.20.png new file mode 100644 index 00000000..51ced204 Binary files /dev/null and b/website/images/mapicons/food_pub.p.20.png differ diff --git a/website/images/mapicons/food_pub.p.24.png b/website/images/mapicons/food_pub.p.24.png new file mode 100644 index 00000000..64822b6d Binary files /dev/null and b/website/images/mapicons/food_pub.p.24.png differ diff --git a/website/images/mapicons/food_pub.p.32.png b/website/images/mapicons/food_pub.p.32.png new file mode 100644 index 00000000..b1b87614 Binary files /dev/null and b/website/images/mapicons/food_pub.p.32.png differ diff --git a/website/images/mapicons/food_restaurant.glow.12.png b/website/images/mapicons/food_restaurant.glow.12.png new file mode 100644 index 00000000..2d6e8d44 Binary files /dev/null and b/website/images/mapicons/food_restaurant.glow.12.png differ diff --git a/website/images/mapicons/food_restaurant.glow.16.png b/website/images/mapicons/food_restaurant.glow.16.png new file mode 100644 index 00000000..4d712f48 Binary files /dev/null and b/website/images/mapicons/food_restaurant.glow.16.png differ diff --git a/website/images/mapicons/food_restaurant.glow.20.png b/website/images/mapicons/food_restaurant.glow.20.png new file mode 100644 index 00000000..afd6e604 Binary files /dev/null and b/website/images/mapicons/food_restaurant.glow.20.png differ diff --git a/website/images/mapicons/food_restaurant.glow.24.png b/website/images/mapicons/food_restaurant.glow.24.png new file mode 100644 index 00000000..e9f4c4f1 Binary files /dev/null and b/website/images/mapicons/food_restaurant.glow.24.png differ diff --git a/website/images/mapicons/food_restaurant.glow.32.png b/website/images/mapicons/food_restaurant.glow.32.png new file mode 100644 index 00000000..54672951 Binary files /dev/null and b/website/images/mapicons/food_restaurant.glow.32.png differ diff --git a/website/images/mapicons/food_restaurant.n.12.png b/website/images/mapicons/food_restaurant.n.12.png new file mode 100644 index 00000000..4c1dcc9f Binary files /dev/null and b/website/images/mapicons/food_restaurant.n.12.png differ diff --git a/website/images/mapicons/food_restaurant.n.16.png b/website/images/mapicons/food_restaurant.n.16.png new file mode 100644 index 00000000..30682b2c Binary files /dev/null and b/website/images/mapicons/food_restaurant.n.16.png differ diff --git a/website/images/mapicons/food_restaurant.n.20.png b/website/images/mapicons/food_restaurant.n.20.png new file mode 100644 index 00000000..52a742d2 Binary files /dev/null and b/website/images/mapicons/food_restaurant.n.20.png differ diff --git a/website/images/mapicons/food_restaurant.n.24.png b/website/images/mapicons/food_restaurant.n.24.png new file mode 100644 index 00000000..e7813ea2 Binary files /dev/null and b/website/images/mapicons/food_restaurant.n.24.png differ diff --git a/website/images/mapicons/food_restaurant.n.32.png b/website/images/mapicons/food_restaurant.n.32.png new file mode 100644 index 00000000..80b3d38b Binary files /dev/null and b/website/images/mapicons/food_restaurant.n.32.png differ diff --git a/website/images/mapicons/food_restaurant.p.12.png b/website/images/mapicons/food_restaurant.p.12.png new file mode 100644 index 00000000..54787922 Binary files /dev/null and b/website/images/mapicons/food_restaurant.p.12.png differ diff --git a/website/images/mapicons/food_restaurant.p.16.png b/website/images/mapicons/food_restaurant.p.16.png new file mode 100644 index 00000000..b5101cd1 Binary files /dev/null and b/website/images/mapicons/food_restaurant.p.16.png differ diff --git a/website/images/mapicons/food_restaurant.p.20.png b/website/images/mapicons/food_restaurant.p.20.png new file mode 100644 index 00000000..73c34656 Binary files /dev/null and b/website/images/mapicons/food_restaurant.p.20.png differ diff --git a/website/images/mapicons/food_restaurant.p.24.png b/website/images/mapicons/food_restaurant.p.24.png new file mode 100644 index 00000000..a555ad99 Binary files /dev/null and b/website/images/mapicons/food_restaurant.p.24.png differ diff --git a/website/images/mapicons/food_restaurant.p.32.png b/website/images/mapicons/food_restaurant.p.32.png new file mode 100644 index 00000000..47e52c3a Binary files /dev/null and b/website/images/mapicons/food_restaurant.p.32.png differ diff --git a/website/images/mapicons/health_dentist.glow.12.png b/website/images/mapicons/health_dentist.glow.12.png new file mode 100644 index 00000000..fa535e99 Binary files /dev/null and b/website/images/mapicons/health_dentist.glow.12.png differ diff --git a/website/images/mapicons/health_dentist.glow.16.png b/website/images/mapicons/health_dentist.glow.16.png new file mode 100644 index 00000000..b34435bb Binary files /dev/null and b/website/images/mapicons/health_dentist.glow.16.png differ diff --git a/website/images/mapicons/health_dentist.glow.20.png b/website/images/mapicons/health_dentist.glow.20.png new file mode 100644 index 00000000..0781973d Binary files /dev/null and b/website/images/mapicons/health_dentist.glow.20.png differ diff --git a/website/images/mapicons/health_dentist.glow.24.png b/website/images/mapicons/health_dentist.glow.24.png new file mode 100644 index 00000000..938b361c Binary files /dev/null and b/website/images/mapicons/health_dentist.glow.24.png differ diff --git a/website/images/mapicons/health_dentist.glow.32.png b/website/images/mapicons/health_dentist.glow.32.png new file mode 100644 index 00000000..b1aa77f6 Binary files /dev/null and b/website/images/mapicons/health_dentist.glow.32.png differ diff --git a/website/images/mapicons/health_dentist.n.12.png b/website/images/mapicons/health_dentist.n.12.png new file mode 100644 index 00000000..d278f578 Binary files /dev/null and b/website/images/mapicons/health_dentist.n.12.png differ diff --git a/website/images/mapicons/health_dentist.n.16.png b/website/images/mapicons/health_dentist.n.16.png new file mode 100644 index 00000000..3fd28bed Binary files /dev/null and b/website/images/mapicons/health_dentist.n.16.png differ diff --git a/website/images/mapicons/health_dentist.n.20.png b/website/images/mapicons/health_dentist.n.20.png new file mode 100644 index 00000000..32eb494c Binary files /dev/null and b/website/images/mapicons/health_dentist.n.20.png differ diff --git a/website/images/mapicons/health_dentist.n.24.png b/website/images/mapicons/health_dentist.n.24.png new file mode 100644 index 00000000..d5641dbc Binary files /dev/null and b/website/images/mapicons/health_dentist.n.24.png differ diff --git a/website/images/mapicons/health_dentist.n.32.png b/website/images/mapicons/health_dentist.n.32.png new file mode 100644 index 00000000..936cf7c2 Binary files /dev/null and b/website/images/mapicons/health_dentist.n.32.png differ diff --git a/website/images/mapicons/health_dentist.p.12.png b/website/images/mapicons/health_dentist.p.12.png new file mode 100644 index 00000000..35ff9a87 Binary files /dev/null and b/website/images/mapicons/health_dentist.p.12.png differ diff --git a/website/images/mapicons/health_dentist.p.16.png b/website/images/mapicons/health_dentist.p.16.png new file mode 100644 index 00000000..e3219f79 Binary files /dev/null and b/website/images/mapicons/health_dentist.p.16.png differ diff --git a/website/images/mapicons/health_dentist.p.20.png b/website/images/mapicons/health_dentist.p.20.png new file mode 100644 index 00000000..ca0621ae Binary files /dev/null and b/website/images/mapicons/health_dentist.p.20.png differ diff --git a/website/images/mapicons/health_dentist.p.24.png b/website/images/mapicons/health_dentist.p.24.png new file mode 100644 index 00000000..1f902918 Binary files /dev/null and b/website/images/mapicons/health_dentist.p.24.png differ diff --git a/website/images/mapicons/health_dentist.p.32.png b/website/images/mapicons/health_dentist.p.32.png new file mode 100644 index 00000000..84a4963b Binary files /dev/null and b/website/images/mapicons/health_dentist.p.32.png differ diff --git a/website/images/mapicons/health_doctors.glow.12.png b/website/images/mapicons/health_doctors.glow.12.png new file mode 100644 index 00000000..49e83631 Binary files /dev/null and b/website/images/mapicons/health_doctors.glow.12.png differ diff --git a/website/images/mapicons/health_doctors.glow.16.png b/website/images/mapicons/health_doctors.glow.16.png new file mode 100644 index 00000000..def4e1b3 Binary files /dev/null and b/website/images/mapicons/health_doctors.glow.16.png differ diff --git a/website/images/mapicons/health_doctors.glow.20.png b/website/images/mapicons/health_doctors.glow.20.png new file mode 100644 index 00000000..dd6755a5 Binary files /dev/null and b/website/images/mapicons/health_doctors.glow.20.png differ diff --git a/website/images/mapicons/health_doctors.glow.24.png b/website/images/mapicons/health_doctors.glow.24.png new file mode 100644 index 00000000..5936450b Binary files /dev/null and b/website/images/mapicons/health_doctors.glow.24.png differ diff --git a/website/images/mapicons/health_doctors.glow.32.png b/website/images/mapicons/health_doctors.glow.32.png new file mode 100644 index 00000000..99fc89d0 Binary files /dev/null and b/website/images/mapicons/health_doctors.glow.32.png differ diff --git a/website/images/mapicons/health_doctors.n.12.png b/website/images/mapicons/health_doctors.n.12.png new file mode 100644 index 00000000..bfee27c2 Binary files /dev/null and b/website/images/mapicons/health_doctors.n.12.png differ diff --git a/website/images/mapicons/health_doctors.n.16.png b/website/images/mapicons/health_doctors.n.16.png new file mode 100644 index 00000000..f7870a3a Binary files /dev/null and b/website/images/mapicons/health_doctors.n.16.png differ diff --git a/website/images/mapicons/health_doctors.n.20.png b/website/images/mapicons/health_doctors.n.20.png new file mode 100644 index 00000000..64ab207f Binary files /dev/null and b/website/images/mapicons/health_doctors.n.20.png differ diff --git a/website/images/mapicons/health_doctors.n.24.png b/website/images/mapicons/health_doctors.n.24.png new file mode 100644 index 00000000..3b952ca4 Binary files /dev/null and b/website/images/mapicons/health_doctors.n.24.png differ diff --git a/website/images/mapicons/health_doctors.n.32.png b/website/images/mapicons/health_doctors.n.32.png new file mode 100644 index 00000000..ecb6eda3 Binary files /dev/null and b/website/images/mapicons/health_doctors.n.32.png differ diff --git a/website/images/mapicons/health_doctors.p.12.png b/website/images/mapicons/health_doctors.p.12.png new file mode 100644 index 00000000..6c2397e2 Binary files /dev/null and b/website/images/mapicons/health_doctors.p.12.png differ diff --git a/website/images/mapicons/health_doctors.p.16.png b/website/images/mapicons/health_doctors.p.16.png new file mode 100644 index 00000000..9cdc4691 Binary files /dev/null and b/website/images/mapicons/health_doctors.p.16.png differ diff --git a/website/images/mapicons/health_doctors.p.20.png b/website/images/mapicons/health_doctors.p.20.png new file mode 100644 index 00000000..a2a6cd7f Binary files /dev/null and b/website/images/mapicons/health_doctors.p.20.png differ diff --git a/website/images/mapicons/health_doctors.p.24.png b/website/images/mapicons/health_doctors.p.24.png new file mode 100644 index 00000000..884f1137 Binary files /dev/null and b/website/images/mapicons/health_doctors.p.24.png differ diff --git a/website/images/mapicons/health_doctors.p.32.png b/website/images/mapicons/health_doctors.p.32.png new file mode 100644 index 00000000..bc82ccef Binary files /dev/null and b/website/images/mapicons/health_doctors.p.32.png differ diff --git a/website/images/mapicons/health_hospital.glow.12.png b/website/images/mapicons/health_hospital.glow.12.png new file mode 100644 index 00000000..b0402cc5 Binary files /dev/null and b/website/images/mapicons/health_hospital.glow.12.png differ diff --git a/website/images/mapicons/health_hospital.glow.16.png b/website/images/mapicons/health_hospital.glow.16.png new file mode 100644 index 00000000..b68954c9 Binary files /dev/null and b/website/images/mapicons/health_hospital.glow.16.png differ diff --git a/website/images/mapicons/health_hospital.glow.20.png b/website/images/mapicons/health_hospital.glow.20.png new file mode 100644 index 00000000..5336433f Binary files /dev/null and b/website/images/mapicons/health_hospital.glow.20.png differ diff --git a/website/images/mapicons/health_hospital.glow.24.png b/website/images/mapicons/health_hospital.glow.24.png new file mode 100644 index 00000000..e1e0b834 Binary files /dev/null and b/website/images/mapicons/health_hospital.glow.24.png differ diff --git a/website/images/mapicons/health_hospital.glow.32.png b/website/images/mapicons/health_hospital.glow.32.png new file mode 100644 index 00000000..5fea388f Binary files /dev/null and b/website/images/mapicons/health_hospital.glow.32.png differ diff --git a/website/images/mapicons/health_hospital.n.12.png b/website/images/mapicons/health_hospital.n.12.png new file mode 100644 index 00000000..d8d3ec9e Binary files /dev/null and b/website/images/mapicons/health_hospital.n.12.png differ diff --git a/website/images/mapicons/health_hospital.n.16.png b/website/images/mapicons/health_hospital.n.16.png new file mode 100644 index 00000000..41ad28dd Binary files /dev/null and b/website/images/mapicons/health_hospital.n.16.png differ diff --git a/website/images/mapicons/health_hospital.n.20.png b/website/images/mapicons/health_hospital.n.20.png new file mode 100644 index 00000000..f0883739 Binary files /dev/null and b/website/images/mapicons/health_hospital.n.20.png differ diff --git a/website/images/mapicons/health_hospital.n.24.png b/website/images/mapicons/health_hospital.n.24.png new file mode 100644 index 00000000..e9b114a7 Binary files /dev/null and b/website/images/mapicons/health_hospital.n.24.png differ diff --git a/website/images/mapicons/health_hospital.n.32.png b/website/images/mapicons/health_hospital.n.32.png new file mode 100644 index 00000000..fe97f18c Binary files /dev/null and b/website/images/mapicons/health_hospital.n.32.png differ diff --git a/website/images/mapicons/health_hospital.p.12.png b/website/images/mapicons/health_hospital.p.12.png new file mode 100644 index 00000000..ed67894d Binary files /dev/null and b/website/images/mapicons/health_hospital.p.12.png differ diff --git a/website/images/mapicons/health_hospital.p.16.png b/website/images/mapicons/health_hospital.p.16.png new file mode 100644 index 00000000..22a47ac1 Binary files /dev/null and b/website/images/mapicons/health_hospital.p.16.png differ diff --git a/website/images/mapicons/health_hospital.p.20.png b/website/images/mapicons/health_hospital.p.20.png new file mode 100644 index 00000000..f11de0e2 Binary files /dev/null and b/website/images/mapicons/health_hospital.p.20.png differ diff --git a/website/images/mapicons/health_hospital.p.24.png b/website/images/mapicons/health_hospital.p.24.png new file mode 100644 index 00000000..a6531418 Binary files /dev/null and b/website/images/mapicons/health_hospital.p.24.png differ diff --git a/website/images/mapicons/health_hospital.p.32.png b/website/images/mapicons/health_hospital.p.32.png new file mode 100644 index 00000000..cd87458a Binary files /dev/null and b/website/images/mapicons/health_hospital.p.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency.glow.12.png b/website/images/mapicons/health_hospital_emergency.glow.12.png new file mode 100644 index 00000000..f5bfaa2a Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.glow.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency.glow.16.png b/website/images/mapicons/health_hospital_emergency.glow.16.png new file mode 100644 index 00000000..c5b0fc40 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.glow.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency.glow.20.png b/website/images/mapicons/health_hospital_emergency.glow.20.png new file mode 100644 index 00000000..d0c1c0e8 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.glow.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency.glow.24.png b/website/images/mapicons/health_hospital_emergency.glow.24.png new file mode 100644 index 00000000..679c013b Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.glow.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency.glow.32.png b/website/images/mapicons/health_hospital_emergency.glow.32.png new file mode 100644 index 00000000..55594b0f Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.glow.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency.n.12.png b/website/images/mapicons/health_hospital_emergency.n.12.png new file mode 100644 index 00000000..3e584f9c Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.n.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency.n.16.png b/website/images/mapicons/health_hospital_emergency.n.16.png new file mode 100644 index 00000000..beacb7a6 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.n.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency.n.20.png b/website/images/mapicons/health_hospital_emergency.n.20.png new file mode 100644 index 00000000..72db670c Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.n.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency.n.24.png b/website/images/mapicons/health_hospital_emergency.n.24.png new file mode 100644 index 00000000..f0d02025 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.n.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency.n.32.png b/website/images/mapicons/health_hospital_emergency.n.32.png new file mode 100644 index 00000000..842d8202 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.n.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency.p.12.png b/website/images/mapicons/health_hospital_emergency.p.12.png new file mode 100644 index 00000000..f64ccb31 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.p.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency.p.16.png b/website/images/mapicons/health_hospital_emergency.p.16.png new file mode 100644 index 00000000..5673b9cc Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.p.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency.p.20.png b/website/images/mapicons/health_hospital_emergency.p.20.png new file mode 100644 index 00000000..1ff456cb Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.p.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency.p.24.png b/website/images/mapicons/health_hospital_emergency.p.24.png new file mode 100644 index 00000000..c48990a1 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.p.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency.p.32.png b/website/images/mapicons/health_hospital_emergency.p.32.png new file mode 100644 index 00000000..f0d86da7 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency.p.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.glow.12.png b/website/images/mapicons/health_hospital_emergency2.glow.12.png new file mode 100644 index 00000000..e75e4e4d Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.glow.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.glow.16.png b/website/images/mapicons/health_hospital_emergency2.glow.16.png new file mode 100644 index 00000000..449f05c3 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.glow.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.glow.20.png b/website/images/mapicons/health_hospital_emergency2.glow.20.png new file mode 100644 index 00000000..6646217f Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.glow.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.glow.24.png b/website/images/mapicons/health_hospital_emergency2.glow.24.png new file mode 100644 index 00000000..7aa03a8d Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.glow.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.glow.32.png b/website/images/mapicons/health_hospital_emergency2.glow.32.png new file mode 100644 index 00000000..ab3a4395 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.glow.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.n.12.png b/website/images/mapicons/health_hospital_emergency2.n.12.png new file mode 100644 index 00000000..620ee456 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.n.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.n.16.png b/website/images/mapicons/health_hospital_emergency2.n.16.png new file mode 100644 index 00000000..decee7e8 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.n.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.n.20.png b/website/images/mapicons/health_hospital_emergency2.n.20.png new file mode 100644 index 00000000..6ba3e1fb Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.n.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.n.24.png b/website/images/mapicons/health_hospital_emergency2.n.24.png new file mode 100644 index 00000000..efe26218 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.n.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.n.32.png b/website/images/mapicons/health_hospital_emergency2.n.32.png new file mode 100644 index 00000000..278b5c92 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.n.32.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.p.12.png b/website/images/mapicons/health_hospital_emergency2.p.12.png new file mode 100644 index 00000000..7d3869dd Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.p.12.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.p.16.png b/website/images/mapicons/health_hospital_emergency2.p.16.png new file mode 100644 index 00000000..db406328 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.p.16.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.p.20.png b/website/images/mapicons/health_hospital_emergency2.p.20.png new file mode 100644 index 00000000..8258457c Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.p.20.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.p.24.png b/website/images/mapicons/health_hospital_emergency2.p.24.png new file mode 100644 index 00000000..a1785736 Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.p.24.png differ diff --git a/website/images/mapicons/health_hospital_emergency2.p.32.png b/website/images/mapicons/health_hospital_emergency2.p.32.png new file mode 100644 index 00000000..d2ad508a Binary files /dev/null and b/website/images/mapicons/health_hospital_emergency2.p.32.png differ diff --git a/website/images/mapicons/health_opticians.glow.12.png b/website/images/mapicons/health_opticians.glow.12.png new file mode 100644 index 00000000..9b2a62d6 Binary files /dev/null and b/website/images/mapicons/health_opticians.glow.12.png differ diff --git a/website/images/mapicons/health_opticians.glow.16.png b/website/images/mapicons/health_opticians.glow.16.png new file mode 100644 index 00000000..f0236356 Binary files /dev/null and b/website/images/mapicons/health_opticians.glow.16.png differ diff --git a/website/images/mapicons/health_opticians.glow.20.png b/website/images/mapicons/health_opticians.glow.20.png new file mode 100644 index 00000000..ebd20457 Binary files /dev/null and b/website/images/mapicons/health_opticians.glow.20.png differ diff --git a/website/images/mapicons/health_opticians.glow.24.png b/website/images/mapicons/health_opticians.glow.24.png new file mode 100644 index 00000000..b1d2d7d3 Binary files /dev/null and b/website/images/mapicons/health_opticians.glow.24.png differ diff --git a/website/images/mapicons/health_opticians.glow.32.png b/website/images/mapicons/health_opticians.glow.32.png new file mode 100644 index 00000000..5fad0dac Binary files /dev/null and b/website/images/mapicons/health_opticians.glow.32.png differ diff --git a/website/images/mapicons/health_opticians.n.12.png b/website/images/mapicons/health_opticians.n.12.png new file mode 100644 index 00000000..59dc31d2 Binary files /dev/null and b/website/images/mapicons/health_opticians.n.12.png differ diff --git a/website/images/mapicons/health_opticians.n.16.png b/website/images/mapicons/health_opticians.n.16.png new file mode 100644 index 00000000..a87754a1 Binary files /dev/null and b/website/images/mapicons/health_opticians.n.16.png differ diff --git a/website/images/mapicons/health_opticians.n.20.png b/website/images/mapicons/health_opticians.n.20.png new file mode 100644 index 00000000..d10a61c5 Binary files /dev/null and b/website/images/mapicons/health_opticians.n.20.png differ diff --git a/website/images/mapicons/health_opticians.n.24.png b/website/images/mapicons/health_opticians.n.24.png new file mode 100644 index 00000000..c4bd8fc9 Binary files /dev/null and b/website/images/mapicons/health_opticians.n.24.png differ diff --git a/website/images/mapicons/health_opticians.n.32.png b/website/images/mapicons/health_opticians.n.32.png new file mode 100644 index 00000000..1cabea50 Binary files /dev/null and b/website/images/mapicons/health_opticians.n.32.png differ diff --git a/website/images/mapicons/health_opticians.p.12.png b/website/images/mapicons/health_opticians.p.12.png new file mode 100644 index 00000000..509f63da Binary files /dev/null and b/website/images/mapicons/health_opticians.p.12.png differ diff --git a/website/images/mapicons/health_opticians.p.16.png b/website/images/mapicons/health_opticians.p.16.png new file mode 100644 index 00000000..d89ff568 Binary files /dev/null and b/website/images/mapicons/health_opticians.p.16.png differ diff --git a/website/images/mapicons/health_opticians.p.20.png b/website/images/mapicons/health_opticians.p.20.png new file mode 100644 index 00000000..65b65d8d Binary files /dev/null and b/website/images/mapicons/health_opticians.p.20.png differ diff --git a/website/images/mapicons/health_opticians.p.24.png b/website/images/mapicons/health_opticians.p.24.png new file mode 100644 index 00000000..17211bbf Binary files /dev/null and b/website/images/mapicons/health_opticians.p.24.png differ diff --git a/website/images/mapicons/health_opticians.p.32.png b/website/images/mapicons/health_opticians.p.32.png new file mode 100644 index 00000000..8ab1ad9c Binary files /dev/null and b/website/images/mapicons/health_opticians.p.32.png differ diff --git a/website/images/mapicons/health_pharmacy.glow.12.png b/website/images/mapicons/health_pharmacy.glow.12.png new file mode 100644 index 00000000..787aa114 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.glow.12.png differ diff --git a/website/images/mapicons/health_pharmacy.glow.16.png b/website/images/mapicons/health_pharmacy.glow.16.png new file mode 100644 index 00000000..1a44afb9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.glow.16.png differ diff --git a/website/images/mapicons/health_pharmacy.glow.20.png b/website/images/mapicons/health_pharmacy.glow.20.png new file mode 100644 index 00000000..497a1c3e Binary files /dev/null and b/website/images/mapicons/health_pharmacy.glow.20.png differ diff --git a/website/images/mapicons/health_pharmacy.glow.24.png b/website/images/mapicons/health_pharmacy.glow.24.png new file mode 100644 index 00000000..a17aefba Binary files /dev/null and b/website/images/mapicons/health_pharmacy.glow.24.png differ diff --git a/website/images/mapicons/health_pharmacy.glow.32.png b/website/images/mapicons/health_pharmacy.glow.32.png new file mode 100644 index 00000000..ce15a4a9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.glow.32.png differ diff --git a/website/images/mapicons/health_pharmacy.n.12.png b/website/images/mapicons/health_pharmacy.n.12.png new file mode 100644 index 00000000..7bbf69be Binary files /dev/null and b/website/images/mapicons/health_pharmacy.n.12.png differ diff --git a/website/images/mapicons/health_pharmacy.n.16.png b/website/images/mapicons/health_pharmacy.n.16.png new file mode 100644 index 00000000..ffc12561 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.n.16.png differ diff --git a/website/images/mapicons/health_pharmacy.n.20.png b/website/images/mapicons/health_pharmacy.n.20.png new file mode 100644 index 00000000..48cee8b9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.n.20.png differ diff --git a/website/images/mapicons/health_pharmacy.n.24.png b/website/images/mapicons/health_pharmacy.n.24.png new file mode 100644 index 00000000..4fe2fc7d Binary files /dev/null and b/website/images/mapicons/health_pharmacy.n.24.png differ diff --git a/website/images/mapicons/health_pharmacy.n.32.png b/website/images/mapicons/health_pharmacy.n.32.png new file mode 100644 index 00000000..54963f69 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.n.32.png differ diff --git a/website/images/mapicons/health_pharmacy.p.12.png b/website/images/mapicons/health_pharmacy.p.12.png new file mode 100644 index 00000000..70d0de04 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.p.12.png differ diff --git a/website/images/mapicons/health_pharmacy.p.16.png b/website/images/mapicons/health_pharmacy.p.16.png new file mode 100644 index 00000000..f48e1c3a Binary files /dev/null and b/website/images/mapicons/health_pharmacy.p.16.png differ diff --git a/website/images/mapicons/health_pharmacy.p.20.png b/website/images/mapicons/health_pharmacy.p.20.png new file mode 100644 index 00000000..b6fde9e9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.p.20.png differ diff --git a/website/images/mapicons/health_pharmacy.p.24.png b/website/images/mapicons/health_pharmacy.p.24.png new file mode 100644 index 00000000..9bf0ba38 Binary files /dev/null and b/website/images/mapicons/health_pharmacy.p.24.png differ diff --git a/website/images/mapicons/health_pharmacy.p.32.png b/website/images/mapicons/health_pharmacy.p.32.png new file mode 100644 index 00000000..fe0b9fea Binary files /dev/null and b/website/images/mapicons/health_pharmacy.p.32.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.glow.12.png b/website/images/mapicons/health_pharmacy_dispencing.glow.12.png new file mode 100644 index 00000000..69098c91 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.glow.12.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.glow.16.png b/website/images/mapicons/health_pharmacy_dispencing.glow.16.png new file mode 100644 index 00000000..eb1d0a92 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.glow.16.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.glow.20.png b/website/images/mapicons/health_pharmacy_dispencing.glow.20.png new file mode 100644 index 00000000..b953ca2a Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.glow.20.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.glow.24.png b/website/images/mapicons/health_pharmacy_dispencing.glow.24.png new file mode 100644 index 00000000..abb0ef1f Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.glow.24.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.glow.32.png b/website/images/mapicons/health_pharmacy_dispencing.glow.32.png new file mode 100644 index 00000000..502d8ee9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.glow.32.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.n.12.png b/website/images/mapicons/health_pharmacy_dispencing.n.12.png new file mode 100644 index 00000000..fd16d0c9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.n.12.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.n.16.png b/website/images/mapicons/health_pharmacy_dispencing.n.16.png new file mode 100644 index 00000000..a6f80b71 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.n.16.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.n.20.png b/website/images/mapicons/health_pharmacy_dispencing.n.20.png new file mode 100644 index 00000000..43e32520 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.n.20.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.n.24.png b/website/images/mapicons/health_pharmacy_dispencing.n.24.png new file mode 100644 index 00000000..bc46a6cb Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.n.24.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.n.32.png b/website/images/mapicons/health_pharmacy_dispencing.n.32.png new file mode 100644 index 00000000..d0524731 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.n.32.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.p.12.png b/website/images/mapicons/health_pharmacy_dispencing.p.12.png new file mode 100644 index 00000000..ef293bd9 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.p.12.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.p.16.png b/website/images/mapicons/health_pharmacy_dispencing.p.16.png new file mode 100644 index 00000000..3f173856 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.p.16.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.p.20.png b/website/images/mapicons/health_pharmacy_dispencing.p.20.png new file mode 100644 index 00000000..51ed55e1 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.p.20.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.p.24.png b/website/images/mapicons/health_pharmacy_dispencing.p.24.png new file mode 100644 index 00000000..a975bba6 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.p.24.png differ diff --git a/website/images/mapicons/health_pharmacy_dispencing.p.32.png b/website/images/mapicons/health_pharmacy_dispencing.p.32.png new file mode 100644 index 00000000..1765c708 Binary files /dev/null and b/website/images/mapicons/health_pharmacy_dispencing.p.32.png differ diff --git a/website/images/mapicons/health_veterinary.glow.12.png b/website/images/mapicons/health_veterinary.glow.12.png new file mode 100644 index 00000000..c9b5bf49 Binary files /dev/null and b/website/images/mapicons/health_veterinary.glow.12.png differ diff --git a/website/images/mapicons/health_veterinary.glow.16.png b/website/images/mapicons/health_veterinary.glow.16.png new file mode 100644 index 00000000..7cdaadb0 Binary files /dev/null and b/website/images/mapicons/health_veterinary.glow.16.png differ diff --git a/website/images/mapicons/health_veterinary.glow.20.png b/website/images/mapicons/health_veterinary.glow.20.png new file mode 100644 index 00000000..d24adfb9 Binary files /dev/null and b/website/images/mapicons/health_veterinary.glow.20.png differ diff --git a/website/images/mapicons/health_veterinary.glow.24.png b/website/images/mapicons/health_veterinary.glow.24.png new file mode 100644 index 00000000..f86c0c5f Binary files /dev/null and b/website/images/mapicons/health_veterinary.glow.24.png differ diff --git a/website/images/mapicons/health_veterinary.glow.32.png b/website/images/mapicons/health_veterinary.glow.32.png new file mode 100644 index 00000000..b4cf3614 Binary files /dev/null and b/website/images/mapicons/health_veterinary.glow.32.png differ diff --git a/website/images/mapicons/health_veterinary.n.12.png b/website/images/mapicons/health_veterinary.n.12.png new file mode 100644 index 00000000..3f6d92e3 Binary files /dev/null and b/website/images/mapicons/health_veterinary.n.12.png differ diff --git a/website/images/mapicons/health_veterinary.n.16.png b/website/images/mapicons/health_veterinary.n.16.png new file mode 100644 index 00000000..5f491b42 Binary files /dev/null and b/website/images/mapicons/health_veterinary.n.16.png differ diff --git a/website/images/mapicons/health_veterinary.n.20.png b/website/images/mapicons/health_veterinary.n.20.png new file mode 100644 index 00000000..3105dcb3 Binary files /dev/null and b/website/images/mapicons/health_veterinary.n.20.png differ diff --git a/website/images/mapicons/health_veterinary.n.24.png b/website/images/mapicons/health_veterinary.n.24.png new file mode 100644 index 00000000..3bac50b6 Binary files /dev/null and b/website/images/mapicons/health_veterinary.n.24.png differ diff --git a/website/images/mapicons/health_veterinary.n.32.png b/website/images/mapicons/health_veterinary.n.32.png new file mode 100644 index 00000000..f91728a2 Binary files /dev/null and b/website/images/mapicons/health_veterinary.n.32.png differ diff --git a/website/images/mapicons/health_veterinary.p.12.png b/website/images/mapicons/health_veterinary.p.12.png new file mode 100644 index 00000000..5d782801 Binary files /dev/null and b/website/images/mapicons/health_veterinary.p.12.png differ diff --git a/website/images/mapicons/health_veterinary.p.16.png b/website/images/mapicons/health_veterinary.p.16.png new file mode 100644 index 00000000..dd8ee169 Binary files /dev/null and b/website/images/mapicons/health_veterinary.p.16.png differ diff --git a/website/images/mapicons/health_veterinary.p.20.png b/website/images/mapicons/health_veterinary.p.20.png new file mode 100644 index 00000000..bba6ed86 Binary files /dev/null and b/website/images/mapicons/health_veterinary.p.20.png differ diff --git a/website/images/mapicons/health_veterinary.p.24.png b/website/images/mapicons/health_veterinary.p.24.png new file mode 100644 index 00000000..3e832443 Binary files /dev/null and b/website/images/mapicons/health_veterinary.p.24.png differ diff --git a/website/images/mapicons/health_veterinary.p.32.png b/website/images/mapicons/health_veterinary.p.32.png new file mode 100644 index 00000000..8ee58821 Binary files /dev/null and b/website/images/mapicons/health_veterinary.p.32.png differ diff --git a/website/images/mapicons/landuse_coniferous.glow.12.png b/website/images/mapicons/landuse_coniferous.glow.12.png new file mode 100644 index 00000000..6a8b96f7 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.glow.12.png differ diff --git a/website/images/mapicons/landuse_coniferous.glow.16.png b/website/images/mapicons/landuse_coniferous.glow.16.png new file mode 100644 index 00000000..8f5d0475 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.glow.16.png differ diff --git a/website/images/mapicons/landuse_coniferous.glow.20.png b/website/images/mapicons/landuse_coniferous.glow.20.png new file mode 100644 index 00000000..ff7fa5de Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.glow.20.png differ diff --git a/website/images/mapicons/landuse_coniferous.glow.24.png b/website/images/mapicons/landuse_coniferous.glow.24.png new file mode 100644 index 00000000..56ca7684 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.glow.24.png differ diff --git a/website/images/mapicons/landuse_coniferous.glow.32.png b/website/images/mapicons/landuse_coniferous.glow.32.png new file mode 100644 index 00000000..0cb1fe08 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.glow.32.png differ diff --git a/website/images/mapicons/landuse_coniferous.n.12.png b/website/images/mapicons/landuse_coniferous.n.12.png new file mode 100644 index 00000000..20bfe7d2 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.n.12.png differ diff --git a/website/images/mapicons/landuse_coniferous.n.16.png b/website/images/mapicons/landuse_coniferous.n.16.png new file mode 100644 index 00000000..b9f7c181 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.n.16.png differ diff --git a/website/images/mapicons/landuse_coniferous.n.20.png b/website/images/mapicons/landuse_coniferous.n.20.png new file mode 100644 index 00000000..3d9b10b0 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.n.20.png differ diff --git a/website/images/mapicons/landuse_coniferous.n.24.png b/website/images/mapicons/landuse_coniferous.n.24.png new file mode 100644 index 00000000..93f6c0df Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.n.24.png differ diff --git a/website/images/mapicons/landuse_coniferous.n.32.png b/website/images/mapicons/landuse_coniferous.n.32.png new file mode 100644 index 00000000..31cbaf64 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.n.32.png differ diff --git a/website/images/mapicons/landuse_coniferous.p.12.png b/website/images/mapicons/landuse_coniferous.p.12.png new file mode 100644 index 00000000..876f8736 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.p.12.png differ diff --git a/website/images/mapicons/landuse_coniferous.p.16.png b/website/images/mapicons/landuse_coniferous.p.16.png new file mode 100644 index 00000000..40565730 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.p.16.png differ diff --git a/website/images/mapicons/landuse_coniferous.p.20.png b/website/images/mapicons/landuse_coniferous.p.20.png new file mode 100644 index 00000000..0ae7259e Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.p.20.png differ diff --git a/website/images/mapicons/landuse_coniferous.p.24.png b/website/images/mapicons/landuse_coniferous.p.24.png new file mode 100644 index 00000000..ab88fbc4 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.p.24.png differ diff --git a/website/images/mapicons/landuse_coniferous.p.32.png b/website/images/mapicons/landuse_coniferous.p.32.png new file mode 100644 index 00000000..97459fce Binary files /dev/null and b/website/images/mapicons/landuse_coniferous.p.32.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.glow.12.png b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.12.png new file mode 100644 index 00000000..b30c8226 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.12.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.glow.16.png b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.16.png new file mode 100644 index 00000000..d9524079 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.16.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.glow.20.png b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.20.png new file mode 100644 index 00000000..b93878dc Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.20.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.glow.24.png b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.24.png new file mode 100644 index 00000000..9ca192ab Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.24.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.glow.32.png b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.32.png new file mode 100644 index 00000000..56ad98da Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.glow.32.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.n.12.png b/website/images/mapicons/landuse_coniferous_and_deciduous.n.12.png new file mode 100644 index 00000000..b0170fb8 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.n.12.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.n.16.png b/website/images/mapicons/landuse_coniferous_and_deciduous.n.16.png new file mode 100644 index 00000000..53e77f5d Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.n.16.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.n.20.png b/website/images/mapicons/landuse_coniferous_and_deciduous.n.20.png new file mode 100644 index 00000000..16890db7 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.n.20.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.n.24.png b/website/images/mapicons/landuse_coniferous_and_deciduous.n.24.png new file mode 100644 index 00000000..80ab2efd Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.n.24.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.n.32.png b/website/images/mapicons/landuse_coniferous_and_deciduous.n.32.png new file mode 100644 index 00000000..4b5adf31 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.n.32.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.p.12.png b/website/images/mapicons/landuse_coniferous_and_deciduous.p.12.png new file mode 100644 index 00000000..b3b066e6 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.p.12.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.p.16.png b/website/images/mapicons/landuse_coniferous_and_deciduous.p.16.png new file mode 100644 index 00000000..d507b2ce Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.p.16.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.p.20.png b/website/images/mapicons/landuse_coniferous_and_deciduous.p.20.png new file mode 100644 index 00000000..29a1780a Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.p.20.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.p.24.png b/website/images/mapicons/landuse_coniferous_and_deciduous.p.24.png new file mode 100644 index 00000000..63a1e910 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.p.24.png differ diff --git a/website/images/mapicons/landuse_coniferous_and_deciduous.p.32.png b/website/images/mapicons/landuse_coniferous_and_deciduous.p.32.png new file mode 100644 index 00000000..d75fe4a2 Binary files /dev/null and b/website/images/mapicons/landuse_coniferous_and_deciduous.p.32.png differ diff --git a/website/images/mapicons/landuse_deciduous.glow.12.png b/website/images/mapicons/landuse_deciduous.glow.12.png new file mode 100644 index 00000000..79ab925b Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.glow.12.png differ diff --git a/website/images/mapicons/landuse_deciduous.glow.16.png b/website/images/mapicons/landuse_deciduous.glow.16.png new file mode 100644 index 00000000..d2d82b07 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.glow.16.png differ diff --git a/website/images/mapicons/landuse_deciduous.glow.20.png b/website/images/mapicons/landuse_deciduous.glow.20.png new file mode 100644 index 00000000..c0a56d9e Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.glow.20.png differ diff --git a/website/images/mapicons/landuse_deciduous.glow.24.png b/website/images/mapicons/landuse_deciduous.glow.24.png new file mode 100644 index 00000000..674bcf62 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.glow.24.png differ diff --git a/website/images/mapicons/landuse_deciduous.glow.32.png b/website/images/mapicons/landuse_deciduous.glow.32.png new file mode 100644 index 00000000..14123a6e Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.glow.32.png differ diff --git a/website/images/mapicons/landuse_deciduous.n.12.png b/website/images/mapicons/landuse_deciduous.n.12.png new file mode 100644 index 00000000..864b9023 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.n.12.png differ diff --git a/website/images/mapicons/landuse_deciduous.n.16.png b/website/images/mapicons/landuse_deciduous.n.16.png new file mode 100644 index 00000000..002ae655 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.n.16.png differ diff --git a/website/images/mapicons/landuse_deciduous.n.20.png b/website/images/mapicons/landuse_deciduous.n.20.png new file mode 100644 index 00000000..ab37a546 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.n.20.png differ diff --git a/website/images/mapicons/landuse_deciduous.n.24.png b/website/images/mapicons/landuse_deciduous.n.24.png new file mode 100644 index 00000000..d4676918 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.n.24.png differ diff --git a/website/images/mapicons/landuse_deciduous.n.32.png b/website/images/mapicons/landuse_deciduous.n.32.png new file mode 100644 index 00000000..5b854cd1 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.n.32.png differ diff --git a/website/images/mapicons/landuse_deciduous.p.12.png b/website/images/mapicons/landuse_deciduous.p.12.png new file mode 100644 index 00000000..d6e9cf1b Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.p.12.png differ diff --git a/website/images/mapicons/landuse_deciduous.p.16.png b/website/images/mapicons/landuse_deciduous.p.16.png new file mode 100644 index 00000000..ed3385dc Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.p.16.png differ diff --git a/website/images/mapicons/landuse_deciduous.p.20.png b/website/images/mapicons/landuse_deciduous.p.20.png new file mode 100644 index 00000000..690eed70 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.p.20.png differ diff --git a/website/images/mapicons/landuse_deciduous.p.24.png b/website/images/mapicons/landuse_deciduous.p.24.png new file mode 100644 index 00000000..88cade72 Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.p.24.png differ diff --git a/website/images/mapicons/landuse_deciduous.p.32.png b/website/images/mapicons/landuse_deciduous.p.32.png new file mode 100644 index 00000000..46f2878e Binary files /dev/null and b/website/images/mapicons/landuse_deciduous.p.32.png differ diff --git a/website/images/mapicons/landuse_grass.glow.12.png b/website/images/mapicons/landuse_grass.glow.12.png new file mode 100644 index 00000000..9a385bf5 Binary files /dev/null and b/website/images/mapicons/landuse_grass.glow.12.png differ diff --git a/website/images/mapicons/landuse_grass.glow.16.png b/website/images/mapicons/landuse_grass.glow.16.png new file mode 100644 index 00000000..397ef648 Binary files /dev/null and b/website/images/mapicons/landuse_grass.glow.16.png differ diff --git a/website/images/mapicons/landuse_grass.glow.20.png b/website/images/mapicons/landuse_grass.glow.20.png new file mode 100644 index 00000000..95942c20 Binary files /dev/null and b/website/images/mapicons/landuse_grass.glow.20.png differ diff --git a/website/images/mapicons/landuse_grass.glow.24.png b/website/images/mapicons/landuse_grass.glow.24.png new file mode 100644 index 00000000..23078cce Binary files /dev/null and b/website/images/mapicons/landuse_grass.glow.24.png differ diff --git a/website/images/mapicons/landuse_grass.glow.32.png b/website/images/mapicons/landuse_grass.glow.32.png new file mode 100644 index 00000000..9f513437 Binary files /dev/null and b/website/images/mapicons/landuse_grass.glow.32.png differ diff --git a/website/images/mapicons/landuse_grass.n.12.png b/website/images/mapicons/landuse_grass.n.12.png new file mode 100644 index 00000000..51a10e7c Binary files /dev/null and b/website/images/mapicons/landuse_grass.n.12.png differ diff --git a/website/images/mapicons/landuse_grass.n.16.png b/website/images/mapicons/landuse_grass.n.16.png new file mode 100644 index 00000000..1b88b8c0 Binary files /dev/null and b/website/images/mapicons/landuse_grass.n.16.png differ diff --git a/website/images/mapicons/landuse_grass.n.20.png b/website/images/mapicons/landuse_grass.n.20.png new file mode 100644 index 00000000..610e4412 Binary files /dev/null and b/website/images/mapicons/landuse_grass.n.20.png differ diff --git a/website/images/mapicons/landuse_grass.n.24.png b/website/images/mapicons/landuse_grass.n.24.png new file mode 100644 index 00000000..181525eb Binary files /dev/null and b/website/images/mapicons/landuse_grass.n.24.png differ diff --git a/website/images/mapicons/landuse_grass.n.32.png b/website/images/mapicons/landuse_grass.n.32.png new file mode 100644 index 00000000..e4a186b7 Binary files /dev/null and b/website/images/mapicons/landuse_grass.n.32.png differ diff --git a/website/images/mapicons/landuse_grass.p.12.png b/website/images/mapicons/landuse_grass.p.12.png new file mode 100644 index 00000000..f3bcfc5b Binary files /dev/null and b/website/images/mapicons/landuse_grass.p.12.png differ diff --git a/website/images/mapicons/landuse_grass.p.16.png b/website/images/mapicons/landuse_grass.p.16.png new file mode 100644 index 00000000..96d86c33 Binary files /dev/null and b/website/images/mapicons/landuse_grass.p.16.png differ diff --git a/website/images/mapicons/landuse_grass.p.20.png b/website/images/mapicons/landuse_grass.p.20.png new file mode 100644 index 00000000..f430d741 Binary files /dev/null and b/website/images/mapicons/landuse_grass.p.20.png differ diff --git a/website/images/mapicons/landuse_grass.p.24.png b/website/images/mapicons/landuse_grass.p.24.png new file mode 100644 index 00000000..f6e46489 Binary files /dev/null and b/website/images/mapicons/landuse_grass.p.24.png differ diff --git a/website/images/mapicons/landuse_grass.p.32.png b/website/images/mapicons/landuse_grass.p.32.png new file mode 100644 index 00000000..6a12df75 Binary files /dev/null and b/website/images/mapicons/landuse_grass.p.32.png differ diff --git a/website/images/mapicons/landuse_grasssvg.glow.12.png b/website/images/mapicons/landuse_grasssvg.glow.12.png new file mode 100644 index 00000000..72f69fa2 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.glow.12.png differ diff --git a/website/images/mapicons/landuse_grasssvg.glow.16.png b/website/images/mapicons/landuse_grasssvg.glow.16.png new file mode 100644 index 00000000..bbb11926 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.glow.16.png differ diff --git a/website/images/mapicons/landuse_grasssvg.glow.20.png b/website/images/mapicons/landuse_grasssvg.glow.20.png new file mode 100644 index 00000000..06a8b7b8 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.glow.20.png differ diff --git a/website/images/mapicons/landuse_grasssvg.glow.24.png b/website/images/mapicons/landuse_grasssvg.glow.24.png new file mode 100644 index 00000000..db234b7e Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.glow.24.png differ diff --git a/website/images/mapicons/landuse_grasssvg.glow.32.png b/website/images/mapicons/landuse_grasssvg.glow.32.png new file mode 100644 index 00000000..f3466b9a Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.glow.32.png differ diff --git a/website/images/mapicons/landuse_grasssvg.n.12.png b/website/images/mapicons/landuse_grasssvg.n.12.png new file mode 100644 index 00000000..1ede33f1 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.n.12.png differ diff --git a/website/images/mapicons/landuse_grasssvg.n.16.png b/website/images/mapicons/landuse_grasssvg.n.16.png new file mode 100644 index 00000000..9d44bcf0 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.n.16.png differ diff --git a/website/images/mapicons/landuse_grasssvg.n.20.png b/website/images/mapicons/landuse_grasssvg.n.20.png new file mode 100644 index 00000000..007fc6ee Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.n.20.png differ diff --git a/website/images/mapicons/landuse_grasssvg.n.24.png b/website/images/mapicons/landuse_grasssvg.n.24.png new file mode 100644 index 00000000..c30c825b Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.n.24.png differ diff --git a/website/images/mapicons/landuse_grasssvg.n.32.png b/website/images/mapicons/landuse_grasssvg.n.32.png new file mode 100644 index 00000000..6030ad10 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.n.32.png differ diff --git a/website/images/mapicons/landuse_grasssvg.p.12.png b/website/images/mapicons/landuse_grasssvg.p.12.png new file mode 100644 index 00000000..01c960ec Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.p.12.png differ diff --git a/website/images/mapicons/landuse_grasssvg.p.16.png b/website/images/mapicons/landuse_grasssvg.p.16.png new file mode 100644 index 00000000..c986b8d4 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.p.16.png differ diff --git a/website/images/mapicons/landuse_grasssvg.p.20.png b/website/images/mapicons/landuse_grasssvg.p.20.png new file mode 100644 index 00000000..9ebf013e Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.p.20.png differ diff --git a/website/images/mapicons/landuse_grasssvg.p.24.png b/website/images/mapicons/landuse_grasssvg.p.24.png new file mode 100644 index 00000000..0b9962a2 Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.p.24.png differ diff --git a/website/images/mapicons/landuse_grasssvg.p.32.png b/website/images/mapicons/landuse_grasssvg.p.32.png new file mode 100644 index 00000000..cb12696a Binary files /dev/null and b/website/images/mapicons/landuse_grasssvg.p.32.png differ diff --git a/website/images/mapicons/landuse_hills.glow.12.png b/website/images/mapicons/landuse_hills.glow.12.png new file mode 100644 index 00000000..131932f2 Binary files /dev/null and b/website/images/mapicons/landuse_hills.glow.12.png differ diff --git a/website/images/mapicons/landuse_hills.glow.16.png b/website/images/mapicons/landuse_hills.glow.16.png new file mode 100644 index 00000000..af574820 Binary files /dev/null and b/website/images/mapicons/landuse_hills.glow.16.png differ diff --git a/website/images/mapicons/landuse_hills.glow.20.png b/website/images/mapicons/landuse_hills.glow.20.png new file mode 100644 index 00000000..a574ead8 Binary files /dev/null and b/website/images/mapicons/landuse_hills.glow.20.png differ diff --git a/website/images/mapicons/landuse_hills.glow.24.png b/website/images/mapicons/landuse_hills.glow.24.png new file mode 100644 index 00000000..60efcb12 Binary files /dev/null and b/website/images/mapicons/landuse_hills.glow.24.png differ diff --git a/website/images/mapicons/landuse_hills.glow.32.png b/website/images/mapicons/landuse_hills.glow.32.png new file mode 100644 index 00000000..73191332 Binary files /dev/null and b/website/images/mapicons/landuse_hills.glow.32.png differ diff --git a/website/images/mapicons/landuse_hills.n.12.png b/website/images/mapicons/landuse_hills.n.12.png new file mode 100644 index 00000000..ec3052f1 Binary files /dev/null and b/website/images/mapicons/landuse_hills.n.12.png differ diff --git a/website/images/mapicons/landuse_hills.n.16.png b/website/images/mapicons/landuse_hills.n.16.png new file mode 100644 index 00000000..fc15078c Binary files /dev/null and b/website/images/mapicons/landuse_hills.n.16.png differ diff --git a/website/images/mapicons/landuse_hills.n.20.png b/website/images/mapicons/landuse_hills.n.20.png new file mode 100644 index 00000000..8db9b5ae Binary files /dev/null and b/website/images/mapicons/landuse_hills.n.20.png differ diff --git a/website/images/mapicons/landuse_hills.n.24.png b/website/images/mapicons/landuse_hills.n.24.png new file mode 100644 index 00000000..76ef539c Binary files /dev/null and b/website/images/mapicons/landuse_hills.n.24.png differ diff --git a/website/images/mapicons/landuse_hills.n.32.png b/website/images/mapicons/landuse_hills.n.32.png new file mode 100644 index 00000000..df15c016 Binary files /dev/null and b/website/images/mapicons/landuse_hills.n.32.png differ diff --git a/website/images/mapicons/landuse_hills.p.12.png b/website/images/mapicons/landuse_hills.p.12.png new file mode 100644 index 00000000..eb81495b Binary files /dev/null and b/website/images/mapicons/landuse_hills.p.12.png differ diff --git a/website/images/mapicons/landuse_hills.p.16.png b/website/images/mapicons/landuse_hills.p.16.png new file mode 100644 index 00000000..f49aa58c Binary files /dev/null and b/website/images/mapicons/landuse_hills.p.16.png differ diff --git a/website/images/mapicons/landuse_hills.p.20.png b/website/images/mapicons/landuse_hills.p.20.png new file mode 100644 index 00000000..3c681fb1 Binary files /dev/null and b/website/images/mapicons/landuse_hills.p.20.png differ diff --git a/website/images/mapicons/landuse_hills.p.24.png b/website/images/mapicons/landuse_hills.p.24.png new file mode 100644 index 00000000..dd4da8e5 Binary files /dev/null and b/website/images/mapicons/landuse_hills.p.24.png differ diff --git a/website/images/mapicons/landuse_hills.p.32.png b/website/images/mapicons/landuse_hills.p.32.png new file mode 100644 index 00000000..1c799ca0 Binary files /dev/null and b/website/images/mapicons/landuse_hills.p.32.png differ diff --git a/website/images/mapicons/landuse_quary.glow.12.png b/website/images/mapicons/landuse_quary.glow.12.png new file mode 100644 index 00000000..681ca35a Binary files /dev/null and b/website/images/mapicons/landuse_quary.glow.12.png differ diff --git a/website/images/mapicons/landuse_quary.glow.16.png b/website/images/mapicons/landuse_quary.glow.16.png new file mode 100644 index 00000000..2acf3d7c Binary files /dev/null and b/website/images/mapicons/landuse_quary.glow.16.png differ diff --git a/website/images/mapicons/landuse_quary.glow.20.png b/website/images/mapicons/landuse_quary.glow.20.png new file mode 100644 index 00000000..c703092c Binary files /dev/null and b/website/images/mapicons/landuse_quary.glow.20.png differ diff --git a/website/images/mapicons/landuse_quary.glow.24.png b/website/images/mapicons/landuse_quary.glow.24.png new file mode 100644 index 00000000..5399bad6 Binary files /dev/null and b/website/images/mapicons/landuse_quary.glow.24.png differ diff --git a/website/images/mapicons/landuse_quary.glow.32.png b/website/images/mapicons/landuse_quary.glow.32.png new file mode 100644 index 00000000..8d691681 Binary files /dev/null and b/website/images/mapicons/landuse_quary.glow.32.png differ diff --git a/website/images/mapicons/landuse_quary.n.12.png b/website/images/mapicons/landuse_quary.n.12.png new file mode 100644 index 00000000..273e2959 Binary files /dev/null and b/website/images/mapicons/landuse_quary.n.12.png differ diff --git a/website/images/mapicons/landuse_quary.n.16.png b/website/images/mapicons/landuse_quary.n.16.png new file mode 100644 index 00000000..51f92f0b Binary files /dev/null and b/website/images/mapicons/landuse_quary.n.16.png differ diff --git a/website/images/mapicons/landuse_quary.n.20.png b/website/images/mapicons/landuse_quary.n.20.png new file mode 100644 index 00000000..897e0289 Binary files /dev/null and b/website/images/mapicons/landuse_quary.n.20.png differ diff --git a/website/images/mapicons/landuse_quary.n.24.png b/website/images/mapicons/landuse_quary.n.24.png new file mode 100644 index 00000000..609eb091 Binary files /dev/null and b/website/images/mapicons/landuse_quary.n.24.png differ diff --git a/website/images/mapicons/landuse_quary.n.32.png b/website/images/mapicons/landuse_quary.n.32.png new file mode 100644 index 00000000..87eefbe1 Binary files /dev/null and b/website/images/mapicons/landuse_quary.n.32.png differ diff --git a/website/images/mapicons/landuse_quary.p.12.png b/website/images/mapicons/landuse_quary.p.12.png new file mode 100644 index 00000000..7d2fdf16 Binary files /dev/null and b/website/images/mapicons/landuse_quary.p.12.png differ diff --git a/website/images/mapicons/landuse_quary.p.16.png b/website/images/mapicons/landuse_quary.p.16.png new file mode 100644 index 00000000..6c41fdbf Binary files /dev/null and b/website/images/mapicons/landuse_quary.p.16.png differ diff --git a/website/images/mapicons/landuse_quary.p.20.png b/website/images/mapicons/landuse_quary.p.20.png new file mode 100644 index 00000000..376c7226 Binary files /dev/null and b/website/images/mapicons/landuse_quary.p.20.png differ diff --git a/website/images/mapicons/landuse_quary.p.24.png b/website/images/mapicons/landuse_quary.p.24.png new file mode 100644 index 00000000..9c41c31e Binary files /dev/null and b/website/images/mapicons/landuse_quary.p.24.png differ diff --git a/website/images/mapicons/landuse_quary.p.32.png b/website/images/mapicons/landuse_quary.p.32.png new file mode 100644 index 00000000..e0237642 Binary files /dev/null and b/website/images/mapicons/landuse_quary.p.32.png differ diff --git a/website/images/mapicons/landuse_scrub.glow.12.png b/website/images/mapicons/landuse_scrub.glow.12.png new file mode 100644 index 00000000..faaea2e8 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.glow.12.png differ diff --git a/website/images/mapicons/landuse_scrub.glow.16.png b/website/images/mapicons/landuse_scrub.glow.16.png new file mode 100644 index 00000000..2415fb5d Binary files /dev/null and b/website/images/mapicons/landuse_scrub.glow.16.png differ diff --git a/website/images/mapicons/landuse_scrub.glow.20.png b/website/images/mapicons/landuse_scrub.glow.20.png new file mode 100644 index 00000000..70f97d0b Binary files /dev/null and b/website/images/mapicons/landuse_scrub.glow.20.png differ diff --git a/website/images/mapicons/landuse_scrub.glow.24.png b/website/images/mapicons/landuse_scrub.glow.24.png new file mode 100644 index 00000000..6f4b913b Binary files /dev/null and b/website/images/mapicons/landuse_scrub.glow.24.png differ diff --git a/website/images/mapicons/landuse_scrub.glow.32.png b/website/images/mapicons/landuse_scrub.glow.32.png new file mode 100644 index 00000000..f1d97111 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.glow.32.png differ diff --git a/website/images/mapicons/landuse_scrub.n.12.png b/website/images/mapicons/landuse_scrub.n.12.png new file mode 100644 index 00000000..1ede33f1 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.n.12.png differ diff --git a/website/images/mapicons/landuse_scrub.n.16.png b/website/images/mapicons/landuse_scrub.n.16.png new file mode 100644 index 00000000..9d44bcf0 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.n.16.png differ diff --git a/website/images/mapicons/landuse_scrub.n.20.png b/website/images/mapicons/landuse_scrub.n.20.png new file mode 100644 index 00000000..007fc6ee Binary files /dev/null and b/website/images/mapicons/landuse_scrub.n.20.png differ diff --git a/website/images/mapicons/landuse_scrub.n.24.png b/website/images/mapicons/landuse_scrub.n.24.png new file mode 100644 index 00000000..c30c825b Binary files /dev/null and b/website/images/mapicons/landuse_scrub.n.24.png differ diff --git a/website/images/mapicons/landuse_scrub.n.32.png b/website/images/mapicons/landuse_scrub.n.32.png new file mode 100644 index 00000000..6030ad10 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.n.32.png differ diff --git a/website/images/mapicons/landuse_scrub.p.12.png b/website/images/mapicons/landuse_scrub.p.12.png new file mode 100644 index 00000000..01c960ec Binary files /dev/null and b/website/images/mapicons/landuse_scrub.p.12.png differ diff --git a/website/images/mapicons/landuse_scrub.p.16.png b/website/images/mapicons/landuse_scrub.p.16.png new file mode 100644 index 00000000..c986b8d4 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.p.16.png differ diff --git a/website/images/mapicons/landuse_scrub.p.20.png b/website/images/mapicons/landuse_scrub.p.20.png new file mode 100644 index 00000000..9ebf013e Binary files /dev/null and b/website/images/mapicons/landuse_scrub.p.20.png differ diff --git a/website/images/mapicons/landuse_scrub.p.24.png b/website/images/mapicons/landuse_scrub.p.24.png new file mode 100644 index 00000000..0b9962a2 Binary files /dev/null and b/website/images/mapicons/landuse_scrub.p.24.png differ diff --git a/website/images/mapicons/landuse_scrub.p.32.png b/website/images/mapicons/landuse_scrub.p.32.png new file mode 100644 index 00000000..cb12696a Binary files /dev/null and b/website/images/mapicons/landuse_scrub.p.32.png differ diff --git a/website/images/mapicons/landuse_swamp.glow.12.png b/website/images/mapicons/landuse_swamp.glow.12.png new file mode 100644 index 00000000..4cbe2829 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.glow.12.png differ diff --git a/website/images/mapicons/landuse_swamp.glow.16.png b/website/images/mapicons/landuse_swamp.glow.16.png new file mode 100644 index 00000000..6cb65425 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.glow.16.png differ diff --git a/website/images/mapicons/landuse_swamp.glow.20.png b/website/images/mapicons/landuse_swamp.glow.20.png new file mode 100644 index 00000000..52261cfb Binary files /dev/null and b/website/images/mapicons/landuse_swamp.glow.20.png differ diff --git a/website/images/mapicons/landuse_swamp.glow.24.png b/website/images/mapicons/landuse_swamp.glow.24.png new file mode 100644 index 00000000..3b318419 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.glow.24.png differ diff --git a/website/images/mapicons/landuse_swamp.glow.32.png b/website/images/mapicons/landuse_swamp.glow.32.png new file mode 100644 index 00000000..69e31cf6 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.glow.32.png differ diff --git a/website/images/mapicons/landuse_swamp.n.12.png b/website/images/mapicons/landuse_swamp.n.12.png new file mode 100644 index 00000000..0b7a08b4 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.n.12.png differ diff --git a/website/images/mapicons/landuse_swamp.n.16.png b/website/images/mapicons/landuse_swamp.n.16.png new file mode 100644 index 00000000..613c9382 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.n.16.png differ diff --git a/website/images/mapicons/landuse_swamp.n.20.png b/website/images/mapicons/landuse_swamp.n.20.png new file mode 100644 index 00000000..bc29e2d6 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.n.20.png differ diff --git a/website/images/mapicons/landuse_swamp.n.24.png b/website/images/mapicons/landuse_swamp.n.24.png new file mode 100644 index 00000000..5d5d7517 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.n.24.png differ diff --git a/website/images/mapicons/landuse_swamp.n.32.png b/website/images/mapicons/landuse_swamp.n.32.png new file mode 100644 index 00000000..037d54c6 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.n.32.png differ diff --git a/website/images/mapicons/landuse_swamp.p.12.png b/website/images/mapicons/landuse_swamp.p.12.png new file mode 100644 index 00000000..4dfa9252 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.p.12.png differ diff --git a/website/images/mapicons/landuse_swamp.p.16.png b/website/images/mapicons/landuse_swamp.p.16.png new file mode 100644 index 00000000..06c35265 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.p.16.png differ diff --git a/website/images/mapicons/landuse_swamp.p.20.png b/website/images/mapicons/landuse_swamp.p.20.png new file mode 100644 index 00000000..d7a22745 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.p.20.png differ diff --git a/website/images/mapicons/landuse_swamp.p.24.png b/website/images/mapicons/landuse_swamp.p.24.png new file mode 100644 index 00000000..8583ae8a Binary files /dev/null and b/website/images/mapicons/landuse_swamp.p.24.png differ diff --git a/website/images/mapicons/landuse_swamp.p.32.png b/website/images/mapicons/landuse_swamp.p.32.png new file mode 100644 index 00000000..3ecb4e78 Binary files /dev/null and b/website/images/mapicons/landuse_swamp.p.32.png differ diff --git a/website/images/mapicons/money_atm.glow.12.png b/website/images/mapicons/money_atm.glow.12.png new file mode 100644 index 00000000..7b32d256 Binary files /dev/null and b/website/images/mapicons/money_atm.glow.12.png differ diff --git a/website/images/mapicons/money_atm.glow.16.png b/website/images/mapicons/money_atm.glow.16.png new file mode 100644 index 00000000..68b756b4 Binary files /dev/null and b/website/images/mapicons/money_atm.glow.16.png differ diff --git a/website/images/mapicons/money_atm.glow.20.png b/website/images/mapicons/money_atm.glow.20.png new file mode 100644 index 00000000..6848f1e3 Binary files /dev/null and b/website/images/mapicons/money_atm.glow.20.png differ diff --git a/website/images/mapicons/money_atm.glow.24.png b/website/images/mapicons/money_atm.glow.24.png new file mode 100644 index 00000000..0818b840 Binary files /dev/null and b/website/images/mapicons/money_atm.glow.24.png differ diff --git a/website/images/mapicons/money_atm.glow.32.png b/website/images/mapicons/money_atm.glow.32.png new file mode 100644 index 00000000..1d027a63 Binary files /dev/null and b/website/images/mapicons/money_atm.glow.32.png differ diff --git a/website/images/mapicons/money_atm.n.12.png b/website/images/mapicons/money_atm.n.12.png new file mode 100644 index 00000000..d49239e2 Binary files /dev/null and b/website/images/mapicons/money_atm.n.12.png differ diff --git a/website/images/mapicons/money_atm.n.16.png b/website/images/mapicons/money_atm.n.16.png new file mode 100644 index 00000000..8656f0c4 Binary files /dev/null and b/website/images/mapicons/money_atm.n.16.png differ diff --git a/website/images/mapicons/money_atm.n.20.png b/website/images/mapicons/money_atm.n.20.png new file mode 100644 index 00000000..d088de80 Binary files /dev/null and b/website/images/mapicons/money_atm.n.20.png differ diff --git a/website/images/mapicons/money_atm.n.24.png b/website/images/mapicons/money_atm.n.24.png new file mode 100644 index 00000000..e081dd52 Binary files /dev/null and b/website/images/mapicons/money_atm.n.24.png differ diff --git a/website/images/mapicons/money_atm.n.32.png b/website/images/mapicons/money_atm.n.32.png new file mode 100644 index 00000000..3190ce9e Binary files /dev/null and b/website/images/mapicons/money_atm.n.32.png differ diff --git a/website/images/mapicons/money_atm.p.12.png b/website/images/mapicons/money_atm.p.12.png new file mode 100644 index 00000000..bddcbe0a Binary files /dev/null and b/website/images/mapicons/money_atm.p.12.png differ diff --git a/website/images/mapicons/money_atm.p.16.png b/website/images/mapicons/money_atm.p.16.png new file mode 100644 index 00000000..0791d15d Binary files /dev/null and b/website/images/mapicons/money_atm.p.16.png differ diff --git a/website/images/mapicons/money_atm.p.20.png b/website/images/mapicons/money_atm.p.20.png new file mode 100644 index 00000000..5cab8f0d Binary files /dev/null and b/website/images/mapicons/money_atm.p.20.png differ diff --git a/website/images/mapicons/money_atm.p.24.png b/website/images/mapicons/money_atm.p.24.png new file mode 100644 index 00000000..49272ab5 Binary files /dev/null and b/website/images/mapicons/money_atm.p.24.png differ diff --git a/website/images/mapicons/money_atm.p.32.png b/website/images/mapicons/money_atm.p.32.png new file mode 100644 index 00000000..78651b45 Binary files /dev/null and b/website/images/mapicons/money_atm.p.32.png differ diff --git a/website/images/mapicons/money_atm2.glow.12.png b/website/images/mapicons/money_atm2.glow.12.png new file mode 100644 index 00000000..acc221cf Binary files /dev/null and b/website/images/mapicons/money_atm2.glow.12.png differ diff --git a/website/images/mapicons/money_atm2.glow.16.png b/website/images/mapicons/money_atm2.glow.16.png new file mode 100644 index 00000000..a0514681 Binary files /dev/null and b/website/images/mapicons/money_atm2.glow.16.png differ diff --git a/website/images/mapicons/money_atm2.glow.20.png b/website/images/mapicons/money_atm2.glow.20.png new file mode 100644 index 00000000..2fda7833 Binary files /dev/null and b/website/images/mapicons/money_atm2.glow.20.png differ diff --git a/website/images/mapicons/money_atm2.glow.24.png b/website/images/mapicons/money_atm2.glow.24.png new file mode 100644 index 00000000..287b6e48 Binary files /dev/null and b/website/images/mapicons/money_atm2.glow.24.png differ diff --git a/website/images/mapicons/money_atm2.glow.32.png b/website/images/mapicons/money_atm2.glow.32.png new file mode 100644 index 00000000..cd7eeafb Binary files /dev/null and b/website/images/mapicons/money_atm2.glow.32.png differ diff --git a/website/images/mapicons/money_atm2.n.12.png b/website/images/mapicons/money_atm2.n.12.png new file mode 100644 index 00000000..e6999609 Binary files /dev/null and b/website/images/mapicons/money_atm2.n.12.png differ diff --git a/website/images/mapicons/money_atm2.n.16.png b/website/images/mapicons/money_atm2.n.16.png new file mode 100644 index 00000000..16c51a60 Binary files /dev/null and b/website/images/mapicons/money_atm2.n.16.png differ diff --git a/website/images/mapicons/money_atm2.n.20.png b/website/images/mapicons/money_atm2.n.20.png new file mode 100644 index 00000000..7a60464d Binary files /dev/null and b/website/images/mapicons/money_atm2.n.20.png differ diff --git a/website/images/mapicons/money_atm2.n.24.png b/website/images/mapicons/money_atm2.n.24.png new file mode 100644 index 00000000..fd25942b Binary files /dev/null and b/website/images/mapicons/money_atm2.n.24.png differ diff --git a/website/images/mapicons/money_atm2.n.32.png b/website/images/mapicons/money_atm2.n.32.png new file mode 100644 index 00000000..c67c4469 Binary files /dev/null and b/website/images/mapicons/money_atm2.n.32.png differ diff --git a/website/images/mapicons/money_atm2.p.12.png b/website/images/mapicons/money_atm2.p.12.png new file mode 100644 index 00000000..349f326c Binary files /dev/null and b/website/images/mapicons/money_atm2.p.12.png differ diff --git a/website/images/mapicons/money_atm2.p.16.png b/website/images/mapicons/money_atm2.p.16.png new file mode 100644 index 00000000..5ff5c8fb Binary files /dev/null and b/website/images/mapicons/money_atm2.p.16.png differ diff --git a/website/images/mapicons/money_atm2.p.20.png b/website/images/mapicons/money_atm2.p.20.png new file mode 100644 index 00000000..9e9a9f36 Binary files /dev/null and b/website/images/mapicons/money_atm2.p.20.png differ diff --git a/website/images/mapicons/money_atm2.p.24.png b/website/images/mapicons/money_atm2.p.24.png new file mode 100644 index 00000000..1f9dde5e Binary files /dev/null and b/website/images/mapicons/money_atm2.p.24.png differ diff --git a/website/images/mapicons/money_atm2.p.32.png b/website/images/mapicons/money_atm2.p.32.png new file mode 100644 index 00000000..c03cbbdc Binary files /dev/null and b/website/images/mapicons/money_atm2.p.32.png differ diff --git a/website/images/mapicons/money_bank.glow.12.png b/website/images/mapicons/money_bank.glow.12.png new file mode 100644 index 00000000..60e3b84f Binary files /dev/null and b/website/images/mapicons/money_bank.glow.12.png differ diff --git a/website/images/mapicons/money_bank.glow.16.png b/website/images/mapicons/money_bank.glow.16.png new file mode 100644 index 00000000..383c0699 Binary files /dev/null and b/website/images/mapicons/money_bank.glow.16.png differ diff --git a/website/images/mapicons/money_bank.glow.20.png b/website/images/mapicons/money_bank.glow.20.png new file mode 100644 index 00000000..ff029574 Binary files /dev/null and b/website/images/mapicons/money_bank.glow.20.png differ diff --git a/website/images/mapicons/money_bank.glow.24.png b/website/images/mapicons/money_bank.glow.24.png new file mode 100644 index 00000000..4e68d667 Binary files /dev/null and b/website/images/mapicons/money_bank.glow.24.png differ diff --git a/website/images/mapicons/money_bank.glow.32.png b/website/images/mapicons/money_bank.glow.32.png new file mode 100644 index 00000000..5563b2a4 Binary files /dev/null and b/website/images/mapicons/money_bank.glow.32.png differ diff --git a/website/images/mapicons/money_bank.n.12.png b/website/images/mapicons/money_bank.n.12.png new file mode 100644 index 00000000..feb19f15 Binary files /dev/null and b/website/images/mapicons/money_bank.n.12.png differ diff --git a/website/images/mapicons/money_bank.n.16.png b/website/images/mapicons/money_bank.n.16.png new file mode 100644 index 00000000..02a45c93 Binary files /dev/null and b/website/images/mapicons/money_bank.n.16.png differ diff --git a/website/images/mapicons/money_bank.n.20.png b/website/images/mapicons/money_bank.n.20.png new file mode 100644 index 00000000..d8092940 Binary files /dev/null and b/website/images/mapicons/money_bank.n.20.png differ diff --git a/website/images/mapicons/money_bank.n.24.png b/website/images/mapicons/money_bank.n.24.png new file mode 100644 index 00000000..d292ce7e Binary files /dev/null and b/website/images/mapicons/money_bank.n.24.png differ diff --git a/website/images/mapicons/money_bank.n.32.png b/website/images/mapicons/money_bank.n.32.png new file mode 100644 index 00000000..725ee5ce Binary files /dev/null and b/website/images/mapicons/money_bank.n.32.png differ diff --git a/website/images/mapicons/money_bank.p.12.png b/website/images/mapicons/money_bank.p.12.png new file mode 100644 index 00000000..c16e4629 Binary files /dev/null and b/website/images/mapicons/money_bank.p.12.png differ diff --git a/website/images/mapicons/money_bank.p.16.png b/website/images/mapicons/money_bank.p.16.png new file mode 100644 index 00000000..525f811a Binary files /dev/null and b/website/images/mapicons/money_bank.p.16.png differ diff --git a/website/images/mapicons/money_bank.p.20.png b/website/images/mapicons/money_bank.p.20.png new file mode 100644 index 00000000..55fc566c Binary files /dev/null and b/website/images/mapicons/money_bank.p.20.png differ diff --git a/website/images/mapicons/money_bank.p.24.png b/website/images/mapicons/money_bank.p.24.png new file mode 100644 index 00000000..7812e4e2 Binary files /dev/null and b/website/images/mapicons/money_bank.p.24.png differ diff --git a/website/images/mapicons/money_bank.p.32.png b/website/images/mapicons/money_bank.p.32.png new file mode 100644 index 00000000..02bac61e Binary files /dev/null and b/website/images/mapicons/money_bank.p.32.png differ diff --git a/website/images/mapicons/money_bank2.glow.12.png b/website/images/mapicons/money_bank2.glow.12.png new file mode 100644 index 00000000..a75e2967 Binary files /dev/null and b/website/images/mapicons/money_bank2.glow.12.png differ diff --git a/website/images/mapicons/money_bank2.glow.16.png b/website/images/mapicons/money_bank2.glow.16.png new file mode 100644 index 00000000..f5bf4852 Binary files /dev/null and b/website/images/mapicons/money_bank2.glow.16.png differ diff --git a/website/images/mapicons/money_bank2.glow.20.png b/website/images/mapicons/money_bank2.glow.20.png new file mode 100644 index 00000000..76d8f750 Binary files /dev/null and b/website/images/mapicons/money_bank2.glow.20.png differ diff --git a/website/images/mapicons/money_bank2.glow.24.png b/website/images/mapicons/money_bank2.glow.24.png new file mode 100644 index 00000000..35ef9876 Binary files /dev/null and b/website/images/mapicons/money_bank2.glow.24.png differ diff --git a/website/images/mapicons/money_bank2.glow.32.png b/website/images/mapicons/money_bank2.glow.32.png new file mode 100644 index 00000000..cf23e980 Binary files /dev/null and b/website/images/mapicons/money_bank2.glow.32.png differ diff --git a/website/images/mapicons/money_bank2.n.12.png b/website/images/mapicons/money_bank2.n.12.png new file mode 100644 index 00000000..1b01bfb2 Binary files /dev/null and b/website/images/mapicons/money_bank2.n.12.png differ diff --git a/website/images/mapicons/money_bank2.n.16.png b/website/images/mapicons/money_bank2.n.16.png new file mode 100644 index 00000000..7264bcbc Binary files /dev/null and b/website/images/mapicons/money_bank2.n.16.png differ diff --git a/website/images/mapicons/money_bank2.n.20.png b/website/images/mapicons/money_bank2.n.20.png new file mode 100644 index 00000000..944c52d2 Binary files /dev/null and b/website/images/mapicons/money_bank2.n.20.png differ diff --git a/website/images/mapicons/money_bank2.n.24.png b/website/images/mapicons/money_bank2.n.24.png new file mode 100644 index 00000000..873adc71 Binary files /dev/null and b/website/images/mapicons/money_bank2.n.24.png differ diff --git a/website/images/mapicons/money_bank2.n.32.png b/website/images/mapicons/money_bank2.n.32.png new file mode 100644 index 00000000..f4199e6f Binary files /dev/null and b/website/images/mapicons/money_bank2.n.32.png differ diff --git a/website/images/mapicons/money_bank2.p.12.png b/website/images/mapicons/money_bank2.p.12.png new file mode 100644 index 00000000..c56e2700 Binary files /dev/null and b/website/images/mapicons/money_bank2.p.12.png differ diff --git a/website/images/mapicons/money_bank2.p.16.png b/website/images/mapicons/money_bank2.p.16.png new file mode 100644 index 00000000..a2de0265 Binary files /dev/null and b/website/images/mapicons/money_bank2.p.16.png differ diff --git a/website/images/mapicons/money_bank2.p.20.png b/website/images/mapicons/money_bank2.p.20.png new file mode 100644 index 00000000..45f76044 Binary files /dev/null and b/website/images/mapicons/money_bank2.p.20.png differ diff --git a/website/images/mapicons/money_bank2.p.24.png b/website/images/mapicons/money_bank2.p.24.png new file mode 100644 index 00000000..f8a56dc6 Binary files /dev/null and b/website/images/mapicons/money_bank2.p.24.png differ diff --git a/website/images/mapicons/money_bank2.p.32.png b/website/images/mapicons/money_bank2.p.32.png new file mode 100644 index 00000000..7314a4a4 Binary files /dev/null and b/website/images/mapicons/money_bank2.p.32.png differ diff --git a/website/images/mapicons/money_currency_exchange.glow.12.png b/website/images/mapicons/money_currency_exchange.glow.12.png new file mode 100644 index 00000000..8d0566f5 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.glow.12.png differ diff --git a/website/images/mapicons/money_currency_exchange.glow.16.png b/website/images/mapicons/money_currency_exchange.glow.16.png new file mode 100644 index 00000000..339cbd12 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.glow.16.png differ diff --git a/website/images/mapicons/money_currency_exchange.glow.20.png b/website/images/mapicons/money_currency_exchange.glow.20.png new file mode 100644 index 00000000..acd96330 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.glow.20.png differ diff --git a/website/images/mapicons/money_currency_exchange.glow.24.png b/website/images/mapicons/money_currency_exchange.glow.24.png new file mode 100644 index 00000000..ecdaa876 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.glow.24.png differ diff --git a/website/images/mapicons/money_currency_exchange.glow.32.png b/website/images/mapicons/money_currency_exchange.glow.32.png new file mode 100644 index 00000000..7ec0d78a Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.glow.32.png differ diff --git a/website/images/mapicons/money_currency_exchange.n.12.png b/website/images/mapicons/money_currency_exchange.n.12.png new file mode 100644 index 00000000..14ca4dc9 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.n.12.png differ diff --git a/website/images/mapicons/money_currency_exchange.n.16.png b/website/images/mapicons/money_currency_exchange.n.16.png new file mode 100644 index 00000000..3bf6dab6 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.n.16.png differ diff --git a/website/images/mapicons/money_currency_exchange.n.20.png b/website/images/mapicons/money_currency_exchange.n.20.png new file mode 100644 index 00000000..8fd40ff3 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.n.20.png differ diff --git a/website/images/mapicons/money_currency_exchange.n.24.png b/website/images/mapicons/money_currency_exchange.n.24.png new file mode 100644 index 00000000..2c35db08 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.n.24.png differ diff --git a/website/images/mapicons/money_currency_exchange.n.32.png b/website/images/mapicons/money_currency_exchange.n.32.png new file mode 100644 index 00000000..2bf0435b Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.n.32.png differ diff --git a/website/images/mapicons/money_currency_exchange.p.12.png b/website/images/mapicons/money_currency_exchange.p.12.png new file mode 100644 index 00000000..01fe84c7 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.p.12.png differ diff --git a/website/images/mapicons/money_currency_exchange.p.16.png b/website/images/mapicons/money_currency_exchange.p.16.png new file mode 100644 index 00000000..cc605d46 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.p.16.png differ diff --git a/website/images/mapicons/money_currency_exchange.p.20.png b/website/images/mapicons/money_currency_exchange.p.20.png new file mode 100644 index 00000000..6f8fb600 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.p.20.png differ diff --git a/website/images/mapicons/money_currency_exchange.p.24.png b/website/images/mapicons/money_currency_exchange.p.24.png new file mode 100644 index 00000000..77faae6f Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.p.24.png differ diff --git a/website/images/mapicons/money_currency_exchange.p.32.png b/website/images/mapicons/money_currency_exchange.p.32.png new file mode 100644 index 00000000..33bf38b2 Binary files /dev/null and b/website/images/mapicons/money_currency_exchange.p.32.png differ diff --git a/website/images/mapicons/place_of_worship.glow.12.png b/website/images/mapicons/place_of_worship.glow.12.png new file mode 100644 index 00000000..143fffd3 Binary files /dev/null and b/website/images/mapicons/place_of_worship.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship.glow.16.png b/website/images/mapicons/place_of_worship.glow.16.png new file mode 100644 index 00000000..bb0ae77d Binary files /dev/null and b/website/images/mapicons/place_of_worship.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship.glow.20.png b/website/images/mapicons/place_of_worship.glow.20.png new file mode 100644 index 00000000..86ab7be9 Binary files /dev/null and b/website/images/mapicons/place_of_worship.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship.glow.24.png b/website/images/mapicons/place_of_worship.glow.24.png new file mode 100644 index 00000000..a5cfb85e Binary files /dev/null and b/website/images/mapicons/place_of_worship.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship.glow.32.png b/website/images/mapicons/place_of_worship.glow.32.png new file mode 100644 index 00000000..e4dd8ebf Binary files /dev/null and b/website/images/mapicons/place_of_worship.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship.n.12.png b/website/images/mapicons/place_of_worship.n.12.png new file mode 100644 index 00000000..66130ca9 Binary files /dev/null and b/website/images/mapicons/place_of_worship.n.12.png differ diff --git a/website/images/mapicons/place_of_worship.n.16.png b/website/images/mapicons/place_of_worship.n.16.png new file mode 100644 index 00000000..3aad90ee Binary files /dev/null and b/website/images/mapicons/place_of_worship.n.16.png differ diff --git a/website/images/mapicons/place_of_worship.n.20.png b/website/images/mapicons/place_of_worship.n.20.png new file mode 100644 index 00000000..7e66b50b Binary files /dev/null and b/website/images/mapicons/place_of_worship.n.20.png differ diff --git a/website/images/mapicons/place_of_worship.n.24.png b/website/images/mapicons/place_of_worship.n.24.png new file mode 100644 index 00000000..8ad9f3ab Binary files /dev/null and b/website/images/mapicons/place_of_worship.n.24.png differ diff --git a/website/images/mapicons/place_of_worship.n.32.png b/website/images/mapicons/place_of_worship.n.32.png new file mode 100644 index 00000000..95385c7b Binary files /dev/null and b/website/images/mapicons/place_of_worship.n.32.png differ diff --git a/website/images/mapicons/place_of_worship.p.12.png b/website/images/mapicons/place_of_worship.p.12.png new file mode 100644 index 00000000..6d48361b Binary files /dev/null and b/website/images/mapicons/place_of_worship.p.12.png differ diff --git a/website/images/mapicons/place_of_worship.p.16.png b/website/images/mapicons/place_of_worship.p.16.png new file mode 100644 index 00000000..f471621f Binary files /dev/null and b/website/images/mapicons/place_of_worship.p.16.png differ diff --git a/website/images/mapicons/place_of_worship.p.20.png b/website/images/mapicons/place_of_worship.p.20.png new file mode 100644 index 00000000..27695c1f Binary files /dev/null and b/website/images/mapicons/place_of_worship.p.20.png differ diff --git a/website/images/mapicons/place_of_worship.p.24.png b/website/images/mapicons/place_of_worship.p.24.png new file mode 100644 index 00000000..09e81f62 Binary files /dev/null and b/website/images/mapicons/place_of_worship.p.24.png differ diff --git a/website/images/mapicons/place_of_worship.p.32.png b/website/images/mapicons/place_of_worship.p.32.png new file mode 100644 index 00000000..ea30af58 Binary files /dev/null and b/website/images/mapicons/place_of_worship.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.glow.12.png b/website/images/mapicons/place_of_worship_bahai.glow.12.png new file mode 100644 index 00000000..73ebee8c Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.glow.16.png b/website/images/mapicons/place_of_worship_bahai.glow.16.png new file mode 100644 index 00000000..ea52aac9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.glow.20.png b/website/images/mapicons/place_of_worship_bahai.glow.20.png new file mode 100644 index 00000000..05525c0a Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.glow.24.png b/website/images/mapicons/place_of_worship_bahai.glow.24.png new file mode 100644 index 00000000..103c81b6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.glow.32.png b/website/images/mapicons/place_of_worship_bahai.glow.32.png new file mode 100644 index 00000000..5a97e404 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.n.12.png b/website/images/mapicons/place_of_worship_bahai.n.12.png new file mode 100644 index 00000000..62b1be4e Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.n.16.png b/website/images/mapicons/place_of_worship_bahai.n.16.png new file mode 100644 index 00000000..5f63a435 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.n.20.png b/website/images/mapicons/place_of_worship_bahai.n.20.png new file mode 100644 index 00000000..d123ab83 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.n.24.png b/website/images/mapicons/place_of_worship_bahai.n.24.png new file mode 100644 index 00000000..df1ce56a Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.n.32.png b/website/images/mapicons/place_of_worship_bahai.n.32.png new file mode 100644 index 00000000..40929d56 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.p.12.png b/website/images/mapicons/place_of_worship_bahai.p.12.png new file mode 100644 index 00000000..4e95454e Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.p.16.png b/website/images/mapicons/place_of_worship_bahai.p.16.png new file mode 100644 index 00000000..68655a2f Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.p.20.png b/website/images/mapicons/place_of_worship_bahai.p.20.png new file mode 100644 index 00000000..888aed19 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.p.24.png b/website/images/mapicons/place_of_worship_bahai.p.24.png new file mode 100644 index 00000000..291411b1 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai.p.32.png b/website/images/mapicons/place_of_worship_bahai.p.32.png new file mode 100644 index 00000000..9b4c3e13 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.glow.12.png b/website/images/mapicons/place_of_worship_bahai3.glow.12.png new file mode 100644 index 00000000..b8efba30 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.glow.16.png b/website/images/mapicons/place_of_worship_bahai3.glow.16.png new file mode 100644 index 00000000..db9fceff Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.glow.20.png b/website/images/mapicons/place_of_worship_bahai3.glow.20.png new file mode 100644 index 00000000..c350b0fa Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.glow.24.png b/website/images/mapicons/place_of_worship_bahai3.glow.24.png new file mode 100644 index 00000000..754ffdfc Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.glow.32.png b/website/images/mapicons/place_of_worship_bahai3.glow.32.png new file mode 100644 index 00000000..d53b9d9f Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.n.12.png b/website/images/mapicons/place_of_worship_bahai3.n.12.png new file mode 100644 index 00000000..5d787a1b Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.n.16.png b/website/images/mapicons/place_of_worship_bahai3.n.16.png new file mode 100644 index 00000000..5911941d Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.n.20.png b/website/images/mapicons/place_of_worship_bahai3.n.20.png new file mode 100644 index 00000000..0a1d5ded Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.n.24.png b/website/images/mapicons/place_of_worship_bahai3.n.24.png new file mode 100644 index 00000000..89828bb0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.n.32.png b/website/images/mapicons/place_of_worship_bahai3.n.32.png new file mode 100644 index 00000000..a4430b0d Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.p.12.png b/website/images/mapicons/place_of_worship_bahai3.p.12.png new file mode 100644 index 00000000..44fa2b36 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.p.16.png b/website/images/mapicons/place_of_worship_bahai3.p.16.png new file mode 100644 index 00000000..cf16105e Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.p.20.png b/website/images/mapicons/place_of_worship_bahai3.p.20.png new file mode 100644 index 00000000..0f68d3ae Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.p.24.png b/website/images/mapicons/place_of_worship_bahai3.p.24.png new file mode 100644 index 00000000..1e58870c Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_bahai3.p.32.png b/website/images/mapicons/place_of_worship_bahai3.p.32.png new file mode 100644 index 00000000..29452068 Binary files /dev/null and b/website/images/mapicons/place_of_worship_bahai3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.glow.12.png b/website/images/mapicons/place_of_worship_buddhist.glow.12.png new file mode 100644 index 00000000..cd6b3d0c Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.glow.16.png b/website/images/mapicons/place_of_worship_buddhist.glow.16.png new file mode 100644 index 00000000..1bffe75c Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.glow.20.png b/website/images/mapicons/place_of_worship_buddhist.glow.20.png new file mode 100644 index 00000000..8f73dba0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.glow.24.png b/website/images/mapicons/place_of_worship_buddhist.glow.24.png new file mode 100644 index 00000000..9e592900 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.glow.32.png b/website/images/mapicons/place_of_worship_buddhist.glow.32.png new file mode 100644 index 00000000..30d0d692 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.n.12.png b/website/images/mapicons/place_of_worship_buddhist.n.12.png new file mode 100644 index 00000000..db2b9032 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.n.16.png b/website/images/mapicons/place_of_worship_buddhist.n.16.png new file mode 100644 index 00000000..cdb17f31 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.n.20.png b/website/images/mapicons/place_of_worship_buddhist.n.20.png new file mode 100644 index 00000000..03d75dd0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.n.24.png b/website/images/mapicons/place_of_worship_buddhist.n.24.png new file mode 100644 index 00000000..0e3a29e9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.n.32.png b/website/images/mapicons/place_of_worship_buddhist.n.32.png new file mode 100644 index 00000000..959494ea Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.p.12.png b/website/images/mapicons/place_of_worship_buddhist.p.12.png new file mode 100644 index 00000000..6417d6be Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.p.16.png b/website/images/mapicons/place_of_worship_buddhist.p.16.png new file mode 100644 index 00000000..2a4f2006 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.p.20.png b/website/images/mapicons/place_of_worship_buddhist.p.20.png new file mode 100644 index 00000000..86ebcd30 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.p.24.png b/website/images/mapicons/place_of_worship_buddhist.p.24.png new file mode 100644 index 00000000..5fbc1d7a Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist.p.32.png b/website/images/mapicons/place_of_worship_buddhist.p.32.png new file mode 100644 index 00000000..716aaed6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.glow.12.png b/website/images/mapicons/place_of_worship_buddhist3.glow.12.png new file mode 100644 index 00000000..8c30d1ea Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.glow.16.png b/website/images/mapicons/place_of_worship_buddhist3.glow.16.png new file mode 100644 index 00000000..866e5053 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.glow.20.png b/website/images/mapicons/place_of_worship_buddhist3.glow.20.png new file mode 100644 index 00000000..533e8eb7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.glow.24.png b/website/images/mapicons/place_of_worship_buddhist3.glow.24.png new file mode 100644 index 00000000..375617be Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.glow.32.png b/website/images/mapicons/place_of_worship_buddhist3.glow.32.png new file mode 100644 index 00000000..e814842c Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.n.12.png b/website/images/mapicons/place_of_worship_buddhist3.n.12.png new file mode 100644 index 00000000..1bd66feb Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.n.16.png b/website/images/mapicons/place_of_worship_buddhist3.n.16.png new file mode 100644 index 00000000..f61d02de Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.n.20.png b/website/images/mapicons/place_of_worship_buddhist3.n.20.png new file mode 100644 index 00000000..43b8a273 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.n.24.png b/website/images/mapicons/place_of_worship_buddhist3.n.24.png new file mode 100644 index 00000000..0d0f2918 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.n.32.png b/website/images/mapicons/place_of_worship_buddhist3.n.32.png new file mode 100644 index 00000000..c59c892a Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.p.12.png b/website/images/mapicons/place_of_worship_buddhist3.p.12.png new file mode 100644 index 00000000..d93479bb Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.p.16.png b/website/images/mapicons/place_of_worship_buddhist3.p.16.png new file mode 100644 index 00000000..4f03dd4b Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.p.20.png b/website/images/mapicons/place_of_worship_buddhist3.p.20.png new file mode 100644 index 00000000..3008cd74 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.p.24.png b/website/images/mapicons/place_of_worship_buddhist3.p.24.png new file mode 100644 index 00000000..669c52b4 Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_buddhist3.p.32.png b/website/images/mapicons/place_of_worship_buddhist3.p.32.png new file mode 100644 index 00000000..b1f0eeff Binary files /dev/null and b/website/images/mapicons/place_of_worship_buddhist3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian.glow.12.png b/website/images/mapicons/place_of_worship_christian.glow.12.png new file mode 100644 index 00000000..e0176306 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian.glow.16.png b/website/images/mapicons/place_of_worship_christian.glow.16.png new file mode 100644 index 00000000..e286a156 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian.glow.20.png b/website/images/mapicons/place_of_worship_christian.glow.20.png new file mode 100644 index 00000000..c86b4ee9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian.glow.24.png b/website/images/mapicons/place_of_worship_christian.glow.24.png new file mode 100644 index 00000000..84de691d Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian.glow.32.png b/website/images/mapicons/place_of_worship_christian.glow.32.png new file mode 100644 index 00000000..7bcb48fb Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian.n.12.png b/website/images/mapicons/place_of_worship_christian.n.12.png new file mode 100644 index 00000000..c434cdeb Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian.n.16.png b/website/images/mapicons/place_of_worship_christian.n.16.png new file mode 100644 index 00000000..b34c4a2d Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian.n.20.png b/website/images/mapicons/place_of_worship_christian.n.20.png new file mode 100644 index 00000000..44f78e35 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian.n.24.png b/website/images/mapicons/place_of_worship_christian.n.24.png new file mode 100644 index 00000000..5839386f Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian.n.32.png b/website/images/mapicons/place_of_worship_christian.n.32.png new file mode 100644 index 00000000..67bc8669 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian.p.12.png b/website/images/mapicons/place_of_worship_christian.p.12.png new file mode 100644 index 00000000..0a91cbca Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian.p.16.png b/website/images/mapicons/place_of_worship_christian.p.16.png new file mode 100644 index 00000000..87fea49e Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian.p.20.png b/website/images/mapicons/place_of_worship_christian.p.20.png new file mode 100644 index 00000000..22a73183 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian.p.24.png b/website/images/mapicons/place_of_worship_christian.p.24.png new file mode 100644 index 00000000..fd579bd5 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian.p.32.png b/website/images/mapicons/place_of_worship_christian.p.32.png new file mode 100644 index 00000000..9be6d7eb Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.glow.12.png b/website/images/mapicons/place_of_worship_christian3.glow.12.png new file mode 100644 index 00000000..43ad02f4 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.glow.16.png b/website/images/mapicons/place_of_worship_christian3.glow.16.png new file mode 100644 index 00000000..4237c5f3 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.glow.20.png b/website/images/mapicons/place_of_worship_christian3.glow.20.png new file mode 100644 index 00000000..5a42f8cc Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.glow.24.png b/website/images/mapicons/place_of_worship_christian3.glow.24.png new file mode 100644 index 00000000..d00d4397 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.glow.32.png b/website/images/mapicons/place_of_worship_christian3.glow.32.png new file mode 100644 index 00000000..926f1aa7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.n.12.png b/website/images/mapicons/place_of_worship_christian3.n.12.png new file mode 100644 index 00000000..5c5c4904 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.n.16.png b/website/images/mapicons/place_of_worship_christian3.n.16.png new file mode 100644 index 00000000..7ed915a7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.n.20.png b/website/images/mapicons/place_of_worship_christian3.n.20.png new file mode 100644 index 00000000..4ba68ebd Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.n.24.png b/website/images/mapicons/place_of_worship_christian3.n.24.png new file mode 100644 index 00000000..45c9f4e0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.n.32.png b/website/images/mapicons/place_of_worship_christian3.n.32.png new file mode 100644 index 00000000..9514ef3e Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.p.12.png b/website/images/mapicons/place_of_worship_christian3.p.12.png new file mode 100644 index 00000000..2f1e9a82 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.p.16.png b/website/images/mapicons/place_of_worship_christian3.p.16.png new file mode 100644 index 00000000..450edff8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.p.20.png b/website/images/mapicons/place_of_worship_christian3.p.20.png new file mode 100644 index 00000000..21ead796 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.p.24.png b/website/images/mapicons/place_of_worship_christian3.p.24.png new file mode 100644 index 00000000..b9629b81 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_christian3.p.32.png b/website/images/mapicons/place_of_worship_christian3.p.32.png new file mode 100644 index 00000000..b454a024 Binary files /dev/null and b/website/images/mapicons/place_of_worship_christian3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.glow.12.png b/website/images/mapicons/place_of_worship_hindu.glow.12.png new file mode 100644 index 00000000..633f954a Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.glow.16.png b/website/images/mapicons/place_of_worship_hindu.glow.16.png new file mode 100644 index 00000000..4b5bbfb9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.glow.20.png b/website/images/mapicons/place_of_worship_hindu.glow.20.png new file mode 100644 index 00000000..ff683228 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.glow.24.png b/website/images/mapicons/place_of_worship_hindu.glow.24.png new file mode 100644 index 00000000..cec8823e Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.glow.32.png b/website/images/mapicons/place_of_worship_hindu.glow.32.png new file mode 100644 index 00000000..5ded3d09 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.n.12.png b/website/images/mapicons/place_of_worship_hindu.n.12.png new file mode 100644 index 00000000..d47dbb95 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.n.16.png b/website/images/mapicons/place_of_worship_hindu.n.16.png new file mode 100644 index 00000000..6622694b Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.n.20.png b/website/images/mapicons/place_of_worship_hindu.n.20.png new file mode 100644 index 00000000..60838e66 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.n.24.png b/website/images/mapicons/place_of_worship_hindu.n.24.png new file mode 100644 index 00000000..7feebdee Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.n.32.png b/website/images/mapicons/place_of_worship_hindu.n.32.png new file mode 100644 index 00000000..53e165e0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.p.12.png b/website/images/mapicons/place_of_worship_hindu.p.12.png new file mode 100644 index 00000000..16fdd5b9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.p.16.png b/website/images/mapicons/place_of_worship_hindu.p.16.png new file mode 100644 index 00000000..98cdbe96 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.p.20.png b/website/images/mapicons/place_of_worship_hindu.p.20.png new file mode 100644 index 00000000..6e42ccd8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.p.24.png b/website/images/mapicons/place_of_worship_hindu.p.24.png new file mode 100644 index 00000000..f6788ed9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu.p.32.png b/website/images/mapicons/place_of_worship_hindu.p.32.png new file mode 100644 index 00000000..541c8412 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.glow.12.png b/website/images/mapicons/place_of_worship_hindu3.glow.12.png new file mode 100644 index 00000000..d48ca2b2 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.glow.16.png b/website/images/mapicons/place_of_worship_hindu3.glow.16.png new file mode 100644 index 00000000..a8df9b52 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.glow.20.png b/website/images/mapicons/place_of_worship_hindu3.glow.20.png new file mode 100644 index 00000000..ef155f17 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.glow.24.png b/website/images/mapicons/place_of_worship_hindu3.glow.24.png new file mode 100644 index 00000000..b262ec83 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.glow.32.png b/website/images/mapicons/place_of_worship_hindu3.glow.32.png new file mode 100644 index 00000000..e8a4a4be Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.n.12.png b/website/images/mapicons/place_of_worship_hindu3.n.12.png new file mode 100644 index 00000000..5a03b45e Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.n.16.png b/website/images/mapicons/place_of_worship_hindu3.n.16.png new file mode 100644 index 00000000..2c5903e1 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.n.20.png b/website/images/mapicons/place_of_worship_hindu3.n.20.png new file mode 100644 index 00000000..f947e9cc Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.n.24.png b/website/images/mapicons/place_of_worship_hindu3.n.24.png new file mode 100644 index 00000000..aef8943f Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.n.32.png b/website/images/mapicons/place_of_worship_hindu3.n.32.png new file mode 100644 index 00000000..65f53b87 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.p.12.png b/website/images/mapicons/place_of_worship_hindu3.p.12.png new file mode 100644 index 00000000..2a9e789c Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.p.16.png b/website/images/mapicons/place_of_worship_hindu3.p.16.png new file mode 100644 index 00000000..2e626e8a Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.p.20.png b/website/images/mapicons/place_of_worship_hindu3.p.20.png new file mode 100644 index 00000000..e9b71305 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.p.24.png b/website/images/mapicons/place_of_worship_hindu3.p.24.png new file mode 100644 index 00000000..5b4b4057 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_hindu3.p.32.png b/website/images/mapicons/place_of_worship_hindu3.p.32.png new file mode 100644 index 00000000..2b1b9be0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_hindu3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.glow.12.png b/website/images/mapicons/place_of_worship_islamic.glow.12.png new file mode 100644 index 00000000..df69303f Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.glow.16.png b/website/images/mapicons/place_of_worship_islamic.glow.16.png new file mode 100644 index 00000000..e75b6569 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.glow.20.png b/website/images/mapicons/place_of_worship_islamic.glow.20.png new file mode 100644 index 00000000..09ef5206 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.glow.24.png b/website/images/mapicons/place_of_worship_islamic.glow.24.png new file mode 100644 index 00000000..fa314a82 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.glow.32.png b/website/images/mapicons/place_of_worship_islamic.glow.32.png new file mode 100644 index 00000000..0fdb421d Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.n.12.png b/website/images/mapicons/place_of_worship_islamic.n.12.png new file mode 100644 index 00000000..c5b7897e Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.n.16.png b/website/images/mapicons/place_of_worship_islamic.n.16.png new file mode 100644 index 00000000..a97d6f87 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.n.20.png b/website/images/mapicons/place_of_worship_islamic.n.20.png new file mode 100644 index 00000000..d0136416 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.n.24.png b/website/images/mapicons/place_of_worship_islamic.n.24.png new file mode 100644 index 00000000..670948a7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.n.32.png b/website/images/mapicons/place_of_worship_islamic.n.32.png new file mode 100644 index 00000000..ad15197e Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.p.12.png b/website/images/mapicons/place_of_worship_islamic.p.12.png new file mode 100644 index 00000000..42aab33a Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.p.16.png b/website/images/mapicons/place_of_worship_islamic.p.16.png new file mode 100644 index 00000000..84967577 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.p.20.png b/website/images/mapicons/place_of_worship_islamic.p.20.png new file mode 100644 index 00000000..a33dfb8d Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.p.24.png b/website/images/mapicons/place_of_worship_islamic.p.24.png new file mode 100644 index 00000000..33bdc19d Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic.p.32.png b/website/images/mapicons/place_of_worship_islamic.p.32.png new file mode 100644 index 00000000..0f273578 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.glow.12.png b/website/images/mapicons/place_of_worship_islamic3.glow.12.png new file mode 100644 index 00000000..bf37a84c Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.glow.16.png b/website/images/mapicons/place_of_worship_islamic3.glow.16.png new file mode 100644 index 00000000..7eb0af7d Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.glow.20.png b/website/images/mapicons/place_of_worship_islamic3.glow.20.png new file mode 100644 index 00000000..5ff1c434 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.glow.24.png b/website/images/mapicons/place_of_worship_islamic3.glow.24.png new file mode 100644 index 00000000..f88fcc29 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.glow.32.png b/website/images/mapicons/place_of_worship_islamic3.glow.32.png new file mode 100644 index 00000000..5e774298 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.n.12.png b/website/images/mapicons/place_of_worship_islamic3.n.12.png new file mode 100644 index 00000000..a8376d84 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.n.16.png b/website/images/mapicons/place_of_worship_islamic3.n.16.png new file mode 100644 index 00000000..5c6b3143 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.n.20.png b/website/images/mapicons/place_of_worship_islamic3.n.20.png new file mode 100644 index 00000000..5e3cd4ae Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.n.24.png b/website/images/mapicons/place_of_worship_islamic3.n.24.png new file mode 100644 index 00000000..c6218c0a Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.n.32.png b/website/images/mapicons/place_of_worship_islamic3.n.32.png new file mode 100644 index 00000000..dfe657fe Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.p.12.png b/website/images/mapicons/place_of_worship_islamic3.p.12.png new file mode 100644 index 00000000..d2fec691 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.p.16.png b/website/images/mapicons/place_of_worship_islamic3.p.16.png new file mode 100644 index 00000000..a36beaad Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.p.20.png b/website/images/mapicons/place_of_worship_islamic3.p.20.png new file mode 100644 index 00000000..c61ce0c2 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.p.24.png b/website/images/mapicons/place_of_worship_islamic3.p.24.png new file mode 100644 index 00000000..98dcbe2a Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_islamic3.p.32.png b/website/images/mapicons/place_of_worship_islamic3.p.32.png new file mode 100644 index 00000000..51d61259 Binary files /dev/null and b/website/images/mapicons/place_of_worship_islamic3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain.glow.12.png b/website/images/mapicons/place_of_worship_jain.glow.12.png new file mode 100644 index 00000000..90374338 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain.glow.16.png b/website/images/mapicons/place_of_worship_jain.glow.16.png new file mode 100644 index 00000000..40779b10 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain.glow.20.png b/website/images/mapicons/place_of_worship_jain.glow.20.png new file mode 100644 index 00000000..9a14ff13 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain.glow.24.png b/website/images/mapicons/place_of_worship_jain.glow.24.png new file mode 100644 index 00000000..35d70683 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain.glow.32.png b/website/images/mapicons/place_of_worship_jain.glow.32.png new file mode 100644 index 00000000..80d1ef7e Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain.n.12.png b/website/images/mapicons/place_of_worship_jain.n.12.png new file mode 100644 index 00000000..fde33eb6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain.n.16.png b/website/images/mapicons/place_of_worship_jain.n.16.png new file mode 100644 index 00000000..cd249b2f Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain.n.20.png b/website/images/mapicons/place_of_worship_jain.n.20.png new file mode 100644 index 00000000..15c7d422 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain.n.24.png b/website/images/mapicons/place_of_worship_jain.n.24.png new file mode 100644 index 00000000..2be3a144 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain.n.32.png b/website/images/mapicons/place_of_worship_jain.n.32.png new file mode 100644 index 00000000..35ce8687 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain.p.12.png b/website/images/mapicons/place_of_worship_jain.p.12.png new file mode 100644 index 00000000..092702ab Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain.p.16.png b/website/images/mapicons/place_of_worship_jain.p.16.png new file mode 100644 index 00000000..12760aa9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain.p.20.png b/website/images/mapicons/place_of_worship_jain.p.20.png new file mode 100644 index 00000000..71447495 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain.p.24.png b/website/images/mapicons/place_of_worship_jain.p.24.png new file mode 100644 index 00000000..9b74e2dc Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain.p.32.png b/website/images/mapicons/place_of_worship_jain.p.32.png new file mode 100644 index 00000000..dff2bd17 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.glow.12.png b/website/images/mapicons/place_of_worship_jain3.glow.12.png new file mode 100644 index 00000000..afe11b3c Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.glow.16.png b/website/images/mapicons/place_of_worship_jain3.glow.16.png new file mode 100644 index 00000000..2cedd508 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.glow.20.png b/website/images/mapicons/place_of_worship_jain3.glow.20.png new file mode 100644 index 00000000..b8ea67c2 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.glow.24.png b/website/images/mapicons/place_of_worship_jain3.glow.24.png new file mode 100644 index 00000000..4ed2eed3 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.glow.32.png b/website/images/mapicons/place_of_worship_jain3.glow.32.png new file mode 100644 index 00000000..d9f799c6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.n.12.png b/website/images/mapicons/place_of_worship_jain3.n.12.png new file mode 100644 index 00000000..e8afbcd6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.n.16.png b/website/images/mapicons/place_of_worship_jain3.n.16.png new file mode 100644 index 00000000..cd5a22c8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.n.20.png b/website/images/mapicons/place_of_worship_jain3.n.20.png new file mode 100644 index 00000000..6950152b Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.n.24.png b/website/images/mapicons/place_of_worship_jain3.n.24.png new file mode 100644 index 00000000..2c26b31a Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.n.32.png b/website/images/mapicons/place_of_worship_jain3.n.32.png new file mode 100644 index 00000000..2c579b0a Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.p.12.png b/website/images/mapicons/place_of_worship_jain3.p.12.png new file mode 100644 index 00000000..1bfb278f Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.p.16.png b/website/images/mapicons/place_of_worship_jain3.p.16.png new file mode 100644 index 00000000..198ff511 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.p.20.png b/website/images/mapicons/place_of_worship_jain3.p.20.png new file mode 100644 index 00000000..24ffbe2d Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.p.24.png b/website/images/mapicons/place_of_worship_jain3.p.24.png new file mode 100644 index 00000000..30474f80 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_jain3.p.32.png b/website/images/mapicons/place_of_worship_jain3.p.32.png new file mode 100644 index 00000000..864a8f90 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jain3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.glow.12.png b/website/images/mapicons/place_of_worship_jewish.glow.12.png new file mode 100644 index 00000000..e4791aca Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.glow.16.png b/website/images/mapicons/place_of_worship_jewish.glow.16.png new file mode 100644 index 00000000..7175c517 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.glow.20.png b/website/images/mapicons/place_of_worship_jewish.glow.20.png new file mode 100644 index 00000000..6754b6c5 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.glow.24.png b/website/images/mapicons/place_of_worship_jewish.glow.24.png new file mode 100644 index 00000000..b8044b11 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.glow.32.png b/website/images/mapicons/place_of_worship_jewish.glow.32.png new file mode 100644 index 00000000..3c3a8c9a Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.n.12.png b/website/images/mapicons/place_of_worship_jewish.n.12.png new file mode 100644 index 00000000..28ee4a14 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.n.16.png b/website/images/mapicons/place_of_worship_jewish.n.16.png new file mode 100644 index 00000000..38e41bc1 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.n.20.png b/website/images/mapicons/place_of_worship_jewish.n.20.png new file mode 100644 index 00000000..0594d750 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.n.24.png b/website/images/mapicons/place_of_worship_jewish.n.24.png new file mode 100644 index 00000000..6f5b22d0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.n.32.png b/website/images/mapicons/place_of_worship_jewish.n.32.png new file mode 100644 index 00000000..83de24c3 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.p.12.png b/website/images/mapicons/place_of_worship_jewish.p.12.png new file mode 100644 index 00000000..ea241072 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.p.16.png b/website/images/mapicons/place_of_worship_jewish.p.16.png new file mode 100644 index 00000000..c2aefa90 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.p.20.png b/website/images/mapicons/place_of_worship_jewish.p.20.png new file mode 100644 index 00000000..81934ea7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.p.24.png b/website/images/mapicons/place_of_worship_jewish.p.24.png new file mode 100644 index 00000000..8ffc3fec Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish.p.32.png b/website/images/mapicons/place_of_worship_jewish.p.32.png new file mode 100644 index 00000000..4e41827c Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.glow.12.png b/website/images/mapicons/place_of_worship_jewish3.glow.12.png new file mode 100644 index 00000000..b073510d Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.glow.16.png b/website/images/mapicons/place_of_worship_jewish3.glow.16.png new file mode 100644 index 00000000..00f98b04 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.glow.20.png b/website/images/mapicons/place_of_worship_jewish3.glow.20.png new file mode 100644 index 00000000..6903ffa4 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.glow.24.png b/website/images/mapicons/place_of_worship_jewish3.glow.24.png new file mode 100644 index 00000000..aa0b7e40 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.glow.32.png b/website/images/mapicons/place_of_worship_jewish3.glow.32.png new file mode 100644 index 00000000..7bcf6b0b Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.n.12.png b/website/images/mapicons/place_of_worship_jewish3.n.12.png new file mode 100644 index 00000000..18e3e1c9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.n.16.png b/website/images/mapicons/place_of_worship_jewish3.n.16.png new file mode 100644 index 00000000..95c62bed Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.n.20.png b/website/images/mapicons/place_of_worship_jewish3.n.20.png new file mode 100644 index 00000000..5855c6a8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.n.24.png b/website/images/mapicons/place_of_worship_jewish3.n.24.png new file mode 100644 index 00000000..3ffd1035 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.n.32.png b/website/images/mapicons/place_of_worship_jewish3.n.32.png new file mode 100644 index 00000000..2c8b39bd Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.p.12.png b/website/images/mapicons/place_of_worship_jewish3.p.12.png new file mode 100644 index 00000000..3f6499fd Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.p.16.png b/website/images/mapicons/place_of_worship_jewish3.p.16.png new file mode 100644 index 00000000..4efca7c6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.p.20.png b/website/images/mapicons/place_of_worship_jewish3.p.20.png new file mode 100644 index 00000000..fb6524a4 Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.p.24.png b/website/images/mapicons/place_of_worship_jewish3.p.24.png new file mode 100644 index 00000000..d323890e Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_jewish3.p.32.png b/website/images/mapicons/place_of_worship_jewish3.p.32.png new file mode 100644 index 00000000..0ceb8d7e Binary files /dev/null and b/website/images/mapicons/place_of_worship_jewish3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.glow.12.png b/website/images/mapicons/place_of_worship_shinto.glow.12.png new file mode 100644 index 00000000..fdd9553b Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.glow.16.png b/website/images/mapicons/place_of_worship_shinto.glow.16.png new file mode 100644 index 00000000..44420c22 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.glow.20.png b/website/images/mapicons/place_of_worship_shinto.glow.20.png new file mode 100644 index 00000000..db54489f Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.glow.24.png b/website/images/mapicons/place_of_worship_shinto.glow.24.png new file mode 100644 index 00000000..46dc0229 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.glow.32.png b/website/images/mapicons/place_of_worship_shinto.glow.32.png new file mode 100644 index 00000000..1b891e6d Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.n.12.png b/website/images/mapicons/place_of_worship_shinto.n.12.png new file mode 100644 index 00000000..5f2d873a Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.n.16.png b/website/images/mapicons/place_of_worship_shinto.n.16.png new file mode 100644 index 00000000..a3a53172 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.n.20.png b/website/images/mapicons/place_of_worship_shinto.n.20.png new file mode 100644 index 00000000..6dafd7f5 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.n.24.png b/website/images/mapicons/place_of_worship_shinto.n.24.png new file mode 100644 index 00000000..9f2e399c Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.n.32.png b/website/images/mapicons/place_of_worship_shinto.n.32.png new file mode 100644 index 00000000..de3e053e Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.p.12.png b/website/images/mapicons/place_of_worship_shinto.p.12.png new file mode 100644 index 00000000..1cac4291 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.p.16.png b/website/images/mapicons/place_of_worship_shinto.p.16.png new file mode 100644 index 00000000..5603f373 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.p.20.png b/website/images/mapicons/place_of_worship_shinto.p.20.png new file mode 100644 index 00000000..2401d180 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.p.24.png b/website/images/mapicons/place_of_worship_shinto.p.24.png new file mode 100644 index 00000000..ee003e1c Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto.p.32.png b/website/images/mapicons/place_of_worship_shinto.p.32.png new file mode 100644 index 00000000..4128bdbf Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.glow.12.png b/website/images/mapicons/place_of_worship_shinto3.glow.12.png new file mode 100644 index 00000000..cfbca1f0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.glow.16.png b/website/images/mapicons/place_of_worship_shinto3.glow.16.png new file mode 100644 index 00000000..f071583a Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.glow.20.png b/website/images/mapicons/place_of_worship_shinto3.glow.20.png new file mode 100644 index 00000000..d1b1bb6e Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.glow.24.png b/website/images/mapicons/place_of_worship_shinto3.glow.24.png new file mode 100644 index 00000000..cd942229 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.glow.32.png b/website/images/mapicons/place_of_worship_shinto3.glow.32.png new file mode 100644 index 00000000..512c91f0 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.n.12.png b/website/images/mapicons/place_of_worship_shinto3.n.12.png new file mode 100644 index 00000000..2e7d5f53 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.n.16.png b/website/images/mapicons/place_of_worship_shinto3.n.16.png new file mode 100644 index 00000000..88485d2e Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.n.20.png b/website/images/mapicons/place_of_worship_shinto3.n.20.png new file mode 100644 index 00000000..d1843ec7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.n.24.png b/website/images/mapicons/place_of_worship_shinto3.n.24.png new file mode 100644 index 00000000..0b440dc9 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.n.32.png b/website/images/mapicons/place_of_worship_shinto3.n.32.png new file mode 100644 index 00000000..ea5e5007 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.p.12.png b/website/images/mapicons/place_of_worship_shinto3.p.12.png new file mode 100644 index 00000000..2bc50ae5 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.p.16.png b/website/images/mapicons/place_of_worship_shinto3.p.16.png new file mode 100644 index 00000000..350d5a38 Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.p.20.png b/website/images/mapicons/place_of_worship_shinto3.p.20.png new file mode 100644 index 00000000..b64cf2fd Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.p.24.png b/website/images/mapicons/place_of_worship_shinto3.p.24.png new file mode 100644 index 00000000..123a81ee Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_shinto3.p.32.png b/website/images/mapicons/place_of_worship_shinto3.p.32.png new file mode 100644 index 00000000..8e61c3bb Binary files /dev/null and b/website/images/mapicons/place_of_worship_shinto3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.glow.12.png b/website/images/mapicons/place_of_worship_sikh.glow.12.png new file mode 100644 index 00000000..ec31b0b3 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.glow.16.png b/website/images/mapicons/place_of_worship_sikh.glow.16.png new file mode 100644 index 00000000..feaccd9e Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.glow.20.png b/website/images/mapicons/place_of_worship_sikh.glow.20.png new file mode 100644 index 00000000..280ed796 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.glow.24.png b/website/images/mapicons/place_of_worship_sikh.glow.24.png new file mode 100644 index 00000000..84b54d8b Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.glow.32.png b/website/images/mapicons/place_of_worship_sikh.glow.32.png new file mode 100644 index 00000000..21b339a7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.n.12.png b/website/images/mapicons/place_of_worship_sikh.n.12.png new file mode 100644 index 00000000..f87e64b3 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.n.16.png b/website/images/mapicons/place_of_worship_sikh.n.16.png new file mode 100644 index 00000000..d7689d7d Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.n.20.png b/website/images/mapicons/place_of_worship_sikh.n.20.png new file mode 100644 index 00000000..1ee5dbb8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.n.24.png b/website/images/mapicons/place_of_worship_sikh.n.24.png new file mode 100644 index 00000000..7447bb37 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.n.32.png b/website/images/mapicons/place_of_worship_sikh.n.32.png new file mode 100644 index 00000000..9a86d18c Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.p.12.png b/website/images/mapicons/place_of_worship_sikh.p.12.png new file mode 100644 index 00000000..87ff0cb8 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.p.16.png b/website/images/mapicons/place_of_worship_sikh.p.16.png new file mode 100644 index 00000000..83556684 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.p.20.png b/website/images/mapicons/place_of_worship_sikh.p.20.png new file mode 100644 index 00000000..97f2fa77 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.p.24.png b/website/images/mapicons/place_of_worship_sikh.p.24.png new file mode 100644 index 00000000..0dc3222b Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh.p.32.png b/website/images/mapicons/place_of_worship_sikh.p.32.png new file mode 100644 index 00000000..8dbdfd8b Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.glow.12.png b/website/images/mapicons/place_of_worship_sikh3.glow.12.png new file mode 100644 index 00000000..ff920312 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.glow.16.png b/website/images/mapicons/place_of_worship_sikh3.glow.16.png new file mode 100644 index 00000000..8203d912 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.glow.20.png b/website/images/mapicons/place_of_worship_sikh3.glow.20.png new file mode 100644 index 00000000..16a5e176 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.glow.24.png b/website/images/mapicons/place_of_worship_sikh3.glow.24.png new file mode 100644 index 00000000..6713ca60 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.glow.32.png b/website/images/mapicons/place_of_worship_sikh3.glow.32.png new file mode 100644 index 00000000..e4f8a0cb Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.n.12.png b/website/images/mapicons/place_of_worship_sikh3.n.12.png new file mode 100644 index 00000000..775c9fdb Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.n.16.png b/website/images/mapicons/place_of_worship_sikh3.n.16.png new file mode 100644 index 00000000..81b09b80 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.n.20.png b/website/images/mapicons/place_of_worship_sikh3.n.20.png new file mode 100644 index 00000000..39ae29d6 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.n.24.png b/website/images/mapicons/place_of_worship_sikh3.n.24.png new file mode 100644 index 00000000..3259a132 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.n.32.png b/website/images/mapicons/place_of_worship_sikh3.n.32.png new file mode 100644 index 00000000..92a95e9a Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.p.12.png b/website/images/mapicons/place_of_worship_sikh3.p.12.png new file mode 100644 index 00000000..174af9a7 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.p.16.png b/website/images/mapicons/place_of_worship_sikh3.p.16.png new file mode 100644 index 00000000..3ea27b07 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.p.20.png b/website/images/mapicons/place_of_worship_sikh3.p.20.png new file mode 100644 index 00000000..9a925b9b Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.p.24.png b/website/images/mapicons/place_of_worship_sikh3.p.24.png new file mode 100644 index 00000000..f0f0a405 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_sikh3.p.32.png b/website/images/mapicons/place_of_worship_sikh3.p.32.png new file mode 100644 index 00000000..ceaf0124 Binary files /dev/null and b/website/images/mapicons/place_of_worship_sikh3.p.32.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.glow.12.png b/website/images/mapicons/place_of_worship_unknown3.glow.12.png new file mode 100644 index 00000000..c92038ac Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.glow.12.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.glow.16.png b/website/images/mapicons/place_of_worship_unknown3.glow.16.png new file mode 100644 index 00000000..54984bec Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.glow.16.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.glow.20.png b/website/images/mapicons/place_of_worship_unknown3.glow.20.png new file mode 100644 index 00000000..b1b4cf3f Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.glow.20.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.glow.24.png b/website/images/mapicons/place_of_worship_unknown3.glow.24.png new file mode 100644 index 00000000..9625fbdf Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.glow.24.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.glow.32.png b/website/images/mapicons/place_of_worship_unknown3.glow.32.png new file mode 100644 index 00000000..f4d20d67 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.glow.32.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.n.12.png b/website/images/mapicons/place_of_worship_unknown3.n.12.png new file mode 100644 index 00000000..04c5c661 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.n.12.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.n.16.png b/website/images/mapicons/place_of_worship_unknown3.n.16.png new file mode 100644 index 00000000..7e8e0751 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.n.16.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.n.20.png b/website/images/mapicons/place_of_worship_unknown3.n.20.png new file mode 100644 index 00000000..2a2bd2a5 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.n.20.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.n.24.png b/website/images/mapicons/place_of_worship_unknown3.n.24.png new file mode 100644 index 00000000..2f916916 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.n.24.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.n.32.png b/website/images/mapicons/place_of_worship_unknown3.n.32.png new file mode 100644 index 00000000..ed238246 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.n.32.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.p.12.png b/website/images/mapicons/place_of_worship_unknown3.p.12.png new file mode 100644 index 00000000..49839b5e Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.p.12.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.p.16.png b/website/images/mapicons/place_of_worship_unknown3.p.16.png new file mode 100644 index 00000000..08b83296 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.p.16.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.p.20.png b/website/images/mapicons/place_of_worship_unknown3.p.20.png new file mode 100644 index 00000000..8f58d689 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.p.20.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.p.24.png b/website/images/mapicons/place_of_worship_unknown3.p.24.png new file mode 100644 index 00000000..d7842c08 Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.p.24.png differ diff --git a/website/images/mapicons/place_of_worship_unknown3.p.32.png b/website/images/mapicons/place_of_worship_unknown3.p.32.png new file mode 100644 index 00000000..1e2339bd Binary files /dev/null and b/website/images/mapicons/place_of_worship_unknown3.p.32.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.glow.12.png b/website/images/mapicons/poi_boundary_administrative.glow.12.png new file mode 100644 index 00000000..1ef4b096 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.glow.12.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.glow.16.png b/website/images/mapicons/poi_boundary_administrative.glow.16.png new file mode 100644 index 00000000..f6eec937 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.glow.16.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.glow.20.png b/website/images/mapicons/poi_boundary_administrative.glow.20.png new file mode 100644 index 00000000..d52d4f95 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.glow.20.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.glow.24.png b/website/images/mapicons/poi_boundary_administrative.glow.24.png new file mode 100644 index 00000000..546dde33 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.glow.24.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.glow.32.png b/website/images/mapicons/poi_boundary_administrative.glow.32.png new file mode 100644 index 00000000..dbeb6235 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.glow.32.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.n.12.png b/website/images/mapicons/poi_boundary_administrative.n.12.png new file mode 100644 index 00000000..7a208811 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.n.12.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.n.16.png b/website/images/mapicons/poi_boundary_administrative.n.16.png new file mode 100644 index 00000000..0d0396ee Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.n.16.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.n.20.png b/website/images/mapicons/poi_boundary_administrative.n.20.png new file mode 100644 index 00000000..06ba4219 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.n.20.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.n.24.png b/website/images/mapicons/poi_boundary_administrative.n.24.png new file mode 100644 index 00000000..7e2bd19a Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.n.24.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.n.32.png b/website/images/mapicons/poi_boundary_administrative.n.32.png new file mode 100644 index 00000000..248aea74 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.n.32.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.p.12.png b/website/images/mapicons/poi_boundary_administrative.p.12.png new file mode 100644 index 00000000..d53ea278 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.p.12.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.p.16.png b/website/images/mapicons/poi_boundary_administrative.p.16.png new file mode 100644 index 00000000..6175da4c Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.p.16.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.p.20.png b/website/images/mapicons/poi_boundary_administrative.p.20.png new file mode 100644 index 00000000..11ac3cb5 Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.p.20.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.p.24.png b/website/images/mapicons/poi_boundary_administrative.p.24.png new file mode 100644 index 00000000..c18a611a Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.p.24.png differ diff --git a/website/images/mapicons/poi_boundary_administrative.p.32.png b/website/images/mapicons/poi_boundary_administrative.p.32.png new file mode 100644 index 00000000..27f63dcd Binary files /dev/null and b/website/images/mapicons/poi_boundary_administrative.p.32.png differ diff --git a/website/images/mapicons/poi_bunker.glow.12.png b/website/images/mapicons/poi_bunker.glow.12.png new file mode 100644 index 00000000..2a5a9500 Binary files /dev/null and b/website/images/mapicons/poi_bunker.glow.12.png differ diff --git a/website/images/mapicons/poi_bunker.glow.16.png b/website/images/mapicons/poi_bunker.glow.16.png new file mode 100644 index 00000000..80e8e7bf Binary files /dev/null and b/website/images/mapicons/poi_bunker.glow.16.png differ diff --git a/website/images/mapicons/poi_bunker.glow.20.png b/website/images/mapicons/poi_bunker.glow.20.png new file mode 100644 index 00000000..2360af71 Binary files /dev/null and b/website/images/mapicons/poi_bunker.glow.20.png differ diff --git a/website/images/mapicons/poi_bunker.glow.24.png b/website/images/mapicons/poi_bunker.glow.24.png new file mode 100644 index 00000000..1fadb7fa Binary files /dev/null and b/website/images/mapicons/poi_bunker.glow.24.png differ diff --git a/website/images/mapicons/poi_bunker.glow.32.png b/website/images/mapicons/poi_bunker.glow.32.png new file mode 100644 index 00000000..5ca350a1 Binary files /dev/null and b/website/images/mapicons/poi_bunker.glow.32.png differ diff --git a/website/images/mapicons/poi_bunker.n.12.png b/website/images/mapicons/poi_bunker.n.12.png new file mode 100644 index 00000000..fac24de2 Binary files /dev/null and b/website/images/mapicons/poi_bunker.n.12.png differ diff --git a/website/images/mapicons/poi_bunker.n.16.png b/website/images/mapicons/poi_bunker.n.16.png new file mode 100644 index 00000000..ecea950a Binary files /dev/null and b/website/images/mapicons/poi_bunker.n.16.png differ diff --git a/website/images/mapicons/poi_bunker.n.20.png b/website/images/mapicons/poi_bunker.n.20.png new file mode 100644 index 00000000..d38148ed Binary files /dev/null and b/website/images/mapicons/poi_bunker.n.20.png differ diff --git a/website/images/mapicons/poi_bunker.n.24.png b/website/images/mapicons/poi_bunker.n.24.png new file mode 100644 index 00000000..3bcc77a0 Binary files /dev/null and b/website/images/mapicons/poi_bunker.n.24.png differ diff --git a/website/images/mapicons/poi_bunker.n.32.png b/website/images/mapicons/poi_bunker.n.32.png new file mode 100644 index 00000000..2b633a18 Binary files /dev/null and b/website/images/mapicons/poi_bunker.n.32.png differ diff --git a/website/images/mapicons/poi_bunker.p.12.png b/website/images/mapicons/poi_bunker.p.12.png new file mode 100644 index 00000000..0ea89d6f Binary files /dev/null and b/website/images/mapicons/poi_bunker.p.12.png differ diff --git a/website/images/mapicons/poi_bunker.p.16.png b/website/images/mapicons/poi_bunker.p.16.png new file mode 100644 index 00000000..b1243e77 Binary files /dev/null and b/website/images/mapicons/poi_bunker.p.16.png differ diff --git a/website/images/mapicons/poi_bunker.p.20.png b/website/images/mapicons/poi_bunker.p.20.png new file mode 100644 index 00000000..85759d3d Binary files /dev/null and b/website/images/mapicons/poi_bunker.p.20.png differ diff --git a/website/images/mapicons/poi_bunker.p.24.png b/website/images/mapicons/poi_bunker.p.24.png new file mode 100644 index 00000000..beb12229 Binary files /dev/null and b/website/images/mapicons/poi_bunker.p.24.png differ diff --git a/website/images/mapicons/poi_bunker.p.32.png b/website/images/mapicons/poi_bunker.p.32.png new file mode 100644 index 00000000..003bc10e Binary files /dev/null and b/website/images/mapicons/poi_bunker.p.32.png differ diff --git a/website/images/mapicons/poi_cave.glow.12.png b/website/images/mapicons/poi_cave.glow.12.png new file mode 100644 index 00000000..71550049 Binary files /dev/null and b/website/images/mapicons/poi_cave.glow.12.png differ diff --git a/website/images/mapicons/poi_cave.glow.16.png b/website/images/mapicons/poi_cave.glow.16.png new file mode 100644 index 00000000..adc5b654 Binary files /dev/null and b/website/images/mapicons/poi_cave.glow.16.png differ diff --git a/website/images/mapicons/poi_cave.glow.20.png b/website/images/mapicons/poi_cave.glow.20.png new file mode 100644 index 00000000..61cce309 Binary files /dev/null and b/website/images/mapicons/poi_cave.glow.20.png differ diff --git a/website/images/mapicons/poi_cave.glow.24.png b/website/images/mapicons/poi_cave.glow.24.png new file mode 100644 index 00000000..3cbc3ce1 Binary files /dev/null and b/website/images/mapicons/poi_cave.glow.24.png differ diff --git a/website/images/mapicons/poi_cave.glow.32.png b/website/images/mapicons/poi_cave.glow.32.png new file mode 100644 index 00000000..618ed523 Binary files /dev/null and b/website/images/mapicons/poi_cave.glow.32.png differ diff --git a/website/images/mapicons/poi_cave.n.12.png b/website/images/mapicons/poi_cave.n.12.png new file mode 100644 index 00000000..5c1c7344 Binary files /dev/null and b/website/images/mapicons/poi_cave.n.12.png differ diff --git a/website/images/mapicons/poi_cave.n.16.png b/website/images/mapicons/poi_cave.n.16.png new file mode 100644 index 00000000..94f72d67 Binary files /dev/null and b/website/images/mapicons/poi_cave.n.16.png differ diff --git a/website/images/mapicons/poi_cave.n.20.png b/website/images/mapicons/poi_cave.n.20.png new file mode 100644 index 00000000..9d732573 Binary files /dev/null and b/website/images/mapicons/poi_cave.n.20.png differ diff --git a/website/images/mapicons/poi_cave.n.24.png b/website/images/mapicons/poi_cave.n.24.png new file mode 100644 index 00000000..2720c8ad Binary files /dev/null and b/website/images/mapicons/poi_cave.n.24.png differ diff --git a/website/images/mapicons/poi_cave.n.32.png b/website/images/mapicons/poi_cave.n.32.png new file mode 100644 index 00000000..0e64565f Binary files /dev/null and b/website/images/mapicons/poi_cave.n.32.png differ diff --git a/website/images/mapicons/poi_cave.p.12.png b/website/images/mapicons/poi_cave.p.12.png new file mode 100644 index 00000000..64041bc0 Binary files /dev/null and b/website/images/mapicons/poi_cave.p.12.png differ diff --git a/website/images/mapicons/poi_cave.p.16.png b/website/images/mapicons/poi_cave.p.16.png new file mode 100644 index 00000000..aafddbb9 Binary files /dev/null and b/website/images/mapicons/poi_cave.p.16.png differ diff --git a/website/images/mapicons/poi_cave.p.20.png b/website/images/mapicons/poi_cave.p.20.png new file mode 100644 index 00000000..7840ef48 Binary files /dev/null and b/website/images/mapicons/poi_cave.p.20.png differ diff --git a/website/images/mapicons/poi_cave.p.24.png b/website/images/mapicons/poi_cave.p.24.png new file mode 100644 index 00000000..02c2b127 Binary files /dev/null and b/website/images/mapicons/poi_cave.p.24.png differ diff --git a/website/images/mapicons/poi_cave.p.32.png b/website/images/mapicons/poi_cave.p.32.png new file mode 100644 index 00000000..15c477b8 Binary files /dev/null and b/website/images/mapicons/poi_cave.p.32.png differ diff --git a/website/images/mapicons/poi_embassy.glow.12.png b/website/images/mapicons/poi_embassy.glow.12.png new file mode 100644 index 00000000..5897e04b Binary files /dev/null and b/website/images/mapicons/poi_embassy.glow.12.png differ diff --git a/website/images/mapicons/poi_embassy.glow.16.png b/website/images/mapicons/poi_embassy.glow.16.png new file mode 100644 index 00000000..d34dcb91 Binary files /dev/null and b/website/images/mapicons/poi_embassy.glow.16.png differ diff --git a/website/images/mapicons/poi_embassy.glow.20.png b/website/images/mapicons/poi_embassy.glow.20.png new file mode 100644 index 00000000..3c6c9729 Binary files /dev/null and b/website/images/mapicons/poi_embassy.glow.20.png differ diff --git a/website/images/mapicons/poi_embassy.glow.24.png b/website/images/mapicons/poi_embassy.glow.24.png new file mode 100644 index 00000000..5b1f4a67 Binary files /dev/null and b/website/images/mapicons/poi_embassy.glow.24.png differ diff --git a/website/images/mapicons/poi_embassy.glow.32.png b/website/images/mapicons/poi_embassy.glow.32.png new file mode 100644 index 00000000..905e3fa7 Binary files /dev/null and b/website/images/mapicons/poi_embassy.glow.32.png differ diff --git a/website/images/mapicons/poi_embassy.n.12.png b/website/images/mapicons/poi_embassy.n.12.png new file mode 100644 index 00000000..488517ba Binary files /dev/null and b/website/images/mapicons/poi_embassy.n.12.png differ diff --git a/website/images/mapicons/poi_embassy.n.16.png b/website/images/mapicons/poi_embassy.n.16.png new file mode 100644 index 00000000..9fdf2244 Binary files /dev/null and b/website/images/mapicons/poi_embassy.n.16.png differ diff --git a/website/images/mapicons/poi_embassy.n.20.png b/website/images/mapicons/poi_embassy.n.20.png new file mode 100644 index 00000000..394ca95b Binary files /dev/null and b/website/images/mapicons/poi_embassy.n.20.png differ diff --git a/website/images/mapicons/poi_embassy.n.24.png b/website/images/mapicons/poi_embassy.n.24.png new file mode 100644 index 00000000..d2f175f5 Binary files /dev/null and b/website/images/mapicons/poi_embassy.n.24.png differ diff --git a/website/images/mapicons/poi_embassy.n.32.png b/website/images/mapicons/poi_embassy.n.32.png new file mode 100644 index 00000000..ab8b6c99 Binary files /dev/null and b/website/images/mapicons/poi_embassy.n.32.png differ diff --git a/website/images/mapicons/poi_embassy.p.12.png b/website/images/mapicons/poi_embassy.p.12.png new file mode 100644 index 00000000..d528c013 Binary files /dev/null and b/website/images/mapicons/poi_embassy.p.12.png differ diff --git a/website/images/mapicons/poi_embassy.p.16.png b/website/images/mapicons/poi_embassy.p.16.png new file mode 100644 index 00000000..6f73f4e7 Binary files /dev/null and b/website/images/mapicons/poi_embassy.p.16.png differ diff --git a/website/images/mapicons/poi_embassy.p.20.png b/website/images/mapicons/poi_embassy.p.20.png new file mode 100644 index 00000000..f7ec682d Binary files /dev/null and b/website/images/mapicons/poi_embassy.p.20.png differ diff --git a/website/images/mapicons/poi_embassy.p.24.png b/website/images/mapicons/poi_embassy.p.24.png new file mode 100644 index 00000000..74fd9af1 Binary files /dev/null and b/website/images/mapicons/poi_embassy.p.24.png differ diff --git a/website/images/mapicons/poi_embassy.p.32.png b/website/images/mapicons/poi_embassy.p.32.png new file mode 100644 index 00000000..35480373 Binary files /dev/null and b/website/images/mapicons/poi_embassy.p.32.png differ diff --git a/website/images/mapicons/poi_embassy2.glow.12.png b/website/images/mapicons/poi_embassy2.glow.12.png new file mode 100644 index 00000000..a6af0ce2 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.glow.12.png differ diff --git a/website/images/mapicons/poi_embassy2.glow.16.png b/website/images/mapicons/poi_embassy2.glow.16.png new file mode 100644 index 00000000..79bb9543 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.glow.16.png differ diff --git a/website/images/mapicons/poi_embassy2.glow.20.png b/website/images/mapicons/poi_embassy2.glow.20.png new file mode 100644 index 00000000..d78d5859 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.glow.20.png differ diff --git a/website/images/mapicons/poi_embassy2.glow.24.png b/website/images/mapicons/poi_embassy2.glow.24.png new file mode 100644 index 00000000..58ffd8ad Binary files /dev/null and b/website/images/mapicons/poi_embassy2.glow.24.png differ diff --git a/website/images/mapicons/poi_embassy2.glow.32.png b/website/images/mapicons/poi_embassy2.glow.32.png new file mode 100644 index 00000000..9b7e0e66 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.glow.32.png differ diff --git a/website/images/mapicons/poi_embassy2.n.12.png b/website/images/mapicons/poi_embassy2.n.12.png new file mode 100644 index 00000000..582f7a59 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.n.12.png differ diff --git a/website/images/mapicons/poi_embassy2.n.16.png b/website/images/mapicons/poi_embassy2.n.16.png new file mode 100644 index 00000000..3ba90979 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.n.16.png differ diff --git a/website/images/mapicons/poi_embassy2.n.20.png b/website/images/mapicons/poi_embassy2.n.20.png new file mode 100644 index 00000000..b846e9b5 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.n.20.png differ diff --git a/website/images/mapicons/poi_embassy2.n.24.png b/website/images/mapicons/poi_embassy2.n.24.png new file mode 100644 index 00000000..33e72cd5 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.n.24.png differ diff --git a/website/images/mapicons/poi_embassy2.n.32.png b/website/images/mapicons/poi_embassy2.n.32.png new file mode 100644 index 00000000..2688bc95 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.n.32.png differ diff --git a/website/images/mapicons/poi_embassy2.p.12.png b/website/images/mapicons/poi_embassy2.p.12.png new file mode 100644 index 00000000..88c1913a Binary files /dev/null and b/website/images/mapicons/poi_embassy2.p.12.png differ diff --git a/website/images/mapicons/poi_embassy2.p.16.png b/website/images/mapicons/poi_embassy2.p.16.png new file mode 100644 index 00000000..4300cbb1 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.p.16.png differ diff --git a/website/images/mapicons/poi_embassy2.p.20.png b/website/images/mapicons/poi_embassy2.p.20.png new file mode 100644 index 00000000..24c2aba0 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.p.20.png differ diff --git a/website/images/mapicons/poi_embassy2.p.24.png b/website/images/mapicons/poi_embassy2.p.24.png new file mode 100644 index 00000000..c0e10dfa Binary files /dev/null and b/website/images/mapicons/poi_embassy2.p.24.png differ diff --git a/website/images/mapicons/poi_embassy2.p.32.png b/website/images/mapicons/poi_embassy2.p.32.png new file mode 100644 index 00000000..069f3393 Binary files /dev/null and b/website/images/mapicons/poi_embassy2.p.32.png differ diff --git a/website/images/mapicons/poi_military_bunker.glow.12.png b/website/images/mapicons/poi_military_bunker.glow.12.png new file mode 100644 index 00000000..fbd9ac5e Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.glow.12.png differ diff --git a/website/images/mapicons/poi_military_bunker.glow.16.png b/website/images/mapicons/poi_military_bunker.glow.16.png new file mode 100644 index 00000000..3b294e5d Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.glow.16.png differ diff --git a/website/images/mapicons/poi_military_bunker.glow.20.png b/website/images/mapicons/poi_military_bunker.glow.20.png new file mode 100644 index 00000000..395e475f Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.glow.20.png differ diff --git a/website/images/mapicons/poi_military_bunker.glow.24.png b/website/images/mapicons/poi_military_bunker.glow.24.png new file mode 100644 index 00000000..b9d0afad Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.glow.24.png differ diff --git a/website/images/mapicons/poi_military_bunker.glow.32.png b/website/images/mapicons/poi_military_bunker.glow.32.png new file mode 100644 index 00000000..1630d5e7 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.glow.32.png differ diff --git a/website/images/mapicons/poi_military_bunker.n.12.png b/website/images/mapicons/poi_military_bunker.n.12.png new file mode 100644 index 00000000..fac24de2 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.n.12.png differ diff --git a/website/images/mapicons/poi_military_bunker.n.16.png b/website/images/mapicons/poi_military_bunker.n.16.png new file mode 100644 index 00000000..ecea950a Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.n.16.png differ diff --git a/website/images/mapicons/poi_military_bunker.n.20.png b/website/images/mapicons/poi_military_bunker.n.20.png new file mode 100644 index 00000000..d38148ed Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.n.20.png differ diff --git a/website/images/mapicons/poi_military_bunker.n.24.png b/website/images/mapicons/poi_military_bunker.n.24.png new file mode 100644 index 00000000..3bcc77a0 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.n.24.png differ diff --git a/website/images/mapicons/poi_military_bunker.n.32.png b/website/images/mapicons/poi_military_bunker.n.32.png new file mode 100644 index 00000000..2b633a18 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.n.32.png differ diff --git a/website/images/mapicons/poi_military_bunker.p.12.png b/website/images/mapicons/poi_military_bunker.p.12.png new file mode 100644 index 00000000..0ea89d6f Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.p.12.png differ diff --git a/website/images/mapicons/poi_military_bunker.p.16.png b/website/images/mapicons/poi_military_bunker.p.16.png new file mode 100644 index 00000000..b1243e77 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.p.16.png differ diff --git a/website/images/mapicons/poi_military_bunker.p.20.png b/website/images/mapicons/poi_military_bunker.p.20.png new file mode 100644 index 00000000..85759d3d Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.p.20.png differ diff --git a/website/images/mapicons/poi_military_bunker.p.24.png b/website/images/mapicons/poi_military_bunker.p.24.png new file mode 100644 index 00000000..beb12229 Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.p.24.png differ diff --git a/website/images/mapicons/poi_military_bunker.p.32.png b/website/images/mapicons/poi_military_bunker.p.32.png new file mode 100644 index 00000000..003bc10e Binary files /dev/null and b/website/images/mapicons/poi_military_bunker.p.32.png differ diff --git a/website/images/mapicons/poi_mine.glow.12.png b/website/images/mapicons/poi_mine.glow.12.png new file mode 100644 index 00000000..780eb143 Binary files /dev/null and b/website/images/mapicons/poi_mine.glow.12.png differ diff --git a/website/images/mapicons/poi_mine.glow.16.png b/website/images/mapicons/poi_mine.glow.16.png new file mode 100644 index 00000000..3ae5d6e1 Binary files /dev/null and b/website/images/mapicons/poi_mine.glow.16.png differ diff --git a/website/images/mapicons/poi_mine.glow.20.png b/website/images/mapicons/poi_mine.glow.20.png new file mode 100644 index 00000000..8eacf0ab Binary files /dev/null and b/website/images/mapicons/poi_mine.glow.20.png differ diff --git a/website/images/mapicons/poi_mine.glow.24.png b/website/images/mapicons/poi_mine.glow.24.png new file mode 100644 index 00000000..a8e65edd Binary files /dev/null and b/website/images/mapicons/poi_mine.glow.24.png differ diff --git a/website/images/mapicons/poi_mine.glow.32.png b/website/images/mapicons/poi_mine.glow.32.png new file mode 100644 index 00000000..ecc05947 Binary files /dev/null and b/website/images/mapicons/poi_mine.glow.32.png differ diff --git a/website/images/mapicons/poi_mine.n.12.png b/website/images/mapicons/poi_mine.n.12.png new file mode 100644 index 00000000..5f52135b Binary files /dev/null and b/website/images/mapicons/poi_mine.n.12.png differ diff --git a/website/images/mapicons/poi_mine.n.16.png b/website/images/mapicons/poi_mine.n.16.png new file mode 100644 index 00000000..c56485e2 Binary files /dev/null and b/website/images/mapicons/poi_mine.n.16.png differ diff --git a/website/images/mapicons/poi_mine.n.20.png b/website/images/mapicons/poi_mine.n.20.png new file mode 100644 index 00000000..09fd0763 Binary files /dev/null and b/website/images/mapicons/poi_mine.n.20.png differ diff --git a/website/images/mapicons/poi_mine.n.24.png b/website/images/mapicons/poi_mine.n.24.png new file mode 100644 index 00000000..57c6d943 Binary files /dev/null and b/website/images/mapicons/poi_mine.n.24.png differ diff --git a/website/images/mapicons/poi_mine.n.32.png b/website/images/mapicons/poi_mine.n.32.png new file mode 100644 index 00000000..b1e6a1ab Binary files /dev/null and b/website/images/mapicons/poi_mine.n.32.png differ diff --git a/website/images/mapicons/poi_mine.p.12.png b/website/images/mapicons/poi_mine.p.12.png new file mode 100644 index 00000000..c995bb6a Binary files /dev/null and b/website/images/mapicons/poi_mine.p.12.png differ diff --git a/website/images/mapicons/poi_mine.p.16.png b/website/images/mapicons/poi_mine.p.16.png new file mode 100644 index 00000000..d96b4f1c Binary files /dev/null and b/website/images/mapicons/poi_mine.p.16.png differ diff --git a/website/images/mapicons/poi_mine.p.20.png b/website/images/mapicons/poi_mine.p.20.png new file mode 100644 index 00000000..30eda6c4 Binary files /dev/null and b/website/images/mapicons/poi_mine.p.20.png differ diff --git a/website/images/mapicons/poi_mine.p.24.png b/website/images/mapicons/poi_mine.p.24.png new file mode 100644 index 00000000..c6dad450 Binary files /dev/null and b/website/images/mapicons/poi_mine.p.24.png differ diff --git a/website/images/mapicons/poi_mine.p.32.png b/website/images/mapicons/poi_mine.p.32.png new file mode 100644 index 00000000..9ad06748 Binary files /dev/null and b/website/images/mapicons/poi_mine.p.32.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.glow.12.png b/website/images/mapicons/poi_mine_abandoned.glow.12.png new file mode 100644 index 00000000..bd6fd840 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.glow.12.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.glow.16.png b/website/images/mapicons/poi_mine_abandoned.glow.16.png new file mode 100644 index 00000000..6521021e Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.glow.16.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.glow.20.png b/website/images/mapicons/poi_mine_abandoned.glow.20.png new file mode 100644 index 00000000..be41e5cd Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.glow.20.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.glow.24.png b/website/images/mapicons/poi_mine_abandoned.glow.24.png new file mode 100644 index 00000000..62742a58 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.glow.24.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.glow.32.png b/website/images/mapicons/poi_mine_abandoned.glow.32.png new file mode 100644 index 00000000..ab933ee8 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.glow.32.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.n.12.png b/website/images/mapicons/poi_mine_abandoned.n.12.png new file mode 100644 index 00000000..561544bf Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.n.12.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.n.16.png b/website/images/mapicons/poi_mine_abandoned.n.16.png new file mode 100644 index 00000000..08bfb1e5 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.n.16.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.n.20.png b/website/images/mapicons/poi_mine_abandoned.n.20.png new file mode 100644 index 00000000..e7d9aa3e Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.n.20.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.n.24.png b/website/images/mapicons/poi_mine_abandoned.n.24.png new file mode 100644 index 00000000..c494bdb8 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.n.24.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.n.32.png b/website/images/mapicons/poi_mine_abandoned.n.32.png new file mode 100644 index 00000000..952115d1 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.n.32.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.p.12.png b/website/images/mapicons/poi_mine_abandoned.p.12.png new file mode 100644 index 00000000..e978ae13 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.p.12.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.p.16.png b/website/images/mapicons/poi_mine_abandoned.p.16.png new file mode 100644 index 00000000..86a4e641 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.p.16.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.p.20.png b/website/images/mapicons/poi_mine_abandoned.p.20.png new file mode 100644 index 00000000..b8b16de3 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.p.20.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.p.24.png b/website/images/mapicons/poi_mine_abandoned.p.24.png new file mode 100644 index 00000000..455b8983 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.p.24.png differ diff --git a/website/images/mapicons/poi_mine_abandoned.p.32.png b/website/images/mapicons/poi_mine_abandoned.p.32.png new file mode 100644 index 00000000..2d6bfc18 Binary files /dev/null and b/website/images/mapicons/poi_mine_abandoned.p.32.png differ diff --git a/website/images/mapicons/poi_peak.glow.12.png b/website/images/mapicons/poi_peak.glow.12.png new file mode 100644 index 00000000..e514946b Binary files /dev/null and b/website/images/mapicons/poi_peak.glow.12.png differ diff --git a/website/images/mapicons/poi_peak.glow.16.png b/website/images/mapicons/poi_peak.glow.16.png new file mode 100644 index 00000000..b25f56c5 Binary files /dev/null and b/website/images/mapicons/poi_peak.glow.16.png differ diff --git a/website/images/mapicons/poi_peak.glow.20.png b/website/images/mapicons/poi_peak.glow.20.png new file mode 100644 index 00000000..dc6e0ede Binary files /dev/null and b/website/images/mapicons/poi_peak.glow.20.png differ diff --git a/website/images/mapicons/poi_peak.glow.24.png b/website/images/mapicons/poi_peak.glow.24.png new file mode 100644 index 00000000..396aa769 Binary files /dev/null and b/website/images/mapicons/poi_peak.glow.24.png differ diff --git a/website/images/mapicons/poi_peak.glow.32.png b/website/images/mapicons/poi_peak.glow.32.png new file mode 100644 index 00000000..8d1192b2 Binary files /dev/null and b/website/images/mapicons/poi_peak.glow.32.png differ diff --git a/website/images/mapicons/poi_peak.n.12.png b/website/images/mapicons/poi_peak.n.12.png new file mode 100644 index 00000000..c22526fa Binary files /dev/null and b/website/images/mapicons/poi_peak.n.12.png differ diff --git a/website/images/mapicons/poi_peak.n.16.png b/website/images/mapicons/poi_peak.n.16.png new file mode 100644 index 00000000..c99557f4 Binary files /dev/null and b/website/images/mapicons/poi_peak.n.16.png differ diff --git a/website/images/mapicons/poi_peak.n.20.png b/website/images/mapicons/poi_peak.n.20.png new file mode 100644 index 00000000..7124f46b Binary files /dev/null and b/website/images/mapicons/poi_peak.n.20.png differ diff --git a/website/images/mapicons/poi_peak.n.24.png b/website/images/mapicons/poi_peak.n.24.png new file mode 100644 index 00000000..8b8d1d10 Binary files /dev/null and b/website/images/mapicons/poi_peak.n.24.png differ diff --git a/website/images/mapicons/poi_peak.n.32.png b/website/images/mapicons/poi_peak.n.32.png new file mode 100644 index 00000000..df7cf0e6 Binary files /dev/null and b/website/images/mapicons/poi_peak.n.32.png differ diff --git a/website/images/mapicons/poi_peak.p.12.png b/website/images/mapicons/poi_peak.p.12.png new file mode 100644 index 00000000..27996dc7 Binary files /dev/null and b/website/images/mapicons/poi_peak.p.12.png differ diff --git a/website/images/mapicons/poi_peak.p.16.png b/website/images/mapicons/poi_peak.p.16.png new file mode 100644 index 00000000..1541a9e5 Binary files /dev/null and b/website/images/mapicons/poi_peak.p.16.png differ diff --git a/website/images/mapicons/poi_peak.p.20.png b/website/images/mapicons/poi_peak.p.20.png new file mode 100644 index 00000000..ff7c5df2 Binary files /dev/null and b/website/images/mapicons/poi_peak.p.20.png differ diff --git a/website/images/mapicons/poi_peak.p.24.png b/website/images/mapicons/poi_peak.p.24.png new file mode 100644 index 00000000..de7d3de8 Binary files /dev/null and b/website/images/mapicons/poi_peak.p.24.png differ diff --git a/website/images/mapicons/poi_peak.p.32.png b/website/images/mapicons/poi_peak.p.32.png new file mode 100644 index 00000000..17ebea84 Binary files /dev/null and b/website/images/mapicons/poi_peak.p.32.png differ diff --git a/website/images/mapicons/poi_place_city.glow.12.png b/website/images/mapicons/poi_place_city.glow.12.png new file mode 100644 index 00000000..e1529235 Binary files /dev/null and b/website/images/mapicons/poi_place_city.glow.12.png differ diff --git a/website/images/mapicons/poi_place_city.glow.16.png b/website/images/mapicons/poi_place_city.glow.16.png new file mode 100644 index 00000000..f262cf1a Binary files /dev/null and b/website/images/mapicons/poi_place_city.glow.16.png differ diff --git a/website/images/mapicons/poi_place_city.glow.20.png b/website/images/mapicons/poi_place_city.glow.20.png new file mode 100644 index 00000000..1c70762a Binary files /dev/null and b/website/images/mapicons/poi_place_city.glow.20.png differ diff --git a/website/images/mapicons/poi_place_city.glow.24.png b/website/images/mapicons/poi_place_city.glow.24.png new file mode 100644 index 00000000..feb42d49 Binary files /dev/null and b/website/images/mapicons/poi_place_city.glow.24.png differ diff --git a/website/images/mapicons/poi_place_city.glow.32.png b/website/images/mapicons/poi_place_city.glow.32.png new file mode 100644 index 00000000..b988e92f Binary files /dev/null and b/website/images/mapicons/poi_place_city.glow.32.png differ diff --git a/website/images/mapicons/poi_place_city.n.12.png b/website/images/mapicons/poi_place_city.n.12.png new file mode 100644 index 00000000..d7506655 Binary files /dev/null and b/website/images/mapicons/poi_place_city.n.12.png differ diff --git a/website/images/mapicons/poi_place_city.n.16.png b/website/images/mapicons/poi_place_city.n.16.png new file mode 100644 index 00000000..b1829ca8 Binary files /dev/null and b/website/images/mapicons/poi_place_city.n.16.png differ diff --git a/website/images/mapicons/poi_place_city.n.20.png b/website/images/mapicons/poi_place_city.n.20.png new file mode 100644 index 00000000..35fd6f6d Binary files /dev/null and b/website/images/mapicons/poi_place_city.n.20.png differ diff --git a/website/images/mapicons/poi_place_city.n.24.png b/website/images/mapicons/poi_place_city.n.24.png new file mode 100644 index 00000000..03bbfbee Binary files /dev/null and b/website/images/mapicons/poi_place_city.n.24.png differ diff --git a/website/images/mapicons/poi_place_city.n.32.png b/website/images/mapicons/poi_place_city.n.32.png new file mode 100644 index 00000000..1871679a Binary files /dev/null and b/website/images/mapicons/poi_place_city.n.32.png differ diff --git a/website/images/mapicons/poi_place_city.p.12.png b/website/images/mapicons/poi_place_city.p.12.png new file mode 100644 index 00000000..1d9155c8 Binary files /dev/null and b/website/images/mapicons/poi_place_city.p.12.png differ diff --git a/website/images/mapicons/poi_place_city.p.16.png b/website/images/mapicons/poi_place_city.p.16.png new file mode 100644 index 00000000..b0348005 Binary files /dev/null and b/website/images/mapicons/poi_place_city.p.16.png differ diff --git a/website/images/mapicons/poi_place_city.p.20.png b/website/images/mapicons/poi_place_city.p.20.png new file mode 100644 index 00000000..9cbbbb94 Binary files /dev/null and b/website/images/mapicons/poi_place_city.p.20.png differ diff --git a/website/images/mapicons/poi_place_city.p.24.png b/website/images/mapicons/poi_place_city.p.24.png new file mode 100644 index 00000000..d2f629cf Binary files /dev/null and b/website/images/mapicons/poi_place_city.p.24.png differ diff --git a/website/images/mapicons/poi_place_city.p.32.png b/website/images/mapicons/poi_place_city.p.32.png new file mode 100644 index 00000000..50402081 Binary files /dev/null and b/website/images/mapicons/poi_place_city.p.32.png differ diff --git a/website/images/mapicons/poi_place_town.glow.12.png b/website/images/mapicons/poi_place_town.glow.12.png new file mode 100644 index 00000000..1a05e3d0 Binary files /dev/null and b/website/images/mapicons/poi_place_town.glow.12.png differ diff --git a/website/images/mapicons/poi_place_town.glow.16.png b/website/images/mapicons/poi_place_town.glow.16.png new file mode 100644 index 00000000..d1bfe86e Binary files /dev/null and b/website/images/mapicons/poi_place_town.glow.16.png differ diff --git a/website/images/mapicons/poi_place_town.glow.20.png b/website/images/mapicons/poi_place_town.glow.20.png new file mode 100644 index 00000000..33b62fb3 Binary files /dev/null and b/website/images/mapicons/poi_place_town.glow.20.png differ diff --git a/website/images/mapicons/poi_place_town.glow.24.png b/website/images/mapicons/poi_place_town.glow.24.png new file mode 100644 index 00000000..f2618ac3 Binary files /dev/null and b/website/images/mapicons/poi_place_town.glow.24.png differ diff --git a/website/images/mapicons/poi_place_town.glow.32.png b/website/images/mapicons/poi_place_town.glow.32.png new file mode 100644 index 00000000..166fbdbc Binary files /dev/null and b/website/images/mapicons/poi_place_town.glow.32.png differ diff --git a/website/images/mapicons/poi_place_town.n.12.png b/website/images/mapicons/poi_place_town.n.12.png new file mode 100644 index 00000000..02d44fea Binary files /dev/null and b/website/images/mapicons/poi_place_town.n.12.png differ diff --git a/website/images/mapicons/poi_place_town.n.16.png b/website/images/mapicons/poi_place_town.n.16.png new file mode 100644 index 00000000..50690fb4 Binary files /dev/null and b/website/images/mapicons/poi_place_town.n.16.png differ diff --git a/website/images/mapicons/poi_place_town.n.20.png b/website/images/mapicons/poi_place_town.n.20.png new file mode 100644 index 00000000..f666aef4 Binary files /dev/null and b/website/images/mapicons/poi_place_town.n.20.png differ diff --git a/website/images/mapicons/poi_place_town.n.24.png b/website/images/mapicons/poi_place_town.n.24.png new file mode 100644 index 00000000..268e7700 Binary files /dev/null and b/website/images/mapicons/poi_place_town.n.24.png differ diff --git a/website/images/mapicons/poi_place_town.n.32.png b/website/images/mapicons/poi_place_town.n.32.png new file mode 100644 index 00000000..55682b39 Binary files /dev/null and b/website/images/mapicons/poi_place_town.n.32.png differ diff --git a/website/images/mapicons/poi_place_town.p.12.png b/website/images/mapicons/poi_place_town.p.12.png new file mode 100644 index 00000000..5c8d4e0c Binary files /dev/null and b/website/images/mapicons/poi_place_town.p.12.png differ diff --git a/website/images/mapicons/poi_place_town.p.16.png b/website/images/mapicons/poi_place_town.p.16.png new file mode 100644 index 00000000..5c658ca1 Binary files /dev/null and b/website/images/mapicons/poi_place_town.p.16.png differ diff --git a/website/images/mapicons/poi_place_town.p.20.png b/website/images/mapicons/poi_place_town.p.20.png new file mode 100644 index 00000000..cdbbc458 Binary files /dev/null and b/website/images/mapicons/poi_place_town.p.20.png differ diff --git a/website/images/mapicons/poi_place_town.p.24.png b/website/images/mapicons/poi_place_town.p.24.png new file mode 100644 index 00000000..b456dc22 Binary files /dev/null and b/website/images/mapicons/poi_place_town.p.24.png differ diff --git a/website/images/mapicons/poi_place_town.p.32.png b/website/images/mapicons/poi_place_town.p.32.png new file mode 100644 index 00000000..4761ff91 Binary files /dev/null and b/website/images/mapicons/poi_place_town.p.32.png differ diff --git a/website/images/mapicons/poi_place_village.glow.12.png b/website/images/mapicons/poi_place_village.glow.12.png new file mode 100644 index 00000000..8151e3bd Binary files /dev/null and b/website/images/mapicons/poi_place_village.glow.12.png differ diff --git a/website/images/mapicons/poi_place_village.glow.16.png b/website/images/mapicons/poi_place_village.glow.16.png new file mode 100644 index 00000000..34cdd704 Binary files /dev/null and b/website/images/mapicons/poi_place_village.glow.16.png differ diff --git a/website/images/mapicons/poi_place_village.glow.20.png b/website/images/mapicons/poi_place_village.glow.20.png new file mode 100644 index 00000000..ee5ca7a0 Binary files /dev/null and b/website/images/mapicons/poi_place_village.glow.20.png differ diff --git a/website/images/mapicons/poi_place_village.glow.24.png b/website/images/mapicons/poi_place_village.glow.24.png new file mode 100644 index 00000000..c544646b Binary files /dev/null and b/website/images/mapicons/poi_place_village.glow.24.png differ diff --git a/website/images/mapicons/poi_place_village.glow.32.png b/website/images/mapicons/poi_place_village.glow.32.png new file mode 100644 index 00000000..c646f335 Binary files /dev/null and b/website/images/mapicons/poi_place_village.glow.32.png differ diff --git a/website/images/mapicons/poi_place_village.n.12.png b/website/images/mapicons/poi_place_village.n.12.png new file mode 100644 index 00000000..2c8bdf4a Binary files /dev/null and b/website/images/mapicons/poi_place_village.n.12.png differ diff --git a/website/images/mapicons/poi_place_village.n.16.png b/website/images/mapicons/poi_place_village.n.16.png new file mode 100644 index 00000000..31ba7ff7 Binary files /dev/null and b/website/images/mapicons/poi_place_village.n.16.png differ diff --git a/website/images/mapicons/poi_place_village.n.20.png b/website/images/mapicons/poi_place_village.n.20.png new file mode 100644 index 00000000..1ef4a44a Binary files /dev/null and b/website/images/mapicons/poi_place_village.n.20.png differ diff --git a/website/images/mapicons/poi_place_village.n.24.png b/website/images/mapicons/poi_place_village.n.24.png new file mode 100644 index 00000000..7485c91b Binary files /dev/null and b/website/images/mapicons/poi_place_village.n.24.png differ diff --git a/website/images/mapicons/poi_place_village.n.32.png b/website/images/mapicons/poi_place_village.n.32.png new file mode 100644 index 00000000..6d6f33d8 Binary files /dev/null and b/website/images/mapicons/poi_place_village.n.32.png differ diff --git a/website/images/mapicons/poi_place_village.p.12.png b/website/images/mapicons/poi_place_village.p.12.png new file mode 100644 index 00000000..9dc80768 Binary files /dev/null and b/website/images/mapicons/poi_place_village.p.12.png differ diff --git a/website/images/mapicons/poi_place_village.p.16.png b/website/images/mapicons/poi_place_village.p.16.png new file mode 100644 index 00000000..1f7487f0 Binary files /dev/null and b/website/images/mapicons/poi_place_village.p.16.png differ diff --git a/website/images/mapicons/poi_place_village.p.20.png b/website/images/mapicons/poi_place_village.p.20.png new file mode 100644 index 00000000..b70092f7 Binary files /dev/null and b/website/images/mapicons/poi_place_village.p.20.png differ diff --git a/website/images/mapicons/poi_place_village.p.24.png b/website/images/mapicons/poi_place_village.p.24.png new file mode 100644 index 00000000..ee050b4e Binary files /dev/null and b/website/images/mapicons/poi_place_village.p.24.png differ diff --git a/website/images/mapicons/poi_place_village.p.32.png b/website/images/mapicons/poi_place_village.p.32.png new file mode 100644 index 00000000..a0058476 Binary files /dev/null and b/website/images/mapicons/poi_place_village.p.32.png differ diff --git a/website/images/mapicons/poi_point_of_interest.glow.12.png b/website/images/mapicons/poi_point_of_interest.glow.12.png new file mode 100644 index 00000000..d049d7b9 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.glow.12.png differ diff --git a/website/images/mapicons/poi_point_of_interest.glow.16.png b/website/images/mapicons/poi_point_of_interest.glow.16.png new file mode 100644 index 00000000..0f5e7449 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.glow.16.png differ diff --git a/website/images/mapicons/poi_point_of_interest.glow.20.png b/website/images/mapicons/poi_point_of_interest.glow.20.png new file mode 100644 index 00000000..3780bdd2 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.glow.20.png differ diff --git a/website/images/mapicons/poi_point_of_interest.glow.24.png b/website/images/mapicons/poi_point_of_interest.glow.24.png new file mode 100644 index 00000000..3df3031b Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.glow.24.png differ diff --git a/website/images/mapicons/poi_point_of_interest.glow.32.png b/website/images/mapicons/poi_point_of_interest.glow.32.png new file mode 100644 index 00000000..9a746425 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.glow.32.png differ diff --git a/website/images/mapicons/poi_point_of_interest.n.12.png b/website/images/mapicons/poi_point_of_interest.n.12.png new file mode 100644 index 00000000..0fb71e7f Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.n.12.png differ diff --git a/website/images/mapicons/poi_point_of_interest.n.16.png b/website/images/mapicons/poi_point_of_interest.n.16.png new file mode 100644 index 00000000..942326a3 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.n.16.png differ diff --git a/website/images/mapicons/poi_point_of_interest.n.20.png b/website/images/mapicons/poi_point_of_interest.n.20.png new file mode 100644 index 00000000..11617825 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.n.20.png differ diff --git a/website/images/mapicons/poi_point_of_interest.n.24.png b/website/images/mapicons/poi_point_of_interest.n.24.png new file mode 100644 index 00000000..20713b02 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.n.24.png differ diff --git a/website/images/mapicons/poi_point_of_interest.n.32.png b/website/images/mapicons/poi_point_of_interest.n.32.png new file mode 100644 index 00000000..72a46463 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.n.32.png differ diff --git a/website/images/mapicons/poi_point_of_interest.p.12.png b/website/images/mapicons/poi_point_of_interest.p.12.png new file mode 100644 index 00000000..fd5964f8 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.p.12.png differ diff --git a/website/images/mapicons/poi_point_of_interest.p.16.png b/website/images/mapicons/poi_point_of_interest.p.16.png new file mode 100644 index 00000000..1f40e5f1 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.p.16.png differ diff --git a/website/images/mapicons/poi_point_of_interest.p.20.png b/website/images/mapicons/poi_point_of_interest.p.20.png new file mode 100644 index 00000000..51aafb24 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.p.20.png differ diff --git a/website/images/mapicons/poi_point_of_interest.p.24.png b/website/images/mapicons/poi_point_of_interest.p.24.png new file mode 100644 index 00000000..2820e5fc Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.p.24.png differ diff --git a/website/images/mapicons/poi_point_of_interest.p.32.png b/website/images/mapicons/poi_point_of_interest.p.32.png new file mode 100644 index 00000000..e4712376 Binary files /dev/null and b/website/images/mapicons/poi_point_of_interest.p.32.png differ diff --git a/website/images/mapicons/poi_tower_communications.glow.12.png b/website/images/mapicons/poi_tower_communications.glow.12.png new file mode 100644 index 00000000..258d6d3d Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.glow.12.png differ diff --git a/website/images/mapicons/poi_tower_communications.glow.16.png b/website/images/mapicons/poi_tower_communications.glow.16.png new file mode 100644 index 00000000..63ebd8ef Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.glow.16.png differ diff --git a/website/images/mapicons/poi_tower_communications.glow.20.png b/website/images/mapicons/poi_tower_communications.glow.20.png new file mode 100644 index 00000000..4d3bb9c2 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.glow.20.png differ diff --git a/website/images/mapicons/poi_tower_communications.glow.24.png b/website/images/mapicons/poi_tower_communications.glow.24.png new file mode 100644 index 00000000..67939d49 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.glow.24.png differ diff --git a/website/images/mapicons/poi_tower_communications.glow.32.png b/website/images/mapicons/poi_tower_communications.glow.32.png new file mode 100644 index 00000000..229daf37 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.glow.32.png differ diff --git a/website/images/mapicons/poi_tower_communications.n.12.png b/website/images/mapicons/poi_tower_communications.n.12.png new file mode 100644 index 00000000..d5762c0e Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.n.12.png differ diff --git a/website/images/mapicons/poi_tower_communications.n.16.png b/website/images/mapicons/poi_tower_communications.n.16.png new file mode 100644 index 00000000..5ce5f1a0 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.n.16.png differ diff --git a/website/images/mapicons/poi_tower_communications.n.20.png b/website/images/mapicons/poi_tower_communications.n.20.png new file mode 100644 index 00000000..6d46dfa4 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.n.20.png differ diff --git a/website/images/mapicons/poi_tower_communications.n.24.png b/website/images/mapicons/poi_tower_communications.n.24.png new file mode 100644 index 00000000..c15812ff Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.n.24.png differ diff --git a/website/images/mapicons/poi_tower_communications.n.32.png b/website/images/mapicons/poi_tower_communications.n.32.png new file mode 100644 index 00000000..b27e9318 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.n.32.png differ diff --git a/website/images/mapicons/poi_tower_communications.p.12.png b/website/images/mapicons/poi_tower_communications.p.12.png new file mode 100644 index 00000000..3a69b594 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.p.12.png differ diff --git a/website/images/mapicons/poi_tower_communications.p.16.png b/website/images/mapicons/poi_tower_communications.p.16.png new file mode 100644 index 00000000..bf025dcb Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.p.16.png differ diff --git a/website/images/mapicons/poi_tower_communications.p.20.png b/website/images/mapicons/poi_tower_communications.p.20.png new file mode 100644 index 00000000..efae28f9 Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.p.20.png differ diff --git a/website/images/mapicons/poi_tower_communications.p.24.png b/website/images/mapicons/poi_tower_communications.p.24.png new file mode 100644 index 00000000..18e7a96f Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.p.24.png differ diff --git a/website/images/mapicons/poi_tower_communications.p.32.png b/website/images/mapicons/poi_tower_communications.p.32.png new file mode 100644 index 00000000..2dc276fc Binary files /dev/null and b/website/images/mapicons/poi_tower_communications.p.32.png differ diff --git a/website/images/mapicons/poi_tower_power.glow.12.png b/website/images/mapicons/poi_tower_power.glow.12.png new file mode 100644 index 00000000..5cefd05f Binary files /dev/null and b/website/images/mapicons/poi_tower_power.glow.12.png differ diff --git a/website/images/mapicons/poi_tower_power.glow.16.png b/website/images/mapicons/poi_tower_power.glow.16.png new file mode 100644 index 00000000..14cee85b Binary files /dev/null and b/website/images/mapicons/poi_tower_power.glow.16.png differ diff --git a/website/images/mapicons/poi_tower_power.glow.20.png b/website/images/mapicons/poi_tower_power.glow.20.png new file mode 100644 index 00000000..bb74bce9 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.glow.20.png differ diff --git a/website/images/mapicons/poi_tower_power.glow.24.png b/website/images/mapicons/poi_tower_power.glow.24.png new file mode 100644 index 00000000..1538e3e0 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.glow.24.png differ diff --git a/website/images/mapicons/poi_tower_power.glow.32.png b/website/images/mapicons/poi_tower_power.glow.32.png new file mode 100644 index 00000000..2a4e1d56 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.glow.32.png differ diff --git a/website/images/mapicons/poi_tower_power.n.12.png b/website/images/mapicons/poi_tower_power.n.12.png new file mode 100644 index 00000000..6ee8fe67 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.n.12.png differ diff --git a/website/images/mapicons/poi_tower_power.n.16.png b/website/images/mapicons/poi_tower_power.n.16.png new file mode 100644 index 00000000..316d1cb0 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.n.16.png differ diff --git a/website/images/mapicons/poi_tower_power.n.20.png b/website/images/mapicons/poi_tower_power.n.20.png new file mode 100644 index 00000000..19e2db21 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.n.20.png differ diff --git a/website/images/mapicons/poi_tower_power.n.24.png b/website/images/mapicons/poi_tower_power.n.24.png new file mode 100644 index 00000000..8a7ea98c Binary files /dev/null and b/website/images/mapicons/poi_tower_power.n.24.png differ diff --git a/website/images/mapicons/poi_tower_power.n.32.png b/website/images/mapicons/poi_tower_power.n.32.png new file mode 100644 index 00000000..6b5fd363 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.n.32.png differ diff --git a/website/images/mapicons/poi_tower_power.p.12.png b/website/images/mapicons/poi_tower_power.p.12.png new file mode 100644 index 00000000..09fa384f Binary files /dev/null and b/website/images/mapicons/poi_tower_power.p.12.png differ diff --git a/website/images/mapicons/poi_tower_power.p.16.png b/website/images/mapicons/poi_tower_power.p.16.png new file mode 100644 index 00000000..b6f4c4f0 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.p.16.png differ diff --git a/website/images/mapicons/poi_tower_power.p.20.png b/website/images/mapicons/poi_tower_power.p.20.png new file mode 100644 index 00000000..fac424f5 Binary files /dev/null and b/website/images/mapicons/poi_tower_power.p.20.png differ diff --git a/website/images/mapicons/poi_tower_power.p.24.png b/website/images/mapicons/poi_tower_power.p.24.png new file mode 100644 index 00000000..52442b1c Binary files /dev/null and b/website/images/mapicons/poi_tower_power.p.24.png differ diff --git a/website/images/mapicons/poi_tower_power.p.32.png b/website/images/mapicons/poi_tower_power.p.32.png new file mode 100644 index 00000000..c4ac04fb Binary files /dev/null and b/website/images/mapicons/poi_tower_power.p.32.png differ diff --git a/website/images/mapicons/poi_tower_water.glow.12.png b/website/images/mapicons/poi_tower_water.glow.12.png new file mode 100644 index 00000000..c33829b2 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.glow.12.png differ diff --git a/website/images/mapicons/poi_tower_water.glow.16.png b/website/images/mapicons/poi_tower_water.glow.16.png new file mode 100644 index 00000000..c9eecf45 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.glow.16.png differ diff --git a/website/images/mapicons/poi_tower_water.glow.20.png b/website/images/mapicons/poi_tower_water.glow.20.png new file mode 100644 index 00000000..a2ed6679 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.glow.20.png differ diff --git a/website/images/mapicons/poi_tower_water.glow.24.png b/website/images/mapicons/poi_tower_water.glow.24.png new file mode 100644 index 00000000..40f8a634 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.glow.24.png differ diff --git a/website/images/mapicons/poi_tower_water.glow.32.png b/website/images/mapicons/poi_tower_water.glow.32.png new file mode 100644 index 00000000..e9ffaf42 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.glow.32.png differ diff --git a/website/images/mapicons/poi_tower_water.n.12.png b/website/images/mapicons/poi_tower_water.n.12.png new file mode 100644 index 00000000..299a1a06 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.n.12.png differ diff --git a/website/images/mapicons/poi_tower_water.n.16.png b/website/images/mapicons/poi_tower_water.n.16.png new file mode 100644 index 00000000..6988569a Binary files /dev/null and b/website/images/mapicons/poi_tower_water.n.16.png differ diff --git a/website/images/mapicons/poi_tower_water.n.20.png b/website/images/mapicons/poi_tower_water.n.20.png new file mode 100644 index 00000000..e4745417 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.n.20.png differ diff --git a/website/images/mapicons/poi_tower_water.n.24.png b/website/images/mapicons/poi_tower_water.n.24.png new file mode 100644 index 00000000..536cd945 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.n.24.png differ diff --git a/website/images/mapicons/poi_tower_water.n.32.png b/website/images/mapicons/poi_tower_water.n.32.png new file mode 100644 index 00000000..386b5078 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.n.32.png differ diff --git a/website/images/mapicons/poi_tower_water.p.12.png b/website/images/mapicons/poi_tower_water.p.12.png new file mode 100644 index 00000000..98703849 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.p.12.png differ diff --git a/website/images/mapicons/poi_tower_water.p.16.png b/website/images/mapicons/poi_tower_water.p.16.png new file mode 100644 index 00000000..43afc750 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.p.16.png differ diff --git a/website/images/mapicons/poi_tower_water.p.20.png b/website/images/mapicons/poi_tower_water.p.20.png new file mode 100644 index 00000000..256d6cc6 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.p.20.png differ diff --git a/website/images/mapicons/poi_tower_water.p.24.png b/website/images/mapicons/poi_tower_water.p.24.png new file mode 100644 index 00000000..b2384a50 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.p.24.png differ diff --git a/website/images/mapicons/poi_tower_water.p.32.png b/website/images/mapicons/poi_tower_water.p.32.png new file mode 100644 index 00000000..f13cb1a5 Binary files /dev/null and b/website/images/mapicons/poi_tower_water.p.32.png differ diff --git a/website/images/mapicons/shopping_alcohol.glow.12.png b/website/images/mapicons/shopping_alcohol.glow.12.png new file mode 100644 index 00000000..5c789ad1 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.glow.12.png differ diff --git a/website/images/mapicons/shopping_alcohol.glow.16.png b/website/images/mapicons/shopping_alcohol.glow.16.png new file mode 100644 index 00000000..5ec69583 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.glow.16.png differ diff --git a/website/images/mapicons/shopping_alcohol.glow.20.png b/website/images/mapicons/shopping_alcohol.glow.20.png new file mode 100644 index 00000000..5d17a9a8 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.glow.20.png differ diff --git a/website/images/mapicons/shopping_alcohol.glow.24.png b/website/images/mapicons/shopping_alcohol.glow.24.png new file mode 100644 index 00000000..24298401 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.glow.24.png differ diff --git a/website/images/mapicons/shopping_alcohol.glow.32.png b/website/images/mapicons/shopping_alcohol.glow.32.png new file mode 100644 index 00000000..3ee6d10d Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.glow.32.png differ diff --git a/website/images/mapicons/shopping_alcohol.n.12.png b/website/images/mapicons/shopping_alcohol.n.12.png new file mode 100644 index 00000000..7e9374e6 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.n.12.png differ diff --git a/website/images/mapicons/shopping_alcohol.n.16.png b/website/images/mapicons/shopping_alcohol.n.16.png new file mode 100644 index 00000000..20510022 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.n.16.png differ diff --git a/website/images/mapicons/shopping_alcohol.n.20.png b/website/images/mapicons/shopping_alcohol.n.20.png new file mode 100644 index 00000000..03b01056 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.n.20.png differ diff --git a/website/images/mapicons/shopping_alcohol.n.24.png b/website/images/mapicons/shopping_alcohol.n.24.png new file mode 100644 index 00000000..c22cc3b6 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.n.24.png differ diff --git a/website/images/mapicons/shopping_alcohol.n.32.png b/website/images/mapicons/shopping_alcohol.n.32.png new file mode 100644 index 00000000..22a7c88b Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.n.32.png differ diff --git a/website/images/mapicons/shopping_alcohol.p.12.png b/website/images/mapicons/shopping_alcohol.p.12.png new file mode 100644 index 00000000..4621e3b8 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.p.12.png differ diff --git a/website/images/mapicons/shopping_alcohol.p.16.png b/website/images/mapicons/shopping_alcohol.p.16.png new file mode 100644 index 00000000..c2e5045f Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.p.16.png differ diff --git a/website/images/mapicons/shopping_alcohol.p.20.png b/website/images/mapicons/shopping_alcohol.p.20.png new file mode 100644 index 00000000..a90413e8 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.p.20.png differ diff --git a/website/images/mapicons/shopping_alcohol.p.24.png b/website/images/mapicons/shopping_alcohol.p.24.png new file mode 100644 index 00000000..009585c5 Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.p.24.png differ diff --git a/website/images/mapicons/shopping_alcohol.p.32.png b/website/images/mapicons/shopping_alcohol.p.32.png new file mode 100644 index 00000000..1b97ee2a Binary files /dev/null and b/website/images/mapicons/shopping_alcohol.p.32.png differ diff --git a/website/images/mapicons/shopping_bakery.glow.12.png b/website/images/mapicons/shopping_bakery.glow.12.png new file mode 100644 index 00000000..9579fac2 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.glow.12.png differ diff --git a/website/images/mapicons/shopping_bakery.glow.16.png b/website/images/mapicons/shopping_bakery.glow.16.png new file mode 100644 index 00000000..03be8288 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.glow.16.png differ diff --git a/website/images/mapicons/shopping_bakery.glow.20.png b/website/images/mapicons/shopping_bakery.glow.20.png new file mode 100644 index 00000000..4d553a54 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.glow.20.png differ diff --git a/website/images/mapicons/shopping_bakery.glow.24.png b/website/images/mapicons/shopping_bakery.glow.24.png new file mode 100644 index 00000000..2aa9b7d0 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.glow.24.png differ diff --git a/website/images/mapicons/shopping_bakery.glow.32.png b/website/images/mapicons/shopping_bakery.glow.32.png new file mode 100644 index 00000000..f9d3e46c Binary files /dev/null and b/website/images/mapicons/shopping_bakery.glow.32.png differ diff --git a/website/images/mapicons/shopping_bakery.n.12.png b/website/images/mapicons/shopping_bakery.n.12.png new file mode 100644 index 00000000..94002bb7 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.n.12.png differ diff --git a/website/images/mapicons/shopping_bakery.n.16.png b/website/images/mapicons/shopping_bakery.n.16.png new file mode 100644 index 00000000..76a52d2d Binary files /dev/null and b/website/images/mapicons/shopping_bakery.n.16.png differ diff --git a/website/images/mapicons/shopping_bakery.n.20.png b/website/images/mapicons/shopping_bakery.n.20.png new file mode 100644 index 00000000..e932d347 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.n.20.png differ diff --git a/website/images/mapicons/shopping_bakery.n.24.png b/website/images/mapicons/shopping_bakery.n.24.png new file mode 100644 index 00000000..f588a198 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.n.24.png differ diff --git a/website/images/mapicons/shopping_bakery.n.32.png b/website/images/mapicons/shopping_bakery.n.32.png new file mode 100644 index 00000000..a2534ae1 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.n.32.png differ diff --git a/website/images/mapicons/shopping_bakery.p.12.png b/website/images/mapicons/shopping_bakery.p.12.png new file mode 100644 index 00000000..3e875df8 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.p.12.png differ diff --git a/website/images/mapicons/shopping_bakery.p.16.png b/website/images/mapicons/shopping_bakery.p.16.png new file mode 100644 index 00000000..127dc627 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.p.16.png differ diff --git a/website/images/mapicons/shopping_bakery.p.20.png b/website/images/mapicons/shopping_bakery.p.20.png new file mode 100644 index 00000000..3292d505 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.p.20.png differ diff --git a/website/images/mapicons/shopping_bakery.p.24.png b/website/images/mapicons/shopping_bakery.p.24.png new file mode 100644 index 00000000..e1506cc7 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.p.24.png differ diff --git a/website/images/mapicons/shopping_bakery.p.32.png b/website/images/mapicons/shopping_bakery.p.32.png new file mode 100644 index 00000000..618c29f0 Binary files /dev/null and b/website/images/mapicons/shopping_bakery.p.32.png differ diff --git a/website/images/mapicons/shopping_bicycle.glow.12.png b/website/images/mapicons/shopping_bicycle.glow.12.png new file mode 100644 index 00000000..e43d1f1e Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.glow.12.png differ diff --git a/website/images/mapicons/shopping_bicycle.glow.16.png b/website/images/mapicons/shopping_bicycle.glow.16.png new file mode 100644 index 00000000..68e12825 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.glow.16.png differ diff --git a/website/images/mapicons/shopping_bicycle.glow.20.png b/website/images/mapicons/shopping_bicycle.glow.20.png new file mode 100644 index 00000000..a1fb4dd2 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.glow.20.png differ diff --git a/website/images/mapicons/shopping_bicycle.glow.24.png b/website/images/mapicons/shopping_bicycle.glow.24.png new file mode 100644 index 00000000..2497d2bf Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.glow.24.png differ diff --git a/website/images/mapicons/shopping_bicycle.glow.32.png b/website/images/mapicons/shopping_bicycle.glow.32.png new file mode 100644 index 00000000..68f89684 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.glow.32.png differ diff --git a/website/images/mapicons/shopping_bicycle.n.12.png b/website/images/mapicons/shopping_bicycle.n.12.png new file mode 100644 index 00000000..1acf6cb5 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.n.12.png differ diff --git a/website/images/mapicons/shopping_bicycle.n.16.png b/website/images/mapicons/shopping_bicycle.n.16.png new file mode 100644 index 00000000..ef5b3662 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.n.16.png differ diff --git a/website/images/mapicons/shopping_bicycle.n.20.png b/website/images/mapicons/shopping_bicycle.n.20.png new file mode 100644 index 00000000..89c878ca Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.n.20.png differ diff --git a/website/images/mapicons/shopping_bicycle.n.24.png b/website/images/mapicons/shopping_bicycle.n.24.png new file mode 100644 index 00000000..dce1d15d Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.n.24.png differ diff --git a/website/images/mapicons/shopping_bicycle.n.32.png b/website/images/mapicons/shopping_bicycle.n.32.png new file mode 100644 index 00000000..9860f2ea Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.n.32.png differ diff --git a/website/images/mapicons/shopping_bicycle.p.12.png b/website/images/mapicons/shopping_bicycle.p.12.png new file mode 100644 index 00000000..06af5217 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.p.12.png differ diff --git a/website/images/mapicons/shopping_bicycle.p.16.png b/website/images/mapicons/shopping_bicycle.p.16.png new file mode 100644 index 00000000..d0b3680f Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.p.16.png differ diff --git a/website/images/mapicons/shopping_bicycle.p.20.png b/website/images/mapicons/shopping_bicycle.p.20.png new file mode 100644 index 00000000..ddca60a9 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.p.20.png differ diff --git a/website/images/mapicons/shopping_bicycle.p.24.png b/website/images/mapicons/shopping_bicycle.p.24.png new file mode 100644 index 00000000..906e9064 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.p.24.png differ diff --git a/website/images/mapicons/shopping_bicycle.p.32.png b/website/images/mapicons/shopping_bicycle.p.32.png new file mode 100644 index 00000000..00856872 Binary files /dev/null and b/website/images/mapicons/shopping_bicycle.p.32.png differ diff --git a/website/images/mapicons/shopping_book.glow.12.png b/website/images/mapicons/shopping_book.glow.12.png new file mode 100644 index 00000000..3fb8483e Binary files /dev/null and b/website/images/mapicons/shopping_book.glow.12.png differ diff --git a/website/images/mapicons/shopping_book.glow.16.png b/website/images/mapicons/shopping_book.glow.16.png new file mode 100644 index 00000000..79bd6dfe Binary files /dev/null and b/website/images/mapicons/shopping_book.glow.16.png differ diff --git a/website/images/mapicons/shopping_book.glow.20.png b/website/images/mapicons/shopping_book.glow.20.png new file mode 100644 index 00000000..b722bdb7 Binary files /dev/null and b/website/images/mapicons/shopping_book.glow.20.png differ diff --git a/website/images/mapicons/shopping_book.glow.24.png b/website/images/mapicons/shopping_book.glow.24.png new file mode 100644 index 00000000..ffc1f36d Binary files /dev/null and b/website/images/mapicons/shopping_book.glow.24.png differ diff --git a/website/images/mapicons/shopping_book.glow.32.png b/website/images/mapicons/shopping_book.glow.32.png new file mode 100644 index 00000000..062f2e50 Binary files /dev/null and b/website/images/mapicons/shopping_book.glow.32.png differ diff --git a/website/images/mapicons/shopping_book.n.12.png b/website/images/mapicons/shopping_book.n.12.png new file mode 100644 index 00000000..ef09f5d8 Binary files /dev/null and b/website/images/mapicons/shopping_book.n.12.png differ diff --git a/website/images/mapicons/shopping_book.n.16.png b/website/images/mapicons/shopping_book.n.16.png new file mode 100644 index 00000000..172bd286 Binary files /dev/null and b/website/images/mapicons/shopping_book.n.16.png differ diff --git a/website/images/mapicons/shopping_book.n.20.png b/website/images/mapicons/shopping_book.n.20.png new file mode 100644 index 00000000..7d78c086 Binary files /dev/null and b/website/images/mapicons/shopping_book.n.20.png differ diff --git a/website/images/mapicons/shopping_book.n.24.png b/website/images/mapicons/shopping_book.n.24.png new file mode 100644 index 00000000..51441eae Binary files /dev/null and b/website/images/mapicons/shopping_book.n.24.png differ diff --git a/website/images/mapicons/shopping_book.n.32.png b/website/images/mapicons/shopping_book.n.32.png new file mode 100644 index 00000000..1320fc1d Binary files /dev/null and b/website/images/mapicons/shopping_book.n.32.png differ diff --git a/website/images/mapicons/shopping_book.p.12.png b/website/images/mapicons/shopping_book.p.12.png new file mode 100644 index 00000000..4a5f863c Binary files /dev/null and b/website/images/mapicons/shopping_book.p.12.png differ diff --git a/website/images/mapicons/shopping_book.p.16.png b/website/images/mapicons/shopping_book.p.16.png new file mode 100644 index 00000000..dc241d20 Binary files /dev/null and b/website/images/mapicons/shopping_book.p.16.png differ diff --git a/website/images/mapicons/shopping_book.p.20.png b/website/images/mapicons/shopping_book.p.20.png new file mode 100644 index 00000000..73ea493e Binary files /dev/null and b/website/images/mapicons/shopping_book.p.20.png differ diff --git a/website/images/mapicons/shopping_book.p.24.png b/website/images/mapicons/shopping_book.p.24.png new file mode 100644 index 00000000..63f81f2d Binary files /dev/null and b/website/images/mapicons/shopping_book.p.24.png differ diff --git a/website/images/mapicons/shopping_book.p.32.png b/website/images/mapicons/shopping_book.p.32.png new file mode 100644 index 00000000..9d6206a8 Binary files /dev/null and b/website/images/mapicons/shopping_book.p.32.png differ diff --git a/website/images/mapicons/shopping_butcher.glow.12.png b/website/images/mapicons/shopping_butcher.glow.12.png new file mode 100644 index 00000000..c9746a4d Binary files /dev/null and b/website/images/mapicons/shopping_butcher.glow.12.png differ diff --git a/website/images/mapicons/shopping_butcher.glow.16.png b/website/images/mapicons/shopping_butcher.glow.16.png new file mode 100644 index 00000000..c9941c59 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.glow.16.png differ diff --git a/website/images/mapicons/shopping_butcher.glow.20.png b/website/images/mapicons/shopping_butcher.glow.20.png new file mode 100644 index 00000000..a6ed31aa Binary files /dev/null and b/website/images/mapicons/shopping_butcher.glow.20.png differ diff --git a/website/images/mapicons/shopping_butcher.glow.24.png b/website/images/mapicons/shopping_butcher.glow.24.png new file mode 100644 index 00000000..509dc598 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.glow.24.png differ diff --git a/website/images/mapicons/shopping_butcher.glow.32.png b/website/images/mapicons/shopping_butcher.glow.32.png new file mode 100644 index 00000000..493abef7 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.glow.32.png differ diff --git a/website/images/mapicons/shopping_butcher.n.12.png b/website/images/mapicons/shopping_butcher.n.12.png new file mode 100644 index 00000000..779bd489 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.n.12.png differ diff --git a/website/images/mapicons/shopping_butcher.n.16.png b/website/images/mapicons/shopping_butcher.n.16.png new file mode 100644 index 00000000..b4885918 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.n.16.png differ diff --git a/website/images/mapicons/shopping_butcher.n.20.png b/website/images/mapicons/shopping_butcher.n.20.png new file mode 100644 index 00000000..050c39de Binary files /dev/null and b/website/images/mapicons/shopping_butcher.n.20.png differ diff --git a/website/images/mapicons/shopping_butcher.n.24.png b/website/images/mapicons/shopping_butcher.n.24.png new file mode 100644 index 00000000..8efbb3f0 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.n.24.png differ diff --git a/website/images/mapicons/shopping_butcher.n.32.png b/website/images/mapicons/shopping_butcher.n.32.png new file mode 100644 index 00000000..304291b7 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.n.32.png differ diff --git a/website/images/mapicons/shopping_butcher.p.12.png b/website/images/mapicons/shopping_butcher.p.12.png new file mode 100644 index 00000000..a7da5c74 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.p.12.png differ diff --git a/website/images/mapicons/shopping_butcher.p.16.png b/website/images/mapicons/shopping_butcher.p.16.png new file mode 100644 index 00000000..8ff57409 Binary files /dev/null and b/website/images/mapicons/shopping_butcher.p.16.png differ diff --git a/website/images/mapicons/shopping_butcher.p.20.png b/website/images/mapicons/shopping_butcher.p.20.png new file mode 100644 index 00000000..4f48758e Binary files /dev/null and b/website/images/mapicons/shopping_butcher.p.20.png differ diff --git a/website/images/mapicons/shopping_butcher.p.24.png b/website/images/mapicons/shopping_butcher.p.24.png new file mode 100644 index 00000000..65e90cdd Binary files /dev/null and b/website/images/mapicons/shopping_butcher.p.24.png differ diff --git a/website/images/mapicons/shopping_butcher.p.32.png b/website/images/mapicons/shopping_butcher.p.32.png new file mode 100644 index 00000000..9a306ead Binary files /dev/null and b/website/images/mapicons/shopping_butcher.p.32.png differ diff --git a/website/images/mapicons/shopping_car.glow.12.png b/website/images/mapicons/shopping_car.glow.12.png new file mode 100644 index 00000000..a6074f38 Binary files /dev/null and b/website/images/mapicons/shopping_car.glow.12.png differ diff --git a/website/images/mapicons/shopping_car.glow.16.png b/website/images/mapicons/shopping_car.glow.16.png new file mode 100644 index 00000000..c9d3bbc5 Binary files /dev/null and b/website/images/mapicons/shopping_car.glow.16.png differ diff --git a/website/images/mapicons/shopping_car.glow.20.png b/website/images/mapicons/shopping_car.glow.20.png new file mode 100644 index 00000000..f3d1ffde Binary files /dev/null and b/website/images/mapicons/shopping_car.glow.20.png differ diff --git a/website/images/mapicons/shopping_car.glow.24.png b/website/images/mapicons/shopping_car.glow.24.png new file mode 100644 index 00000000..9f58d356 Binary files /dev/null and b/website/images/mapicons/shopping_car.glow.24.png differ diff --git a/website/images/mapicons/shopping_car.glow.32.png b/website/images/mapicons/shopping_car.glow.32.png new file mode 100644 index 00000000..17a56ccc Binary files /dev/null and b/website/images/mapicons/shopping_car.glow.32.png differ diff --git a/website/images/mapicons/shopping_car.n.12.png b/website/images/mapicons/shopping_car.n.12.png new file mode 100644 index 00000000..41f96286 Binary files /dev/null and b/website/images/mapicons/shopping_car.n.12.png differ diff --git a/website/images/mapicons/shopping_car.n.16.png b/website/images/mapicons/shopping_car.n.16.png new file mode 100644 index 00000000..d8007605 Binary files /dev/null and b/website/images/mapicons/shopping_car.n.16.png differ diff --git a/website/images/mapicons/shopping_car.n.20.png b/website/images/mapicons/shopping_car.n.20.png new file mode 100644 index 00000000..f6155173 Binary files /dev/null and b/website/images/mapicons/shopping_car.n.20.png differ diff --git a/website/images/mapicons/shopping_car.n.24.png b/website/images/mapicons/shopping_car.n.24.png new file mode 100644 index 00000000..cefb9124 Binary files /dev/null and b/website/images/mapicons/shopping_car.n.24.png differ diff --git a/website/images/mapicons/shopping_car.n.32.png b/website/images/mapicons/shopping_car.n.32.png new file mode 100644 index 00000000..d93e70a7 Binary files /dev/null and b/website/images/mapicons/shopping_car.n.32.png differ diff --git a/website/images/mapicons/shopping_car.p.12.png b/website/images/mapicons/shopping_car.p.12.png new file mode 100644 index 00000000..04da81f9 Binary files /dev/null and b/website/images/mapicons/shopping_car.p.12.png differ diff --git a/website/images/mapicons/shopping_car.p.16.png b/website/images/mapicons/shopping_car.p.16.png new file mode 100644 index 00000000..e34715b3 Binary files /dev/null and b/website/images/mapicons/shopping_car.p.16.png differ diff --git a/website/images/mapicons/shopping_car.p.20.png b/website/images/mapicons/shopping_car.p.20.png new file mode 100644 index 00000000..35b83177 Binary files /dev/null and b/website/images/mapicons/shopping_car.p.20.png differ diff --git a/website/images/mapicons/shopping_car.p.24.png b/website/images/mapicons/shopping_car.p.24.png new file mode 100644 index 00000000..0f8057bc Binary files /dev/null and b/website/images/mapicons/shopping_car.p.24.png differ diff --git a/website/images/mapicons/shopping_car.p.32.png b/website/images/mapicons/shopping_car.p.32.png new file mode 100644 index 00000000..1604fb47 Binary files /dev/null and b/website/images/mapicons/shopping_car.p.32.png differ diff --git a/website/images/mapicons/shopping_car_repair.glow.12.png b/website/images/mapicons/shopping_car_repair.glow.12.png new file mode 100644 index 00000000..0cf18454 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.glow.12.png differ diff --git a/website/images/mapicons/shopping_car_repair.glow.16.png b/website/images/mapicons/shopping_car_repair.glow.16.png new file mode 100644 index 00000000..9ad96d5e Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.glow.16.png differ diff --git a/website/images/mapicons/shopping_car_repair.glow.20.png b/website/images/mapicons/shopping_car_repair.glow.20.png new file mode 100644 index 00000000..fbe8fe33 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.glow.20.png differ diff --git a/website/images/mapicons/shopping_car_repair.glow.24.png b/website/images/mapicons/shopping_car_repair.glow.24.png new file mode 100644 index 00000000..9f3838e4 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.glow.24.png differ diff --git a/website/images/mapicons/shopping_car_repair.glow.32.png b/website/images/mapicons/shopping_car_repair.glow.32.png new file mode 100644 index 00000000..bbf0a7dc Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.glow.32.png differ diff --git a/website/images/mapicons/shopping_car_repair.n.12.png b/website/images/mapicons/shopping_car_repair.n.12.png new file mode 100644 index 00000000..4e3fb951 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.n.12.png differ diff --git a/website/images/mapicons/shopping_car_repair.n.16.png b/website/images/mapicons/shopping_car_repair.n.16.png new file mode 100644 index 00000000..78c578d7 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.n.16.png differ diff --git a/website/images/mapicons/shopping_car_repair.n.20.png b/website/images/mapicons/shopping_car_repair.n.20.png new file mode 100644 index 00000000..ddb94385 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.n.20.png differ diff --git a/website/images/mapicons/shopping_car_repair.n.24.png b/website/images/mapicons/shopping_car_repair.n.24.png new file mode 100644 index 00000000..6abdcb7f Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.n.24.png differ diff --git a/website/images/mapicons/shopping_car_repair.n.32.png b/website/images/mapicons/shopping_car_repair.n.32.png new file mode 100644 index 00000000..908fe5df Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.n.32.png differ diff --git a/website/images/mapicons/shopping_car_repair.p.12.png b/website/images/mapicons/shopping_car_repair.p.12.png new file mode 100644 index 00000000..a117a3a1 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.p.12.png differ diff --git a/website/images/mapicons/shopping_car_repair.p.16.png b/website/images/mapicons/shopping_car_repair.p.16.png new file mode 100644 index 00000000..9c387775 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.p.16.png differ diff --git a/website/images/mapicons/shopping_car_repair.p.20.png b/website/images/mapicons/shopping_car_repair.p.20.png new file mode 100644 index 00000000..9d5250ae Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.p.20.png differ diff --git a/website/images/mapicons/shopping_car_repair.p.24.png b/website/images/mapicons/shopping_car_repair.p.24.png new file mode 100644 index 00000000..c2b25b24 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.p.24.png differ diff --git a/website/images/mapicons/shopping_car_repair.p.32.png b/website/images/mapicons/shopping_car_repair.p.32.png new file mode 100644 index 00000000..7f61c532 Binary files /dev/null and b/website/images/mapicons/shopping_car_repair.p.32.png differ diff --git a/website/images/mapicons/shopping_clothes.glow.12.png b/website/images/mapicons/shopping_clothes.glow.12.png new file mode 100644 index 00000000..4bb6de82 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.glow.12.png differ diff --git a/website/images/mapicons/shopping_clothes.glow.16.png b/website/images/mapicons/shopping_clothes.glow.16.png new file mode 100644 index 00000000..20ea4bba Binary files /dev/null and b/website/images/mapicons/shopping_clothes.glow.16.png differ diff --git a/website/images/mapicons/shopping_clothes.glow.20.png b/website/images/mapicons/shopping_clothes.glow.20.png new file mode 100644 index 00000000..b011c2bc Binary files /dev/null and b/website/images/mapicons/shopping_clothes.glow.20.png differ diff --git a/website/images/mapicons/shopping_clothes.glow.24.png b/website/images/mapicons/shopping_clothes.glow.24.png new file mode 100644 index 00000000..c585b6b9 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.glow.24.png differ diff --git a/website/images/mapicons/shopping_clothes.glow.32.png b/website/images/mapicons/shopping_clothes.glow.32.png new file mode 100644 index 00000000..10f2415e Binary files /dev/null and b/website/images/mapicons/shopping_clothes.glow.32.png differ diff --git a/website/images/mapicons/shopping_clothes.n.12.png b/website/images/mapicons/shopping_clothes.n.12.png new file mode 100644 index 00000000..e92434b6 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.n.12.png differ diff --git a/website/images/mapicons/shopping_clothes.n.16.png b/website/images/mapicons/shopping_clothes.n.16.png new file mode 100644 index 00000000..d467b786 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.n.16.png differ diff --git a/website/images/mapicons/shopping_clothes.n.20.png b/website/images/mapicons/shopping_clothes.n.20.png new file mode 100644 index 00000000..4efdade2 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.n.20.png differ diff --git a/website/images/mapicons/shopping_clothes.n.24.png b/website/images/mapicons/shopping_clothes.n.24.png new file mode 100644 index 00000000..e5c7089d Binary files /dev/null and b/website/images/mapicons/shopping_clothes.n.24.png differ diff --git a/website/images/mapicons/shopping_clothes.n.32.png b/website/images/mapicons/shopping_clothes.n.32.png new file mode 100644 index 00000000..af66df6a Binary files /dev/null and b/website/images/mapicons/shopping_clothes.n.32.png differ diff --git a/website/images/mapicons/shopping_clothes.p.12.png b/website/images/mapicons/shopping_clothes.p.12.png new file mode 100644 index 00000000..724d65c2 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.p.12.png differ diff --git a/website/images/mapicons/shopping_clothes.p.16.png b/website/images/mapicons/shopping_clothes.p.16.png new file mode 100644 index 00000000..45fc03de Binary files /dev/null and b/website/images/mapicons/shopping_clothes.p.16.png differ diff --git a/website/images/mapicons/shopping_clothes.p.20.png b/website/images/mapicons/shopping_clothes.p.20.png new file mode 100644 index 00000000..544fae43 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.p.20.png differ diff --git a/website/images/mapicons/shopping_clothes.p.24.png b/website/images/mapicons/shopping_clothes.p.24.png new file mode 100644 index 00000000..7808f499 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.p.24.png differ diff --git a/website/images/mapicons/shopping_clothes.p.32.png b/website/images/mapicons/shopping_clothes.p.32.png new file mode 100644 index 00000000..5418ea98 Binary files /dev/null and b/website/images/mapicons/shopping_clothes.p.32.png differ diff --git a/website/images/mapicons/shopping_confectionery.glow.12.png b/website/images/mapicons/shopping_confectionery.glow.12.png new file mode 100644 index 00000000..154fbad6 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.glow.12.png differ diff --git a/website/images/mapicons/shopping_confectionery.glow.16.png b/website/images/mapicons/shopping_confectionery.glow.16.png new file mode 100644 index 00000000..96ebc036 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.glow.16.png differ diff --git a/website/images/mapicons/shopping_confectionery.glow.20.png b/website/images/mapicons/shopping_confectionery.glow.20.png new file mode 100644 index 00000000..df3ff60a Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.glow.20.png differ diff --git a/website/images/mapicons/shopping_confectionery.glow.24.png b/website/images/mapicons/shopping_confectionery.glow.24.png new file mode 100644 index 00000000..42e22138 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.glow.24.png differ diff --git a/website/images/mapicons/shopping_confectionery.glow.32.png b/website/images/mapicons/shopping_confectionery.glow.32.png new file mode 100644 index 00000000..bc18366b Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.glow.32.png differ diff --git a/website/images/mapicons/shopping_confectionery.n.12.png b/website/images/mapicons/shopping_confectionery.n.12.png new file mode 100644 index 00000000..dfab2f0f Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.n.12.png differ diff --git a/website/images/mapicons/shopping_confectionery.n.16.png b/website/images/mapicons/shopping_confectionery.n.16.png new file mode 100644 index 00000000..b293dfdc Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.n.16.png differ diff --git a/website/images/mapicons/shopping_confectionery.n.20.png b/website/images/mapicons/shopping_confectionery.n.20.png new file mode 100644 index 00000000..1624134c Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.n.20.png differ diff --git a/website/images/mapicons/shopping_confectionery.n.24.png b/website/images/mapicons/shopping_confectionery.n.24.png new file mode 100644 index 00000000..2e1dbaef Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.n.24.png differ diff --git a/website/images/mapicons/shopping_confectionery.n.32.png b/website/images/mapicons/shopping_confectionery.n.32.png new file mode 100644 index 00000000..7d99cc0a Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.n.32.png differ diff --git a/website/images/mapicons/shopping_confectionery.p.12.png b/website/images/mapicons/shopping_confectionery.p.12.png new file mode 100644 index 00000000..ebfda09b Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.p.12.png differ diff --git a/website/images/mapicons/shopping_confectionery.p.16.png b/website/images/mapicons/shopping_confectionery.p.16.png new file mode 100644 index 00000000..8ee3f88c Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.p.16.png differ diff --git a/website/images/mapicons/shopping_confectionery.p.20.png b/website/images/mapicons/shopping_confectionery.p.20.png new file mode 100644 index 00000000..0e33a650 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.p.20.png differ diff --git a/website/images/mapicons/shopping_confectionery.p.24.png b/website/images/mapicons/shopping_confectionery.p.24.png new file mode 100644 index 00000000..d2a5a8c9 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.p.24.png differ diff --git a/website/images/mapicons/shopping_confectionery.p.32.png b/website/images/mapicons/shopping_confectionery.p.32.png new file mode 100644 index 00000000..cdc7fff7 Binary files /dev/null and b/website/images/mapicons/shopping_confectionery.p.32.png differ diff --git a/website/images/mapicons/shopping_convenience.glow.12.png b/website/images/mapicons/shopping_convenience.glow.12.png new file mode 100644 index 00000000..c0e4b650 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.glow.12.png differ diff --git a/website/images/mapicons/shopping_convenience.glow.16.png b/website/images/mapicons/shopping_convenience.glow.16.png new file mode 100644 index 00000000..039a95fd Binary files /dev/null and b/website/images/mapicons/shopping_convenience.glow.16.png differ diff --git a/website/images/mapicons/shopping_convenience.glow.20.png b/website/images/mapicons/shopping_convenience.glow.20.png new file mode 100644 index 00000000..0ec8f475 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.glow.20.png differ diff --git a/website/images/mapicons/shopping_convenience.glow.24.png b/website/images/mapicons/shopping_convenience.glow.24.png new file mode 100644 index 00000000..1c03cc91 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.glow.24.png differ diff --git a/website/images/mapicons/shopping_convenience.glow.32.png b/website/images/mapicons/shopping_convenience.glow.32.png new file mode 100644 index 00000000..dcf6350b Binary files /dev/null and b/website/images/mapicons/shopping_convenience.glow.32.png differ diff --git a/website/images/mapicons/shopping_convenience.n.12.png b/website/images/mapicons/shopping_convenience.n.12.png new file mode 100644 index 00000000..18fcc5cc Binary files /dev/null and b/website/images/mapicons/shopping_convenience.n.12.png differ diff --git a/website/images/mapicons/shopping_convenience.n.16.png b/website/images/mapicons/shopping_convenience.n.16.png new file mode 100644 index 00000000..40fa49d9 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.n.16.png differ diff --git a/website/images/mapicons/shopping_convenience.n.20.png b/website/images/mapicons/shopping_convenience.n.20.png new file mode 100644 index 00000000..279a35ff Binary files /dev/null and b/website/images/mapicons/shopping_convenience.n.20.png differ diff --git a/website/images/mapicons/shopping_convenience.n.24.png b/website/images/mapicons/shopping_convenience.n.24.png new file mode 100644 index 00000000..7a356339 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.n.24.png differ diff --git a/website/images/mapicons/shopping_convenience.n.32.png b/website/images/mapicons/shopping_convenience.n.32.png new file mode 100644 index 00000000..69327160 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.n.32.png differ diff --git a/website/images/mapicons/shopping_convenience.p.12.png b/website/images/mapicons/shopping_convenience.p.12.png new file mode 100644 index 00000000..27415835 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.p.12.png differ diff --git a/website/images/mapicons/shopping_convenience.p.16.png b/website/images/mapicons/shopping_convenience.p.16.png new file mode 100644 index 00000000..086fa1b2 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.p.16.png differ diff --git a/website/images/mapicons/shopping_convenience.p.20.png b/website/images/mapicons/shopping_convenience.p.20.png new file mode 100644 index 00000000..330636e8 Binary files /dev/null and b/website/images/mapicons/shopping_convenience.p.20.png differ diff --git a/website/images/mapicons/shopping_convenience.p.24.png b/website/images/mapicons/shopping_convenience.p.24.png new file mode 100644 index 00000000..0ad12efd Binary files /dev/null and b/website/images/mapicons/shopping_convenience.p.24.png differ diff --git a/website/images/mapicons/shopping_convenience.p.32.png b/website/images/mapicons/shopping_convenience.p.32.png new file mode 100644 index 00000000..18365dfd Binary files /dev/null and b/website/images/mapicons/shopping_convenience.p.32.png differ diff --git a/website/images/mapicons/shopping_diy.glow.12.png b/website/images/mapicons/shopping_diy.glow.12.png new file mode 100644 index 00000000..87e5049a Binary files /dev/null and b/website/images/mapicons/shopping_diy.glow.12.png differ diff --git a/website/images/mapicons/shopping_diy.glow.16.png b/website/images/mapicons/shopping_diy.glow.16.png new file mode 100644 index 00000000..09fda96a Binary files /dev/null and b/website/images/mapicons/shopping_diy.glow.16.png differ diff --git a/website/images/mapicons/shopping_diy.glow.20.png b/website/images/mapicons/shopping_diy.glow.20.png new file mode 100644 index 00000000..233dcf48 Binary files /dev/null and b/website/images/mapicons/shopping_diy.glow.20.png differ diff --git a/website/images/mapicons/shopping_diy.glow.24.png b/website/images/mapicons/shopping_diy.glow.24.png new file mode 100644 index 00000000..449c54f9 Binary files /dev/null and b/website/images/mapicons/shopping_diy.glow.24.png differ diff --git a/website/images/mapicons/shopping_diy.glow.32.png b/website/images/mapicons/shopping_diy.glow.32.png new file mode 100644 index 00000000..fcb5496f Binary files /dev/null and b/website/images/mapicons/shopping_diy.glow.32.png differ diff --git a/website/images/mapicons/shopping_diy.n.12.png b/website/images/mapicons/shopping_diy.n.12.png new file mode 100644 index 00000000..abab7dbf Binary files /dev/null and b/website/images/mapicons/shopping_diy.n.12.png differ diff --git a/website/images/mapicons/shopping_diy.n.16.png b/website/images/mapicons/shopping_diy.n.16.png new file mode 100644 index 00000000..045696ca Binary files /dev/null and b/website/images/mapicons/shopping_diy.n.16.png differ diff --git a/website/images/mapicons/shopping_diy.n.20.png b/website/images/mapicons/shopping_diy.n.20.png new file mode 100644 index 00000000..9de827ac Binary files /dev/null and b/website/images/mapicons/shopping_diy.n.20.png differ diff --git a/website/images/mapicons/shopping_diy.n.24.png b/website/images/mapicons/shopping_diy.n.24.png new file mode 100644 index 00000000..c8236cba Binary files /dev/null and b/website/images/mapicons/shopping_diy.n.24.png differ diff --git a/website/images/mapicons/shopping_diy.n.32.png b/website/images/mapicons/shopping_diy.n.32.png new file mode 100644 index 00000000..e7462e98 Binary files /dev/null and b/website/images/mapicons/shopping_diy.n.32.png differ diff --git a/website/images/mapicons/shopping_diy.p.12.png b/website/images/mapicons/shopping_diy.p.12.png new file mode 100644 index 00000000..4283ec56 Binary files /dev/null and b/website/images/mapicons/shopping_diy.p.12.png differ diff --git a/website/images/mapicons/shopping_diy.p.16.png b/website/images/mapicons/shopping_diy.p.16.png new file mode 100644 index 00000000..29c81b9d Binary files /dev/null and b/website/images/mapicons/shopping_diy.p.16.png differ diff --git a/website/images/mapicons/shopping_diy.p.20.png b/website/images/mapicons/shopping_diy.p.20.png new file mode 100644 index 00000000..683f8e19 Binary files /dev/null and b/website/images/mapicons/shopping_diy.p.20.png differ diff --git a/website/images/mapicons/shopping_diy.p.24.png b/website/images/mapicons/shopping_diy.p.24.png new file mode 100644 index 00000000..893e2981 Binary files /dev/null and b/website/images/mapicons/shopping_diy.p.24.png differ diff --git a/website/images/mapicons/shopping_diy.p.32.png b/website/images/mapicons/shopping_diy.p.32.png new file mode 100644 index 00000000..4c2df3a3 Binary files /dev/null and b/website/images/mapicons/shopping_diy.p.32.png differ diff --git a/website/images/mapicons/shopping_estateagent.glow.12.png b/website/images/mapicons/shopping_estateagent.glow.12.png new file mode 100644 index 00000000..23fac3d9 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.glow.12.png differ diff --git a/website/images/mapicons/shopping_estateagent.glow.16.png b/website/images/mapicons/shopping_estateagent.glow.16.png new file mode 100644 index 00000000..14f1c3e4 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.glow.16.png differ diff --git a/website/images/mapicons/shopping_estateagent.glow.20.png b/website/images/mapicons/shopping_estateagent.glow.20.png new file mode 100644 index 00000000..43f11d05 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.glow.20.png differ diff --git a/website/images/mapicons/shopping_estateagent.glow.24.png b/website/images/mapicons/shopping_estateagent.glow.24.png new file mode 100644 index 00000000..6520ee98 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.glow.24.png differ diff --git a/website/images/mapicons/shopping_estateagent.glow.32.png b/website/images/mapicons/shopping_estateagent.glow.32.png new file mode 100644 index 00000000..49b16ec8 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.glow.32.png differ diff --git a/website/images/mapicons/shopping_estateagent.n.12.png b/website/images/mapicons/shopping_estateagent.n.12.png new file mode 100644 index 00000000..8a81209a Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.n.12.png differ diff --git a/website/images/mapicons/shopping_estateagent.n.16.png b/website/images/mapicons/shopping_estateagent.n.16.png new file mode 100644 index 00000000..3bc46076 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.n.16.png differ diff --git a/website/images/mapicons/shopping_estateagent.n.20.png b/website/images/mapicons/shopping_estateagent.n.20.png new file mode 100644 index 00000000..d384dc71 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.n.20.png differ diff --git a/website/images/mapicons/shopping_estateagent.n.24.png b/website/images/mapicons/shopping_estateagent.n.24.png new file mode 100644 index 00000000..d74f1aeb Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.n.24.png differ diff --git a/website/images/mapicons/shopping_estateagent.n.32.png b/website/images/mapicons/shopping_estateagent.n.32.png new file mode 100644 index 00000000..09e70ed6 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.n.32.png differ diff --git a/website/images/mapicons/shopping_estateagent.p.12.png b/website/images/mapicons/shopping_estateagent.p.12.png new file mode 100644 index 00000000..85fd05d1 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.p.12.png differ diff --git a/website/images/mapicons/shopping_estateagent.p.16.png b/website/images/mapicons/shopping_estateagent.p.16.png new file mode 100644 index 00000000..76547a27 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.p.16.png differ diff --git a/website/images/mapicons/shopping_estateagent.p.20.png b/website/images/mapicons/shopping_estateagent.p.20.png new file mode 100644 index 00000000..9aa74754 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.p.20.png differ diff --git a/website/images/mapicons/shopping_estateagent.p.24.png b/website/images/mapicons/shopping_estateagent.p.24.png new file mode 100644 index 00000000..f1b89b49 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.p.24.png differ diff --git a/website/images/mapicons/shopping_estateagent.p.32.png b/website/images/mapicons/shopping_estateagent.p.32.png new file mode 100644 index 00000000..9d2fb8b7 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent.p.32.png differ diff --git a/website/images/mapicons/shopping_estateagent2.glow.12.png b/website/images/mapicons/shopping_estateagent2.glow.12.png new file mode 100644 index 00000000..7898c0cb Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.glow.12.png differ diff --git a/website/images/mapicons/shopping_estateagent2.glow.16.png b/website/images/mapicons/shopping_estateagent2.glow.16.png new file mode 100644 index 00000000..a8601154 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.glow.16.png differ diff --git a/website/images/mapicons/shopping_estateagent2.glow.20.png b/website/images/mapicons/shopping_estateagent2.glow.20.png new file mode 100644 index 00000000..5aae0527 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.glow.20.png differ diff --git a/website/images/mapicons/shopping_estateagent2.glow.24.png b/website/images/mapicons/shopping_estateagent2.glow.24.png new file mode 100644 index 00000000..e00a3681 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.glow.24.png differ diff --git a/website/images/mapicons/shopping_estateagent2.glow.32.png b/website/images/mapicons/shopping_estateagent2.glow.32.png new file mode 100644 index 00000000..170fb9ed Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.glow.32.png differ diff --git a/website/images/mapicons/shopping_estateagent2.n.12.png b/website/images/mapicons/shopping_estateagent2.n.12.png new file mode 100644 index 00000000..0294dd12 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.n.12.png differ diff --git a/website/images/mapicons/shopping_estateagent2.n.16.png b/website/images/mapicons/shopping_estateagent2.n.16.png new file mode 100644 index 00000000..bc4d1879 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.n.16.png differ diff --git a/website/images/mapicons/shopping_estateagent2.n.20.png b/website/images/mapicons/shopping_estateagent2.n.20.png new file mode 100644 index 00000000..c4279905 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.n.20.png differ diff --git a/website/images/mapicons/shopping_estateagent2.n.24.png b/website/images/mapicons/shopping_estateagent2.n.24.png new file mode 100644 index 00000000..c397926c Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.n.24.png differ diff --git a/website/images/mapicons/shopping_estateagent2.n.32.png b/website/images/mapicons/shopping_estateagent2.n.32.png new file mode 100644 index 00000000..fe84cbd4 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.n.32.png differ diff --git a/website/images/mapicons/shopping_estateagent2.p.12.png b/website/images/mapicons/shopping_estateagent2.p.12.png new file mode 100644 index 00000000..267a3b8f Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.p.12.png differ diff --git a/website/images/mapicons/shopping_estateagent2.p.16.png b/website/images/mapicons/shopping_estateagent2.p.16.png new file mode 100644 index 00000000..fc2cecff Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.p.16.png differ diff --git a/website/images/mapicons/shopping_estateagent2.p.20.png b/website/images/mapicons/shopping_estateagent2.p.20.png new file mode 100644 index 00000000..225b814d Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.p.20.png differ diff --git a/website/images/mapicons/shopping_estateagent2.p.24.png b/website/images/mapicons/shopping_estateagent2.p.24.png new file mode 100644 index 00000000..8736ce52 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.p.24.png differ diff --git a/website/images/mapicons/shopping_estateagent2.p.32.png b/website/images/mapicons/shopping_estateagent2.p.32.png new file mode 100644 index 00000000..ad07fce3 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent2.p.32.png differ diff --git a/website/images/mapicons/shopping_estateagent3.glow.12.png b/website/images/mapicons/shopping_estateagent3.glow.12.png new file mode 100644 index 00000000..81f03b60 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.glow.12.png differ diff --git a/website/images/mapicons/shopping_estateagent3.glow.16.png b/website/images/mapicons/shopping_estateagent3.glow.16.png new file mode 100644 index 00000000..2d6e8fe1 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.glow.16.png differ diff --git a/website/images/mapicons/shopping_estateagent3.glow.20.png b/website/images/mapicons/shopping_estateagent3.glow.20.png new file mode 100644 index 00000000..7151f335 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.glow.20.png differ diff --git a/website/images/mapicons/shopping_estateagent3.glow.24.png b/website/images/mapicons/shopping_estateagent3.glow.24.png new file mode 100644 index 00000000..ec4a69c1 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.glow.24.png differ diff --git a/website/images/mapicons/shopping_estateagent3.glow.32.png b/website/images/mapicons/shopping_estateagent3.glow.32.png new file mode 100644 index 00000000..3798fadb Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.glow.32.png differ diff --git a/website/images/mapicons/shopping_estateagent3.n.12.png b/website/images/mapicons/shopping_estateagent3.n.12.png new file mode 100644 index 00000000..90a0dece Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.n.12.png differ diff --git a/website/images/mapicons/shopping_estateagent3.n.16.png b/website/images/mapicons/shopping_estateagent3.n.16.png new file mode 100644 index 00000000..d8c9e064 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.n.16.png differ diff --git a/website/images/mapicons/shopping_estateagent3.n.20.png b/website/images/mapicons/shopping_estateagent3.n.20.png new file mode 100644 index 00000000..9d477355 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.n.20.png differ diff --git a/website/images/mapicons/shopping_estateagent3.n.24.png b/website/images/mapicons/shopping_estateagent3.n.24.png new file mode 100644 index 00000000..c52b3f22 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.n.24.png differ diff --git a/website/images/mapicons/shopping_estateagent3.n.32.png b/website/images/mapicons/shopping_estateagent3.n.32.png new file mode 100644 index 00000000..cb585ee2 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.n.32.png differ diff --git a/website/images/mapicons/shopping_estateagent3.p.12.png b/website/images/mapicons/shopping_estateagent3.p.12.png new file mode 100644 index 00000000..89dbdcdb Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.p.12.png differ diff --git a/website/images/mapicons/shopping_estateagent3.p.16.png b/website/images/mapicons/shopping_estateagent3.p.16.png new file mode 100644 index 00000000..6dc38e0b Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.p.16.png differ diff --git a/website/images/mapicons/shopping_estateagent3.p.20.png b/website/images/mapicons/shopping_estateagent3.p.20.png new file mode 100644 index 00000000..17648551 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.p.20.png differ diff --git a/website/images/mapicons/shopping_estateagent3.p.24.png b/website/images/mapicons/shopping_estateagent3.p.24.png new file mode 100644 index 00000000..c53a4cc6 Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.p.24.png differ diff --git a/website/images/mapicons/shopping_estateagent3.p.32.png b/website/images/mapicons/shopping_estateagent3.p.32.png new file mode 100644 index 00000000..bd4f0cba Binary files /dev/null and b/website/images/mapicons/shopping_estateagent3.p.32.png differ diff --git a/website/images/mapicons/shopping_fish.glow.12.png b/website/images/mapicons/shopping_fish.glow.12.png new file mode 100644 index 00000000..8439ba87 Binary files /dev/null and b/website/images/mapicons/shopping_fish.glow.12.png differ diff --git a/website/images/mapicons/shopping_fish.glow.16.png b/website/images/mapicons/shopping_fish.glow.16.png new file mode 100644 index 00000000..b2a69d5b Binary files /dev/null and b/website/images/mapicons/shopping_fish.glow.16.png differ diff --git a/website/images/mapicons/shopping_fish.glow.20.png b/website/images/mapicons/shopping_fish.glow.20.png new file mode 100644 index 00000000..024eb9ef Binary files /dev/null and b/website/images/mapicons/shopping_fish.glow.20.png differ diff --git a/website/images/mapicons/shopping_fish.glow.24.png b/website/images/mapicons/shopping_fish.glow.24.png new file mode 100644 index 00000000..9156b8bd Binary files /dev/null and b/website/images/mapicons/shopping_fish.glow.24.png differ diff --git a/website/images/mapicons/shopping_fish.glow.32.png b/website/images/mapicons/shopping_fish.glow.32.png new file mode 100644 index 00000000..15fcfd99 Binary files /dev/null and b/website/images/mapicons/shopping_fish.glow.32.png differ diff --git a/website/images/mapicons/shopping_fish.n.12.png b/website/images/mapicons/shopping_fish.n.12.png new file mode 100644 index 00000000..bb06415e Binary files /dev/null and b/website/images/mapicons/shopping_fish.n.12.png differ diff --git a/website/images/mapicons/shopping_fish.n.16.png b/website/images/mapicons/shopping_fish.n.16.png new file mode 100644 index 00000000..f49d4e9f Binary files /dev/null and b/website/images/mapicons/shopping_fish.n.16.png differ diff --git a/website/images/mapicons/shopping_fish.n.20.png b/website/images/mapicons/shopping_fish.n.20.png new file mode 100644 index 00000000..48d9c21d Binary files /dev/null and b/website/images/mapicons/shopping_fish.n.20.png differ diff --git a/website/images/mapicons/shopping_fish.n.24.png b/website/images/mapicons/shopping_fish.n.24.png new file mode 100644 index 00000000..fe5eccee Binary files /dev/null and b/website/images/mapicons/shopping_fish.n.24.png differ diff --git a/website/images/mapicons/shopping_fish.n.32.png b/website/images/mapicons/shopping_fish.n.32.png new file mode 100644 index 00000000..637fe463 Binary files /dev/null and b/website/images/mapicons/shopping_fish.n.32.png differ diff --git a/website/images/mapicons/shopping_fish.p.12.png b/website/images/mapicons/shopping_fish.p.12.png new file mode 100644 index 00000000..008b13e6 Binary files /dev/null and b/website/images/mapicons/shopping_fish.p.12.png differ diff --git a/website/images/mapicons/shopping_fish.p.16.png b/website/images/mapicons/shopping_fish.p.16.png new file mode 100644 index 00000000..7e0eabbb Binary files /dev/null and b/website/images/mapicons/shopping_fish.p.16.png differ diff --git a/website/images/mapicons/shopping_fish.p.20.png b/website/images/mapicons/shopping_fish.p.20.png new file mode 100644 index 00000000..c4a397e3 Binary files /dev/null and b/website/images/mapicons/shopping_fish.p.20.png differ diff --git a/website/images/mapicons/shopping_fish.p.24.png b/website/images/mapicons/shopping_fish.p.24.png new file mode 100644 index 00000000..0112c90c Binary files /dev/null and b/website/images/mapicons/shopping_fish.p.24.png differ diff --git a/website/images/mapicons/shopping_fish.p.32.png b/website/images/mapicons/shopping_fish.p.32.png new file mode 100644 index 00000000..f8fb2f88 Binary files /dev/null and b/website/images/mapicons/shopping_fish.p.32.png differ diff --git a/website/images/mapicons/shopping_garden_centre.glow.12.png b/website/images/mapicons/shopping_garden_centre.glow.12.png new file mode 100644 index 00000000..f9f764dd Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.glow.12.png differ diff --git a/website/images/mapicons/shopping_garden_centre.glow.16.png b/website/images/mapicons/shopping_garden_centre.glow.16.png new file mode 100644 index 00000000..81ce3e3a Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.glow.16.png differ diff --git a/website/images/mapicons/shopping_garden_centre.glow.20.png b/website/images/mapicons/shopping_garden_centre.glow.20.png new file mode 100644 index 00000000..c4da1388 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.glow.20.png differ diff --git a/website/images/mapicons/shopping_garden_centre.glow.24.png b/website/images/mapicons/shopping_garden_centre.glow.24.png new file mode 100644 index 00000000..235d1822 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.glow.24.png differ diff --git a/website/images/mapicons/shopping_garden_centre.glow.32.png b/website/images/mapicons/shopping_garden_centre.glow.32.png new file mode 100644 index 00000000..1aab9938 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.glow.32.png differ diff --git a/website/images/mapicons/shopping_garden_centre.n.12.png b/website/images/mapicons/shopping_garden_centre.n.12.png new file mode 100644 index 00000000..b8e0fda5 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.n.12.png differ diff --git a/website/images/mapicons/shopping_garden_centre.n.16.png b/website/images/mapicons/shopping_garden_centre.n.16.png new file mode 100644 index 00000000..37d2ecc8 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.n.16.png differ diff --git a/website/images/mapicons/shopping_garden_centre.n.20.png b/website/images/mapicons/shopping_garden_centre.n.20.png new file mode 100644 index 00000000..483a2a80 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.n.20.png differ diff --git a/website/images/mapicons/shopping_garden_centre.n.24.png b/website/images/mapicons/shopping_garden_centre.n.24.png new file mode 100644 index 00000000..416247f3 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.n.24.png differ diff --git a/website/images/mapicons/shopping_garden_centre.n.32.png b/website/images/mapicons/shopping_garden_centre.n.32.png new file mode 100644 index 00000000..206ed134 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.n.32.png differ diff --git a/website/images/mapicons/shopping_garden_centre.p.12.png b/website/images/mapicons/shopping_garden_centre.p.12.png new file mode 100644 index 00000000..76456c5a Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.p.12.png differ diff --git a/website/images/mapicons/shopping_garden_centre.p.16.png b/website/images/mapicons/shopping_garden_centre.p.16.png new file mode 100644 index 00000000..ca07d430 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.p.16.png differ diff --git a/website/images/mapicons/shopping_garden_centre.p.20.png b/website/images/mapicons/shopping_garden_centre.p.20.png new file mode 100644 index 00000000..c05a6839 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.p.20.png differ diff --git a/website/images/mapicons/shopping_garden_centre.p.24.png b/website/images/mapicons/shopping_garden_centre.p.24.png new file mode 100644 index 00000000..c9cda902 Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.p.24.png differ diff --git a/website/images/mapicons/shopping_garden_centre.p.32.png b/website/images/mapicons/shopping_garden_centre.p.32.png new file mode 100644 index 00000000..e5e3a87e Binary files /dev/null and b/website/images/mapicons/shopping_garden_centre.p.32.png differ diff --git a/website/images/mapicons/shopping_gift.glow.12.png b/website/images/mapicons/shopping_gift.glow.12.png new file mode 100644 index 00000000..3aa0be38 Binary files /dev/null and b/website/images/mapicons/shopping_gift.glow.12.png differ diff --git a/website/images/mapicons/shopping_gift.glow.16.png b/website/images/mapicons/shopping_gift.glow.16.png new file mode 100644 index 00000000..24ddaa81 Binary files /dev/null and b/website/images/mapicons/shopping_gift.glow.16.png differ diff --git a/website/images/mapicons/shopping_gift.glow.20.png b/website/images/mapicons/shopping_gift.glow.20.png new file mode 100644 index 00000000..a03780f7 Binary files /dev/null and b/website/images/mapicons/shopping_gift.glow.20.png differ diff --git a/website/images/mapicons/shopping_gift.glow.24.png b/website/images/mapicons/shopping_gift.glow.24.png new file mode 100644 index 00000000..90f4c02a Binary files /dev/null and b/website/images/mapicons/shopping_gift.glow.24.png differ diff --git a/website/images/mapicons/shopping_gift.glow.32.png b/website/images/mapicons/shopping_gift.glow.32.png new file mode 100644 index 00000000..0dc7caae Binary files /dev/null and b/website/images/mapicons/shopping_gift.glow.32.png differ diff --git a/website/images/mapicons/shopping_gift.n.12.png b/website/images/mapicons/shopping_gift.n.12.png new file mode 100644 index 00000000..7ffa6fe2 Binary files /dev/null and b/website/images/mapicons/shopping_gift.n.12.png differ diff --git a/website/images/mapicons/shopping_gift.n.16.png b/website/images/mapicons/shopping_gift.n.16.png new file mode 100644 index 00000000..2d11d041 Binary files /dev/null and b/website/images/mapicons/shopping_gift.n.16.png differ diff --git a/website/images/mapicons/shopping_gift.n.20.png b/website/images/mapicons/shopping_gift.n.20.png new file mode 100644 index 00000000..fbe8aa4a Binary files /dev/null and b/website/images/mapicons/shopping_gift.n.20.png differ diff --git a/website/images/mapicons/shopping_gift.n.24.png b/website/images/mapicons/shopping_gift.n.24.png new file mode 100644 index 00000000..a8161780 Binary files /dev/null and b/website/images/mapicons/shopping_gift.n.24.png differ diff --git a/website/images/mapicons/shopping_gift.n.32.png b/website/images/mapicons/shopping_gift.n.32.png new file mode 100644 index 00000000..51aaa59b Binary files /dev/null and b/website/images/mapicons/shopping_gift.n.32.png differ diff --git a/website/images/mapicons/shopping_gift.p.12.png b/website/images/mapicons/shopping_gift.p.12.png new file mode 100644 index 00000000..3861a2e1 Binary files /dev/null and b/website/images/mapicons/shopping_gift.p.12.png differ diff --git a/website/images/mapicons/shopping_gift.p.16.png b/website/images/mapicons/shopping_gift.p.16.png new file mode 100644 index 00000000..ac084f5f Binary files /dev/null and b/website/images/mapicons/shopping_gift.p.16.png differ diff --git a/website/images/mapicons/shopping_gift.p.20.png b/website/images/mapicons/shopping_gift.p.20.png new file mode 100644 index 00000000..1bc39a97 Binary files /dev/null and b/website/images/mapicons/shopping_gift.p.20.png differ diff --git a/website/images/mapicons/shopping_gift.p.24.png b/website/images/mapicons/shopping_gift.p.24.png new file mode 100644 index 00000000..22f553e3 Binary files /dev/null and b/website/images/mapicons/shopping_gift.p.24.png differ diff --git a/website/images/mapicons/shopping_gift.p.32.png b/website/images/mapicons/shopping_gift.p.32.png new file mode 100644 index 00000000..4aaf5de7 Binary files /dev/null and b/website/images/mapicons/shopping_gift.p.32.png differ diff --git a/website/images/mapicons/shopping_greengrocer.glow.12.png b/website/images/mapicons/shopping_greengrocer.glow.12.png new file mode 100644 index 00000000..85b19d5c Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.glow.12.png differ diff --git a/website/images/mapicons/shopping_greengrocer.glow.16.png b/website/images/mapicons/shopping_greengrocer.glow.16.png new file mode 100644 index 00000000..a64494ac Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.glow.16.png differ diff --git a/website/images/mapicons/shopping_greengrocer.glow.20.png b/website/images/mapicons/shopping_greengrocer.glow.20.png new file mode 100644 index 00000000..3d1ec824 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.glow.20.png differ diff --git a/website/images/mapicons/shopping_greengrocer.glow.24.png b/website/images/mapicons/shopping_greengrocer.glow.24.png new file mode 100644 index 00000000..6753f9aa Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.glow.24.png differ diff --git a/website/images/mapicons/shopping_greengrocer.glow.32.png b/website/images/mapicons/shopping_greengrocer.glow.32.png new file mode 100644 index 00000000..116563e0 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.glow.32.png differ diff --git a/website/images/mapicons/shopping_greengrocer.n.12.png b/website/images/mapicons/shopping_greengrocer.n.12.png new file mode 100644 index 00000000..bbaf0d5d Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.n.12.png differ diff --git a/website/images/mapicons/shopping_greengrocer.n.16.png b/website/images/mapicons/shopping_greengrocer.n.16.png new file mode 100644 index 00000000..7d60e359 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.n.16.png differ diff --git a/website/images/mapicons/shopping_greengrocer.n.20.png b/website/images/mapicons/shopping_greengrocer.n.20.png new file mode 100644 index 00000000..832e9dba Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.n.20.png differ diff --git a/website/images/mapicons/shopping_greengrocer.n.24.png b/website/images/mapicons/shopping_greengrocer.n.24.png new file mode 100644 index 00000000..ad402d55 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.n.24.png differ diff --git a/website/images/mapicons/shopping_greengrocer.n.32.png b/website/images/mapicons/shopping_greengrocer.n.32.png new file mode 100644 index 00000000..cff1ab9f Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.n.32.png differ diff --git a/website/images/mapicons/shopping_greengrocer.p.12.png b/website/images/mapicons/shopping_greengrocer.p.12.png new file mode 100644 index 00000000..ceeb4536 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.p.12.png differ diff --git a/website/images/mapicons/shopping_greengrocer.p.16.png b/website/images/mapicons/shopping_greengrocer.p.16.png new file mode 100644 index 00000000..abb2c523 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.p.16.png differ diff --git a/website/images/mapicons/shopping_greengrocer.p.20.png b/website/images/mapicons/shopping_greengrocer.p.20.png new file mode 100644 index 00000000..c717d2e7 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.p.20.png differ diff --git a/website/images/mapicons/shopping_greengrocer.p.24.png b/website/images/mapicons/shopping_greengrocer.p.24.png new file mode 100644 index 00000000..f03c6af0 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.p.24.png differ diff --git a/website/images/mapicons/shopping_greengrocer.p.32.png b/website/images/mapicons/shopping_greengrocer.p.32.png new file mode 100644 index 00000000..38a6d783 Binary files /dev/null and b/website/images/mapicons/shopping_greengrocer.p.32.png differ diff --git a/website/images/mapicons/shopping_hairdresser.glow.12.png b/website/images/mapicons/shopping_hairdresser.glow.12.png new file mode 100644 index 00000000..e20c3c18 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.glow.12.png differ diff --git a/website/images/mapicons/shopping_hairdresser.glow.16.png b/website/images/mapicons/shopping_hairdresser.glow.16.png new file mode 100644 index 00000000..0f282d0d Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.glow.16.png differ diff --git a/website/images/mapicons/shopping_hairdresser.glow.20.png b/website/images/mapicons/shopping_hairdresser.glow.20.png new file mode 100644 index 00000000..93564f14 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.glow.20.png differ diff --git a/website/images/mapicons/shopping_hairdresser.glow.24.png b/website/images/mapicons/shopping_hairdresser.glow.24.png new file mode 100644 index 00000000..8425d5ca Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.glow.24.png differ diff --git a/website/images/mapicons/shopping_hairdresser.glow.32.png b/website/images/mapicons/shopping_hairdresser.glow.32.png new file mode 100644 index 00000000..38d4563c Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.glow.32.png differ diff --git a/website/images/mapicons/shopping_hairdresser.n.12.png b/website/images/mapicons/shopping_hairdresser.n.12.png new file mode 100644 index 00000000..1cb74fbc Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.n.12.png differ diff --git a/website/images/mapicons/shopping_hairdresser.n.16.png b/website/images/mapicons/shopping_hairdresser.n.16.png new file mode 100644 index 00000000..bcb07fdf Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.n.16.png differ diff --git a/website/images/mapicons/shopping_hairdresser.n.20.png b/website/images/mapicons/shopping_hairdresser.n.20.png new file mode 100644 index 00000000..2bc64d14 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.n.20.png differ diff --git a/website/images/mapicons/shopping_hairdresser.n.24.png b/website/images/mapicons/shopping_hairdresser.n.24.png new file mode 100644 index 00000000..e844989f Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.n.24.png differ diff --git a/website/images/mapicons/shopping_hairdresser.n.32.png b/website/images/mapicons/shopping_hairdresser.n.32.png new file mode 100644 index 00000000..a1c2aa88 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.n.32.png differ diff --git a/website/images/mapicons/shopping_hairdresser.p.12.png b/website/images/mapicons/shopping_hairdresser.p.12.png new file mode 100644 index 00000000..ed2a84e2 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.p.12.png differ diff --git a/website/images/mapicons/shopping_hairdresser.p.16.png b/website/images/mapicons/shopping_hairdresser.p.16.png new file mode 100644 index 00000000..f0b2d431 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.p.16.png differ diff --git a/website/images/mapicons/shopping_hairdresser.p.20.png b/website/images/mapicons/shopping_hairdresser.p.20.png new file mode 100644 index 00000000..f23780b1 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.p.20.png differ diff --git a/website/images/mapicons/shopping_hairdresser.p.24.png b/website/images/mapicons/shopping_hairdresser.p.24.png new file mode 100644 index 00000000..b072bd65 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.p.24.png differ diff --git a/website/images/mapicons/shopping_hairdresser.p.32.png b/website/images/mapicons/shopping_hairdresser.p.32.png new file mode 100644 index 00000000..6d59e883 Binary files /dev/null and b/website/images/mapicons/shopping_hairdresser.p.32.png differ diff --git a/website/images/mapicons/shopping_hifi.glow.12.png b/website/images/mapicons/shopping_hifi.glow.12.png new file mode 100644 index 00000000..fd77d1fc Binary files /dev/null and b/website/images/mapicons/shopping_hifi.glow.12.png differ diff --git a/website/images/mapicons/shopping_hifi.glow.16.png b/website/images/mapicons/shopping_hifi.glow.16.png new file mode 100644 index 00000000..5ceaadf5 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.glow.16.png differ diff --git a/website/images/mapicons/shopping_hifi.glow.20.png b/website/images/mapicons/shopping_hifi.glow.20.png new file mode 100644 index 00000000..fdfc8595 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.glow.20.png differ diff --git a/website/images/mapicons/shopping_hifi.glow.24.png b/website/images/mapicons/shopping_hifi.glow.24.png new file mode 100644 index 00000000..3f56bfc9 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.glow.24.png differ diff --git a/website/images/mapicons/shopping_hifi.glow.32.png b/website/images/mapicons/shopping_hifi.glow.32.png new file mode 100644 index 00000000..ce63d431 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.glow.32.png differ diff --git a/website/images/mapicons/shopping_hifi.n.12.png b/website/images/mapicons/shopping_hifi.n.12.png new file mode 100644 index 00000000..319ceaf5 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.n.12.png differ diff --git a/website/images/mapicons/shopping_hifi.n.16.png b/website/images/mapicons/shopping_hifi.n.16.png new file mode 100644 index 00000000..f55ad666 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.n.16.png differ diff --git a/website/images/mapicons/shopping_hifi.n.20.png b/website/images/mapicons/shopping_hifi.n.20.png new file mode 100644 index 00000000..e673acdc Binary files /dev/null and b/website/images/mapicons/shopping_hifi.n.20.png differ diff --git a/website/images/mapicons/shopping_hifi.n.24.png b/website/images/mapicons/shopping_hifi.n.24.png new file mode 100644 index 00000000..66ec0b95 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.n.24.png differ diff --git a/website/images/mapicons/shopping_hifi.n.32.png b/website/images/mapicons/shopping_hifi.n.32.png new file mode 100644 index 00000000..308eb7e5 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.n.32.png differ diff --git a/website/images/mapicons/shopping_hifi.p.12.png b/website/images/mapicons/shopping_hifi.p.12.png new file mode 100644 index 00000000..60d3ca31 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.p.12.png differ diff --git a/website/images/mapicons/shopping_hifi.p.16.png b/website/images/mapicons/shopping_hifi.p.16.png new file mode 100644 index 00000000..5f921b32 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.p.16.png differ diff --git a/website/images/mapicons/shopping_hifi.p.20.png b/website/images/mapicons/shopping_hifi.p.20.png new file mode 100644 index 00000000..81603e49 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.p.20.png differ diff --git a/website/images/mapicons/shopping_hifi.p.24.png b/website/images/mapicons/shopping_hifi.p.24.png new file mode 100644 index 00000000..1312c614 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.p.24.png differ diff --git a/website/images/mapicons/shopping_hifi.p.32.png b/website/images/mapicons/shopping_hifi.p.32.png new file mode 100644 index 00000000..15b00519 Binary files /dev/null and b/website/images/mapicons/shopping_hifi.p.32.png differ diff --git a/website/images/mapicons/shopping_jewelry.glow.12.png b/website/images/mapicons/shopping_jewelry.glow.12.png new file mode 100644 index 00000000..45ee91e2 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.glow.12.png differ diff --git a/website/images/mapicons/shopping_jewelry.glow.16.png b/website/images/mapicons/shopping_jewelry.glow.16.png new file mode 100644 index 00000000..53af59cc Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.glow.16.png differ diff --git a/website/images/mapicons/shopping_jewelry.glow.20.png b/website/images/mapicons/shopping_jewelry.glow.20.png new file mode 100644 index 00000000..d952c664 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.glow.20.png differ diff --git a/website/images/mapicons/shopping_jewelry.glow.24.png b/website/images/mapicons/shopping_jewelry.glow.24.png new file mode 100644 index 00000000..56530adf Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.glow.24.png differ diff --git a/website/images/mapicons/shopping_jewelry.glow.32.png b/website/images/mapicons/shopping_jewelry.glow.32.png new file mode 100644 index 00000000..b4e5e307 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.glow.32.png differ diff --git a/website/images/mapicons/shopping_jewelry.n.12.png b/website/images/mapicons/shopping_jewelry.n.12.png new file mode 100644 index 00000000..7fe31354 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.n.12.png differ diff --git a/website/images/mapicons/shopping_jewelry.n.16.png b/website/images/mapicons/shopping_jewelry.n.16.png new file mode 100644 index 00000000..49ee19c2 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.n.16.png differ diff --git a/website/images/mapicons/shopping_jewelry.n.20.png b/website/images/mapicons/shopping_jewelry.n.20.png new file mode 100644 index 00000000..252b5a2d Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.n.20.png differ diff --git a/website/images/mapicons/shopping_jewelry.n.24.png b/website/images/mapicons/shopping_jewelry.n.24.png new file mode 100644 index 00000000..c3e8a519 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.n.24.png differ diff --git a/website/images/mapicons/shopping_jewelry.n.32.png b/website/images/mapicons/shopping_jewelry.n.32.png new file mode 100644 index 00000000..3c9240a0 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.n.32.png differ diff --git a/website/images/mapicons/shopping_jewelry.p.12.png b/website/images/mapicons/shopping_jewelry.p.12.png new file mode 100644 index 00000000..a1bf0631 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.p.12.png differ diff --git a/website/images/mapicons/shopping_jewelry.p.16.png b/website/images/mapicons/shopping_jewelry.p.16.png new file mode 100644 index 00000000..bb982559 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.p.16.png differ diff --git a/website/images/mapicons/shopping_jewelry.p.20.png b/website/images/mapicons/shopping_jewelry.p.20.png new file mode 100644 index 00000000..252da603 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.p.20.png differ diff --git a/website/images/mapicons/shopping_jewelry.p.24.png b/website/images/mapicons/shopping_jewelry.p.24.png new file mode 100644 index 00000000..5601e378 Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.p.24.png differ diff --git a/website/images/mapicons/shopping_jewelry.p.32.png b/website/images/mapicons/shopping_jewelry.p.32.png new file mode 100644 index 00000000..1938531d Binary files /dev/null and b/website/images/mapicons/shopping_jewelry.p.32.png differ diff --git a/website/images/mapicons/shopping_laundrette.glow.12.png b/website/images/mapicons/shopping_laundrette.glow.12.png new file mode 100644 index 00000000..da6300af Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.glow.12.png differ diff --git a/website/images/mapicons/shopping_laundrette.glow.16.png b/website/images/mapicons/shopping_laundrette.glow.16.png new file mode 100644 index 00000000..ddde5244 Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.glow.16.png differ diff --git a/website/images/mapicons/shopping_laundrette.glow.20.png b/website/images/mapicons/shopping_laundrette.glow.20.png new file mode 100644 index 00000000..53eb71ff Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.glow.20.png differ diff --git a/website/images/mapicons/shopping_laundrette.glow.24.png b/website/images/mapicons/shopping_laundrette.glow.24.png new file mode 100644 index 00000000..c7c456fd Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.glow.24.png differ diff --git a/website/images/mapicons/shopping_laundrette.glow.32.png b/website/images/mapicons/shopping_laundrette.glow.32.png new file mode 100644 index 00000000..39e323d0 Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.glow.32.png differ diff --git a/website/images/mapicons/shopping_laundrette.n.12.png b/website/images/mapicons/shopping_laundrette.n.12.png new file mode 100644 index 00000000..b159bf2b Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.n.12.png differ diff --git a/website/images/mapicons/shopping_laundrette.n.16.png b/website/images/mapicons/shopping_laundrette.n.16.png new file mode 100644 index 00000000..266660a2 Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.n.16.png differ diff --git a/website/images/mapicons/shopping_laundrette.n.20.png b/website/images/mapicons/shopping_laundrette.n.20.png new file mode 100644 index 00000000..43f5976c Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.n.20.png differ diff --git a/website/images/mapicons/shopping_laundrette.n.24.png b/website/images/mapicons/shopping_laundrette.n.24.png new file mode 100644 index 00000000..55a0ca2e Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.n.24.png differ diff --git a/website/images/mapicons/shopping_laundrette.n.32.png b/website/images/mapicons/shopping_laundrette.n.32.png new file mode 100644 index 00000000..bb31468c Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.n.32.png differ diff --git a/website/images/mapicons/shopping_laundrette.p.12.png b/website/images/mapicons/shopping_laundrette.p.12.png new file mode 100644 index 00000000..fd6abc9e Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.p.12.png differ diff --git a/website/images/mapicons/shopping_laundrette.p.16.png b/website/images/mapicons/shopping_laundrette.p.16.png new file mode 100644 index 00000000..ff98b0c5 Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.p.16.png differ diff --git a/website/images/mapicons/shopping_laundrette.p.20.png b/website/images/mapicons/shopping_laundrette.p.20.png new file mode 100644 index 00000000..58cef9ba Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.p.20.png differ diff --git a/website/images/mapicons/shopping_laundrette.p.24.png b/website/images/mapicons/shopping_laundrette.p.24.png new file mode 100644 index 00000000..b27e4866 Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.p.24.png differ diff --git a/website/images/mapicons/shopping_laundrette.p.32.png b/website/images/mapicons/shopping_laundrette.p.32.png new file mode 100644 index 00000000..2152986e Binary files /dev/null and b/website/images/mapicons/shopping_laundrette.p.32.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.glow.12.png b/website/images/mapicons/shopping_mobile_phone.glow.12.png new file mode 100644 index 00000000..8a5b5557 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.glow.12.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.glow.16.png b/website/images/mapicons/shopping_mobile_phone.glow.16.png new file mode 100644 index 00000000..9e64d458 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.glow.16.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.glow.20.png b/website/images/mapicons/shopping_mobile_phone.glow.20.png new file mode 100644 index 00000000..0d473b0c Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.glow.20.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.glow.24.png b/website/images/mapicons/shopping_mobile_phone.glow.24.png new file mode 100644 index 00000000..99b5276f Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.glow.24.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.glow.32.png b/website/images/mapicons/shopping_mobile_phone.glow.32.png new file mode 100644 index 00000000..d7c81948 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.glow.32.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.n.12.png b/website/images/mapicons/shopping_mobile_phone.n.12.png new file mode 100644 index 00000000..4243914c Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.n.12.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.n.16.png b/website/images/mapicons/shopping_mobile_phone.n.16.png new file mode 100644 index 00000000..a11c4b36 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.n.16.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.n.20.png b/website/images/mapicons/shopping_mobile_phone.n.20.png new file mode 100644 index 00000000..cb7e01ab Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.n.20.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.n.24.png b/website/images/mapicons/shopping_mobile_phone.n.24.png new file mode 100644 index 00000000..73784fe3 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.n.24.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.n.32.png b/website/images/mapicons/shopping_mobile_phone.n.32.png new file mode 100644 index 00000000..6ec77938 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.n.32.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.p.12.png b/website/images/mapicons/shopping_mobile_phone.p.12.png new file mode 100644 index 00000000..f1e4a309 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.p.12.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.p.16.png b/website/images/mapicons/shopping_mobile_phone.p.16.png new file mode 100644 index 00000000..133a887f Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.p.16.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.p.20.png b/website/images/mapicons/shopping_mobile_phone.p.20.png new file mode 100644 index 00000000..b753961b Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.p.20.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.p.24.png b/website/images/mapicons/shopping_mobile_phone.p.24.png new file mode 100644 index 00000000..61498d52 Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.p.24.png differ diff --git a/website/images/mapicons/shopping_mobile_phone.p.32.png b/website/images/mapicons/shopping_mobile_phone.p.32.png new file mode 100644 index 00000000..1b3a876e Binary files /dev/null and b/website/images/mapicons/shopping_mobile_phone.p.32.png differ diff --git a/website/images/mapicons/shopping_motorcycle.glow.12.png b/website/images/mapicons/shopping_motorcycle.glow.12.png new file mode 100644 index 00000000..d328bec1 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.glow.12.png differ diff --git a/website/images/mapicons/shopping_motorcycle.glow.16.png b/website/images/mapicons/shopping_motorcycle.glow.16.png new file mode 100644 index 00000000..c7e19aa6 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.glow.16.png differ diff --git a/website/images/mapicons/shopping_motorcycle.glow.20.png b/website/images/mapicons/shopping_motorcycle.glow.20.png new file mode 100644 index 00000000..88d90b2e Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.glow.20.png differ diff --git a/website/images/mapicons/shopping_motorcycle.glow.24.png b/website/images/mapicons/shopping_motorcycle.glow.24.png new file mode 100644 index 00000000..4f79edba Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.glow.24.png differ diff --git a/website/images/mapicons/shopping_motorcycle.glow.32.png b/website/images/mapicons/shopping_motorcycle.glow.32.png new file mode 100644 index 00000000..c66b1a21 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.glow.32.png differ diff --git a/website/images/mapicons/shopping_motorcycle.n.12.png b/website/images/mapicons/shopping_motorcycle.n.12.png new file mode 100644 index 00000000..4380a890 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.n.12.png differ diff --git a/website/images/mapicons/shopping_motorcycle.n.16.png b/website/images/mapicons/shopping_motorcycle.n.16.png new file mode 100644 index 00000000..8f7ddff0 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.n.16.png differ diff --git a/website/images/mapicons/shopping_motorcycle.n.20.png b/website/images/mapicons/shopping_motorcycle.n.20.png new file mode 100644 index 00000000..9ac20eb4 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.n.20.png differ diff --git a/website/images/mapicons/shopping_motorcycle.n.24.png b/website/images/mapicons/shopping_motorcycle.n.24.png new file mode 100644 index 00000000..cf4248f3 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.n.24.png differ diff --git a/website/images/mapicons/shopping_motorcycle.n.32.png b/website/images/mapicons/shopping_motorcycle.n.32.png new file mode 100644 index 00000000..98883971 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.n.32.png differ diff --git a/website/images/mapicons/shopping_motorcycle.p.12.png b/website/images/mapicons/shopping_motorcycle.p.12.png new file mode 100644 index 00000000..530ebd28 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.p.12.png differ diff --git a/website/images/mapicons/shopping_motorcycle.p.16.png b/website/images/mapicons/shopping_motorcycle.p.16.png new file mode 100644 index 00000000..417dd785 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.p.16.png differ diff --git a/website/images/mapicons/shopping_motorcycle.p.20.png b/website/images/mapicons/shopping_motorcycle.p.20.png new file mode 100644 index 00000000..7bcf2be8 Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.p.20.png differ diff --git a/website/images/mapicons/shopping_motorcycle.p.24.png b/website/images/mapicons/shopping_motorcycle.p.24.png new file mode 100644 index 00000000..a97b7f3c Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.p.24.png differ diff --git a/website/images/mapicons/shopping_motorcycle.p.32.png b/website/images/mapicons/shopping_motorcycle.p.32.png new file mode 100644 index 00000000..4626d10f Binary files /dev/null and b/website/images/mapicons/shopping_motorcycle.p.32.png differ diff --git a/website/images/mapicons/shopping_music.glow.12.png b/website/images/mapicons/shopping_music.glow.12.png new file mode 100644 index 00000000..716bde0e Binary files /dev/null and b/website/images/mapicons/shopping_music.glow.12.png differ diff --git a/website/images/mapicons/shopping_music.glow.16.png b/website/images/mapicons/shopping_music.glow.16.png new file mode 100644 index 00000000..43a87b74 Binary files /dev/null and b/website/images/mapicons/shopping_music.glow.16.png differ diff --git a/website/images/mapicons/shopping_music.glow.20.png b/website/images/mapicons/shopping_music.glow.20.png new file mode 100644 index 00000000..8f8f8f44 Binary files /dev/null and b/website/images/mapicons/shopping_music.glow.20.png differ diff --git a/website/images/mapicons/shopping_music.glow.24.png b/website/images/mapicons/shopping_music.glow.24.png new file mode 100644 index 00000000..3aa217b0 Binary files /dev/null and b/website/images/mapicons/shopping_music.glow.24.png differ diff --git a/website/images/mapicons/shopping_music.glow.32.png b/website/images/mapicons/shopping_music.glow.32.png new file mode 100644 index 00000000..2e19176e Binary files /dev/null and b/website/images/mapicons/shopping_music.glow.32.png differ diff --git a/website/images/mapicons/shopping_music.n.12.png b/website/images/mapicons/shopping_music.n.12.png new file mode 100644 index 00000000..a0bd23a9 Binary files /dev/null and b/website/images/mapicons/shopping_music.n.12.png differ diff --git a/website/images/mapicons/shopping_music.n.16.png b/website/images/mapicons/shopping_music.n.16.png new file mode 100644 index 00000000..8e875c7f Binary files /dev/null and b/website/images/mapicons/shopping_music.n.16.png differ diff --git a/website/images/mapicons/shopping_music.n.20.png b/website/images/mapicons/shopping_music.n.20.png new file mode 100644 index 00000000..c651909d Binary files /dev/null and b/website/images/mapicons/shopping_music.n.20.png differ diff --git a/website/images/mapicons/shopping_music.n.24.png b/website/images/mapicons/shopping_music.n.24.png new file mode 100644 index 00000000..17df5c56 Binary files /dev/null and b/website/images/mapicons/shopping_music.n.24.png differ diff --git a/website/images/mapicons/shopping_music.n.32.png b/website/images/mapicons/shopping_music.n.32.png new file mode 100644 index 00000000..9522f907 Binary files /dev/null and b/website/images/mapicons/shopping_music.n.32.png differ diff --git a/website/images/mapicons/shopping_music.p.12.png b/website/images/mapicons/shopping_music.p.12.png new file mode 100644 index 00000000..c6a97e3f Binary files /dev/null and b/website/images/mapicons/shopping_music.p.12.png differ diff --git a/website/images/mapicons/shopping_music.p.16.png b/website/images/mapicons/shopping_music.p.16.png new file mode 100644 index 00000000..72f68b41 Binary files /dev/null and b/website/images/mapicons/shopping_music.p.16.png differ diff --git a/website/images/mapicons/shopping_music.p.20.png b/website/images/mapicons/shopping_music.p.20.png new file mode 100644 index 00000000..0333e236 Binary files /dev/null and b/website/images/mapicons/shopping_music.p.20.png differ diff --git a/website/images/mapicons/shopping_music.p.24.png b/website/images/mapicons/shopping_music.p.24.png new file mode 100644 index 00000000..3b4af425 Binary files /dev/null and b/website/images/mapicons/shopping_music.p.24.png differ diff --git a/website/images/mapicons/shopping_music.p.32.png b/website/images/mapicons/shopping_music.p.32.png new file mode 100644 index 00000000..1720f069 Binary files /dev/null and b/website/images/mapicons/shopping_music.p.32.png differ diff --git a/website/images/mapicons/shopping_pet.glow.12.png b/website/images/mapicons/shopping_pet.glow.12.png new file mode 100644 index 00000000..ce753310 Binary files /dev/null and b/website/images/mapicons/shopping_pet.glow.12.png differ diff --git a/website/images/mapicons/shopping_pet.glow.16.png b/website/images/mapicons/shopping_pet.glow.16.png new file mode 100644 index 00000000..d1abf3d5 Binary files /dev/null and b/website/images/mapicons/shopping_pet.glow.16.png differ diff --git a/website/images/mapicons/shopping_pet.glow.20.png b/website/images/mapicons/shopping_pet.glow.20.png new file mode 100644 index 00000000..e739eaa1 Binary files /dev/null and b/website/images/mapicons/shopping_pet.glow.20.png differ diff --git a/website/images/mapicons/shopping_pet.glow.24.png b/website/images/mapicons/shopping_pet.glow.24.png new file mode 100644 index 00000000..b0ec119f Binary files /dev/null and b/website/images/mapicons/shopping_pet.glow.24.png differ diff --git a/website/images/mapicons/shopping_pet.glow.32.png b/website/images/mapicons/shopping_pet.glow.32.png new file mode 100644 index 00000000..598850c0 Binary files /dev/null and b/website/images/mapicons/shopping_pet.glow.32.png differ diff --git a/website/images/mapicons/shopping_pet.n.12.png b/website/images/mapicons/shopping_pet.n.12.png new file mode 100644 index 00000000..0a051ede Binary files /dev/null and b/website/images/mapicons/shopping_pet.n.12.png differ diff --git a/website/images/mapicons/shopping_pet.n.16.png b/website/images/mapicons/shopping_pet.n.16.png new file mode 100644 index 00000000..5647aaea Binary files /dev/null and b/website/images/mapicons/shopping_pet.n.16.png differ diff --git a/website/images/mapicons/shopping_pet.n.20.png b/website/images/mapicons/shopping_pet.n.20.png new file mode 100644 index 00000000..37b60842 Binary files /dev/null and b/website/images/mapicons/shopping_pet.n.20.png differ diff --git a/website/images/mapicons/shopping_pet.n.24.png b/website/images/mapicons/shopping_pet.n.24.png new file mode 100644 index 00000000..534a1ae6 Binary files /dev/null and b/website/images/mapicons/shopping_pet.n.24.png differ diff --git a/website/images/mapicons/shopping_pet.n.32.png b/website/images/mapicons/shopping_pet.n.32.png new file mode 100644 index 00000000..06b31b8e Binary files /dev/null and b/website/images/mapicons/shopping_pet.n.32.png differ diff --git a/website/images/mapicons/shopping_pet.p.12.png b/website/images/mapicons/shopping_pet.p.12.png new file mode 100644 index 00000000..f1e3920e Binary files /dev/null and b/website/images/mapicons/shopping_pet.p.12.png differ diff --git a/website/images/mapicons/shopping_pet.p.16.png b/website/images/mapicons/shopping_pet.p.16.png new file mode 100644 index 00000000..9a8b1609 Binary files /dev/null and b/website/images/mapicons/shopping_pet.p.16.png differ diff --git a/website/images/mapicons/shopping_pet.p.20.png b/website/images/mapicons/shopping_pet.p.20.png new file mode 100644 index 00000000..e3baaf2f Binary files /dev/null and b/website/images/mapicons/shopping_pet.p.20.png differ diff --git a/website/images/mapicons/shopping_pet.p.24.png b/website/images/mapicons/shopping_pet.p.24.png new file mode 100644 index 00000000..5cdb13f6 Binary files /dev/null and b/website/images/mapicons/shopping_pet.p.24.png differ diff --git a/website/images/mapicons/shopping_pet.p.32.png b/website/images/mapicons/shopping_pet.p.32.png new file mode 100644 index 00000000..d199f036 Binary files /dev/null and b/website/images/mapicons/shopping_pet.p.32.png differ diff --git a/website/images/mapicons/shopping_pet2.glow.12.png b/website/images/mapicons/shopping_pet2.glow.12.png new file mode 100644 index 00000000..ccaea119 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.glow.12.png differ diff --git a/website/images/mapicons/shopping_pet2.glow.16.png b/website/images/mapicons/shopping_pet2.glow.16.png new file mode 100644 index 00000000..424da439 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.glow.16.png differ diff --git a/website/images/mapicons/shopping_pet2.glow.20.png b/website/images/mapicons/shopping_pet2.glow.20.png new file mode 100644 index 00000000..225f0429 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.glow.20.png differ diff --git a/website/images/mapicons/shopping_pet2.glow.24.png b/website/images/mapicons/shopping_pet2.glow.24.png new file mode 100644 index 00000000..5bb9c9c9 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.glow.24.png differ diff --git a/website/images/mapicons/shopping_pet2.glow.32.png b/website/images/mapicons/shopping_pet2.glow.32.png new file mode 100644 index 00000000..deddc6b6 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.glow.32.png differ diff --git a/website/images/mapicons/shopping_pet2.n.12.png b/website/images/mapicons/shopping_pet2.n.12.png new file mode 100644 index 00000000..81d9553b Binary files /dev/null and b/website/images/mapicons/shopping_pet2.n.12.png differ diff --git a/website/images/mapicons/shopping_pet2.n.16.png b/website/images/mapicons/shopping_pet2.n.16.png new file mode 100644 index 00000000..f5b27ef8 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.n.16.png differ diff --git a/website/images/mapicons/shopping_pet2.n.20.png b/website/images/mapicons/shopping_pet2.n.20.png new file mode 100644 index 00000000..6d533814 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.n.20.png differ diff --git a/website/images/mapicons/shopping_pet2.n.24.png b/website/images/mapicons/shopping_pet2.n.24.png new file mode 100644 index 00000000..17506a1d Binary files /dev/null and b/website/images/mapicons/shopping_pet2.n.24.png differ diff --git a/website/images/mapicons/shopping_pet2.n.32.png b/website/images/mapicons/shopping_pet2.n.32.png new file mode 100644 index 00000000..1f2798bf Binary files /dev/null and b/website/images/mapicons/shopping_pet2.n.32.png differ diff --git a/website/images/mapicons/shopping_pet2.p.12.png b/website/images/mapicons/shopping_pet2.p.12.png new file mode 100644 index 00000000..4e9ca2b6 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.p.12.png differ diff --git a/website/images/mapicons/shopping_pet2.p.16.png b/website/images/mapicons/shopping_pet2.p.16.png new file mode 100644 index 00000000..9d93e44f Binary files /dev/null and b/website/images/mapicons/shopping_pet2.p.16.png differ diff --git a/website/images/mapicons/shopping_pet2.p.20.png b/website/images/mapicons/shopping_pet2.p.20.png new file mode 100644 index 00000000..b8d7fada Binary files /dev/null and b/website/images/mapicons/shopping_pet2.p.20.png differ diff --git a/website/images/mapicons/shopping_pet2.p.24.png b/website/images/mapicons/shopping_pet2.p.24.png new file mode 100644 index 00000000..0c0b98ff Binary files /dev/null and b/website/images/mapicons/shopping_pet2.p.24.png differ diff --git a/website/images/mapicons/shopping_pet2.p.32.png b/website/images/mapicons/shopping_pet2.p.32.png new file mode 100644 index 00000000..f3a99909 Binary files /dev/null and b/website/images/mapicons/shopping_pet2.p.32.png differ diff --git a/website/images/mapicons/shopping_photo.glow.12.png b/website/images/mapicons/shopping_photo.glow.12.png new file mode 100644 index 00000000..e4cd8db3 Binary files /dev/null and b/website/images/mapicons/shopping_photo.glow.12.png differ diff --git a/website/images/mapicons/shopping_photo.glow.16.png b/website/images/mapicons/shopping_photo.glow.16.png new file mode 100644 index 00000000..c1ad3e56 Binary files /dev/null and b/website/images/mapicons/shopping_photo.glow.16.png differ diff --git a/website/images/mapicons/shopping_photo.glow.20.png b/website/images/mapicons/shopping_photo.glow.20.png new file mode 100644 index 00000000..4539044a Binary files /dev/null and b/website/images/mapicons/shopping_photo.glow.20.png differ diff --git a/website/images/mapicons/shopping_photo.glow.24.png b/website/images/mapicons/shopping_photo.glow.24.png new file mode 100644 index 00000000..5c1e1bfa Binary files /dev/null and b/website/images/mapicons/shopping_photo.glow.24.png differ diff --git a/website/images/mapicons/shopping_photo.glow.32.png b/website/images/mapicons/shopping_photo.glow.32.png new file mode 100644 index 00000000..a0ecf41d Binary files /dev/null and b/website/images/mapicons/shopping_photo.glow.32.png differ diff --git a/website/images/mapicons/shopping_photo.n.12.png b/website/images/mapicons/shopping_photo.n.12.png new file mode 100644 index 00000000..5d1e2a5e Binary files /dev/null and b/website/images/mapicons/shopping_photo.n.12.png differ diff --git a/website/images/mapicons/shopping_photo.n.16.png b/website/images/mapicons/shopping_photo.n.16.png new file mode 100644 index 00000000..43ad9ad5 Binary files /dev/null and b/website/images/mapicons/shopping_photo.n.16.png differ diff --git a/website/images/mapicons/shopping_photo.n.20.png b/website/images/mapicons/shopping_photo.n.20.png new file mode 100644 index 00000000..a97e34e0 Binary files /dev/null and b/website/images/mapicons/shopping_photo.n.20.png differ diff --git a/website/images/mapicons/shopping_photo.n.24.png b/website/images/mapicons/shopping_photo.n.24.png new file mode 100644 index 00000000..8607d1aa Binary files /dev/null and b/website/images/mapicons/shopping_photo.n.24.png differ diff --git a/website/images/mapicons/shopping_photo.n.32.png b/website/images/mapicons/shopping_photo.n.32.png new file mode 100644 index 00000000..084f8d8f Binary files /dev/null and b/website/images/mapicons/shopping_photo.n.32.png differ diff --git a/website/images/mapicons/shopping_photo.p.12.png b/website/images/mapicons/shopping_photo.p.12.png new file mode 100644 index 00000000..45087961 Binary files /dev/null and b/website/images/mapicons/shopping_photo.p.12.png differ diff --git a/website/images/mapicons/shopping_photo.p.16.png b/website/images/mapicons/shopping_photo.p.16.png new file mode 100644 index 00000000..0d125200 Binary files /dev/null and b/website/images/mapicons/shopping_photo.p.16.png differ diff --git a/website/images/mapicons/shopping_photo.p.20.png b/website/images/mapicons/shopping_photo.p.20.png new file mode 100644 index 00000000..d4de6ec5 Binary files /dev/null and b/website/images/mapicons/shopping_photo.p.20.png differ diff --git a/website/images/mapicons/shopping_photo.p.24.png b/website/images/mapicons/shopping_photo.p.24.png new file mode 100644 index 00000000..482d964d Binary files /dev/null and b/website/images/mapicons/shopping_photo.p.24.png differ diff --git a/website/images/mapicons/shopping_photo.p.32.png b/website/images/mapicons/shopping_photo.p.32.png new file mode 100644 index 00000000..c47f60fb Binary files /dev/null and b/website/images/mapicons/shopping_photo.p.32.png differ diff --git a/website/images/mapicons/shopping_supermarket.glow.12.png b/website/images/mapicons/shopping_supermarket.glow.12.png new file mode 100644 index 00000000..15419f72 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.glow.12.png differ diff --git a/website/images/mapicons/shopping_supermarket.glow.16.png b/website/images/mapicons/shopping_supermarket.glow.16.png new file mode 100644 index 00000000..811a6c98 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.glow.16.png differ diff --git a/website/images/mapicons/shopping_supermarket.glow.20.png b/website/images/mapicons/shopping_supermarket.glow.20.png new file mode 100644 index 00000000..233ca23a Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.glow.20.png differ diff --git a/website/images/mapicons/shopping_supermarket.glow.24.png b/website/images/mapicons/shopping_supermarket.glow.24.png new file mode 100644 index 00000000..f4c97c7b Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.glow.24.png differ diff --git a/website/images/mapicons/shopping_supermarket.glow.32.png b/website/images/mapicons/shopping_supermarket.glow.32.png new file mode 100644 index 00000000..ba44f53c Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.glow.32.png differ diff --git a/website/images/mapicons/shopping_supermarket.n.12.png b/website/images/mapicons/shopping_supermarket.n.12.png new file mode 100644 index 00000000..005745fa Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.n.12.png differ diff --git a/website/images/mapicons/shopping_supermarket.n.16.png b/website/images/mapicons/shopping_supermarket.n.16.png new file mode 100644 index 00000000..f4dc6d1e Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.n.16.png differ diff --git a/website/images/mapicons/shopping_supermarket.n.20.png b/website/images/mapicons/shopping_supermarket.n.20.png new file mode 100644 index 00000000..e2f1ff35 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.n.20.png differ diff --git a/website/images/mapicons/shopping_supermarket.n.24.png b/website/images/mapicons/shopping_supermarket.n.24.png new file mode 100644 index 00000000..fd258468 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.n.24.png differ diff --git a/website/images/mapicons/shopping_supermarket.n.32.png b/website/images/mapicons/shopping_supermarket.n.32.png new file mode 100644 index 00000000..b7f5805d Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.n.32.png differ diff --git a/website/images/mapicons/shopping_supermarket.p.12.png b/website/images/mapicons/shopping_supermarket.p.12.png new file mode 100644 index 00000000..01d9b979 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.p.12.png differ diff --git a/website/images/mapicons/shopping_supermarket.p.16.png b/website/images/mapicons/shopping_supermarket.p.16.png new file mode 100644 index 00000000..d3265028 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.p.16.png differ diff --git a/website/images/mapicons/shopping_supermarket.p.20.png b/website/images/mapicons/shopping_supermarket.p.20.png new file mode 100644 index 00000000..8304ec96 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.p.20.png differ diff --git a/website/images/mapicons/shopping_supermarket.p.24.png b/website/images/mapicons/shopping_supermarket.p.24.png new file mode 100644 index 00000000..654288b1 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.p.24.png differ diff --git a/website/images/mapicons/shopping_supermarket.p.32.png b/website/images/mapicons/shopping_supermarket.p.32.png new file mode 100644 index 00000000..6ca11119 Binary files /dev/null and b/website/images/mapicons/shopping_supermarket.p.32.png differ diff --git a/website/images/mapicons/shopping_tackle.glow.12.png b/website/images/mapicons/shopping_tackle.glow.12.png new file mode 100644 index 00000000..d1521d80 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.glow.12.png differ diff --git a/website/images/mapicons/shopping_tackle.glow.16.png b/website/images/mapicons/shopping_tackle.glow.16.png new file mode 100644 index 00000000..3df6f108 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.glow.16.png differ diff --git a/website/images/mapicons/shopping_tackle.glow.20.png b/website/images/mapicons/shopping_tackle.glow.20.png new file mode 100644 index 00000000..c2b90d54 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.glow.20.png differ diff --git a/website/images/mapicons/shopping_tackle.glow.24.png b/website/images/mapicons/shopping_tackle.glow.24.png new file mode 100644 index 00000000..5dffe96d Binary files /dev/null and b/website/images/mapicons/shopping_tackle.glow.24.png differ diff --git a/website/images/mapicons/shopping_tackle.glow.32.png b/website/images/mapicons/shopping_tackle.glow.32.png new file mode 100644 index 00000000..7b81cd39 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.glow.32.png differ diff --git a/website/images/mapicons/shopping_tackle.n.12.png b/website/images/mapicons/shopping_tackle.n.12.png new file mode 100644 index 00000000..24daa5f6 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.n.12.png differ diff --git a/website/images/mapicons/shopping_tackle.n.16.png b/website/images/mapicons/shopping_tackle.n.16.png new file mode 100644 index 00000000..1c8794ec Binary files /dev/null and b/website/images/mapicons/shopping_tackle.n.16.png differ diff --git a/website/images/mapicons/shopping_tackle.n.20.png b/website/images/mapicons/shopping_tackle.n.20.png new file mode 100644 index 00000000..7eda0c09 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.n.20.png differ diff --git a/website/images/mapicons/shopping_tackle.n.24.png b/website/images/mapicons/shopping_tackle.n.24.png new file mode 100644 index 00000000..9c692887 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.n.24.png differ diff --git a/website/images/mapicons/shopping_tackle.n.32.png b/website/images/mapicons/shopping_tackle.n.32.png new file mode 100644 index 00000000..0334cd81 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.n.32.png differ diff --git a/website/images/mapicons/shopping_tackle.p.12.png b/website/images/mapicons/shopping_tackle.p.12.png new file mode 100644 index 00000000..f2477c69 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.p.12.png differ diff --git a/website/images/mapicons/shopping_tackle.p.16.png b/website/images/mapicons/shopping_tackle.p.16.png new file mode 100644 index 00000000..a51b4759 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.p.16.png differ diff --git a/website/images/mapicons/shopping_tackle.p.20.png b/website/images/mapicons/shopping_tackle.p.20.png new file mode 100644 index 00000000..2d6cb098 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.p.20.png differ diff --git a/website/images/mapicons/shopping_tackle.p.24.png b/website/images/mapicons/shopping_tackle.p.24.png new file mode 100644 index 00000000..7ea013a2 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.p.24.png differ diff --git a/website/images/mapicons/shopping_tackle.p.32.png b/website/images/mapicons/shopping_tackle.p.32.png new file mode 100644 index 00000000..af4bac03 Binary files /dev/null and b/website/images/mapicons/shopping_tackle.p.32.png differ diff --git a/website/images/mapicons/shopping_video_rental.glow.12.png b/website/images/mapicons/shopping_video_rental.glow.12.png new file mode 100644 index 00000000..c5c07392 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.glow.12.png differ diff --git a/website/images/mapicons/shopping_video_rental.glow.16.png b/website/images/mapicons/shopping_video_rental.glow.16.png new file mode 100644 index 00000000..948638e9 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.glow.16.png differ diff --git a/website/images/mapicons/shopping_video_rental.glow.20.png b/website/images/mapicons/shopping_video_rental.glow.20.png new file mode 100644 index 00000000..2a3129e3 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.glow.20.png differ diff --git a/website/images/mapicons/shopping_video_rental.glow.24.png b/website/images/mapicons/shopping_video_rental.glow.24.png new file mode 100644 index 00000000..e3915b51 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.glow.24.png differ diff --git a/website/images/mapicons/shopping_video_rental.glow.32.png b/website/images/mapicons/shopping_video_rental.glow.32.png new file mode 100644 index 00000000..9eb2849f Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.glow.32.png differ diff --git a/website/images/mapicons/shopping_video_rental.n.12.png b/website/images/mapicons/shopping_video_rental.n.12.png new file mode 100644 index 00000000..aab3ea39 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.n.12.png differ diff --git a/website/images/mapicons/shopping_video_rental.n.16.png b/website/images/mapicons/shopping_video_rental.n.16.png new file mode 100644 index 00000000..2f693b9e Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.n.16.png differ diff --git a/website/images/mapicons/shopping_video_rental.n.20.png b/website/images/mapicons/shopping_video_rental.n.20.png new file mode 100644 index 00000000..0e29d4a7 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.n.20.png differ diff --git a/website/images/mapicons/shopping_video_rental.n.24.png b/website/images/mapicons/shopping_video_rental.n.24.png new file mode 100644 index 00000000..0eb87593 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.n.24.png differ diff --git a/website/images/mapicons/shopping_video_rental.n.32.png b/website/images/mapicons/shopping_video_rental.n.32.png new file mode 100644 index 00000000..f6bac033 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.n.32.png differ diff --git a/website/images/mapicons/shopping_video_rental.p.12.png b/website/images/mapicons/shopping_video_rental.p.12.png new file mode 100644 index 00000000..fc579e1a Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.p.12.png differ diff --git a/website/images/mapicons/shopping_video_rental.p.16.png b/website/images/mapicons/shopping_video_rental.p.16.png new file mode 100644 index 00000000..ce655ddd Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.p.16.png differ diff --git a/website/images/mapicons/shopping_video_rental.p.20.png b/website/images/mapicons/shopping_video_rental.p.20.png new file mode 100644 index 00000000..0449fa50 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.p.20.png differ diff --git a/website/images/mapicons/shopping_video_rental.p.24.png b/website/images/mapicons/shopping_video_rental.p.24.png new file mode 100644 index 00000000..ec0704b9 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.p.24.png differ diff --git a/website/images/mapicons/shopping_video_rental.p.32.png b/website/images/mapicons/shopping_video_rental.p.32.png new file mode 100644 index 00000000..abeeb2b0 Binary files /dev/null and b/website/images/mapicons/shopping_video_rental.p.32.png differ diff --git a/website/images/mapicons/sport_archery.glow.12.png b/website/images/mapicons/sport_archery.glow.12.png new file mode 100644 index 00000000..d7664a29 Binary files /dev/null and b/website/images/mapicons/sport_archery.glow.12.png differ diff --git a/website/images/mapicons/sport_archery.glow.16.png b/website/images/mapicons/sport_archery.glow.16.png new file mode 100644 index 00000000..49493cb1 Binary files /dev/null and b/website/images/mapicons/sport_archery.glow.16.png differ diff --git a/website/images/mapicons/sport_archery.glow.20.png b/website/images/mapicons/sport_archery.glow.20.png new file mode 100644 index 00000000..cd772769 Binary files /dev/null and b/website/images/mapicons/sport_archery.glow.20.png differ diff --git a/website/images/mapicons/sport_archery.glow.24.png b/website/images/mapicons/sport_archery.glow.24.png new file mode 100644 index 00000000..eddf00d0 Binary files /dev/null and b/website/images/mapicons/sport_archery.glow.24.png differ diff --git a/website/images/mapicons/sport_archery.glow.32.png b/website/images/mapicons/sport_archery.glow.32.png new file mode 100644 index 00000000..52d57bd3 Binary files /dev/null and b/website/images/mapicons/sport_archery.glow.32.png differ diff --git a/website/images/mapicons/sport_archery.n.12.png b/website/images/mapicons/sport_archery.n.12.png new file mode 100644 index 00000000..c3929556 Binary files /dev/null and b/website/images/mapicons/sport_archery.n.12.png differ diff --git a/website/images/mapicons/sport_archery.n.16.png b/website/images/mapicons/sport_archery.n.16.png new file mode 100644 index 00000000..bb3821e5 Binary files /dev/null and b/website/images/mapicons/sport_archery.n.16.png differ diff --git a/website/images/mapicons/sport_archery.n.20.png b/website/images/mapicons/sport_archery.n.20.png new file mode 100644 index 00000000..7e2ed65f Binary files /dev/null and b/website/images/mapicons/sport_archery.n.20.png differ diff --git a/website/images/mapicons/sport_archery.n.24.png b/website/images/mapicons/sport_archery.n.24.png new file mode 100644 index 00000000..dd045c24 Binary files /dev/null and b/website/images/mapicons/sport_archery.n.24.png differ diff --git a/website/images/mapicons/sport_archery.n.32.png b/website/images/mapicons/sport_archery.n.32.png new file mode 100644 index 00000000..1bbac487 Binary files /dev/null and b/website/images/mapicons/sport_archery.n.32.png differ diff --git a/website/images/mapicons/sport_archery.p.12.png b/website/images/mapicons/sport_archery.p.12.png new file mode 100644 index 00000000..6d05c570 Binary files /dev/null and b/website/images/mapicons/sport_archery.p.12.png differ diff --git a/website/images/mapicons/sport_archery.p.16.png b/website/images/mapicons/sport_archery.p.16.png new file mode 100644 index 00000000..ca2f0d09 Binary files /dev/null and b/website/images/mapicons/sport_archery.p.16.png differ diff --git a/website/images/mapicons/sport_archery.p.20.png b/website/images/mapicons/sport_archery.p.20.png new file mode 100644 index 00000000..1026278b Binary files /dev/null and b/website/images/mapicons/sport_archery.p.20.png differ diff --git a/website/images/mapicons/sport_archery.p.24.png b/website/images/mapicons/sport_archery.p.24.png new file mode 100644 index 00000000..67562f16 Binary files /dev/null and b/website/images/mapicons/sport_archery.p.24.png differ diff --git a/website/images/mapicons/sport_archery.p.32.png b/website/images/mapicons/sport_archery.p.32.png new file mode 100644 index 00000000..a20e5bda Binary files /dev/null and b/website/images/mapicons/sport_archery.p.32.png differ diff --git a/website/images/mapicons/sport_baseball.glow.12.png b/website/images/mapicons/sport_baseball.glow.12.png new file mode 100644 index 00000000..9c895839 Binary files /dev/null and b/website/images/mapicons/sport_baseball.glow.12.png differ diff --git a/website/images/mapicons/sport_baseball.glow.16.png b/website/images/mapicons/sport_baseball.glow.16.png new file mode 100644 index 00000000..9cc4ad7d Binary files /dev/null and b/website/images/mapicons/sport_baseball.glow.16.png differ diff --git a/website/images/mapicons/sport_baseball.glow.20.png b/website/images/mapicons/sport_baseball.glow.20.png new file mode 100644 index 00000000..41a4be80 Binary files /dev/null and b/website/images/mapicons/sport_baseball.glow.20.png differ diff --git a/website/images/mapicons/sport_baseball.glow.24.png b/website/images/mapicons/sport_baseball.glow.24.png new file mode 100644 index 00000000..32ed3996 Binary files /dev/null and b/website/images/mapicons/sport_baseball.glow.24.png differ diff --git a/website/images/mapicons/sport_baseball.glow.32.png b/website/images/mapicons/sport_baseball.glow.32.png new file mode 100644 index 00000000..33c700d9 Binary files /dev/null and b/website/images/mapicons/sport_baseball.glow.32.png differ diff --git a/website/images/mapicons/sport_baseball.n.12.png b/website/images/mapicons/sport_baseball.n.12.png new file mode 100644 index 00000000..86164150 Binary files /dev/null and b/website/images/mapicons/sport_baseball.n.12.png differ diff --git a/website/images/mapicons/sport_baseball.n.16.png b/website/images/mapicons/sport_baseball.n.16.png new file mode 100644 index 00000000..15889cdd Binary files /dev/null and b/website/images/mapicons/sport_baseball.n.16.png differ diff --git a/website/images/mapicons/sport_baseball.n.20.png b/website/images/mapicons/sport_baseball.n.20.png new file mode 100644 index 00000000..25882649 Binary files /dev/null and b/website/images/mapicons/sport_baseball.n.20.png differ diff --git a/website/images/mapicons/sport_baseball.n.24.png b/website/images/mapicons/sport_baseball.n.24.png new file mode 100644 index 00000000..aeeaad56 Binary files /dev/null and b/website/images/mapicons/sport_baseball.n.24.png differ diff --git a/website/images/mapicons/sport_baseball.n.32.png b/website/images/mapicons/sport_baseball.n.32.png new file mode 100644 index 00000000..b6deab7d Binary files /dev/null and b/website/images/mapicons/sport_baseball.n.32.png differ diff --git a/website/images/mapicons/sport_baseball.p.12.png b/website/images/mapicons/sport_baseball.p.12.png new file mode 100644 index 00000000..43f2eb26 Binary files /dev/null and b/website/images/mapicons/sport_baseball.p.12.png differ diff --git a/website/images/mapicons/sport_baseball.p.16.png b/website/images/mapicons/sport_baseball.p.16.png new file mode 100644 index 00000000..a469fbe3 Binary files /dev/null and b/website/images/mapicons/sport_baseball.p.16.png differ diff --git a/website/images/mapicons/sport_baseball.p.20.png b/website/images/mapicons/sport_baseball.p.20.png new file mode 100644 index 00000000..c6e91e6e Binary files /dev/null and b/website/images/mapicons/sport_baseball.p.20.png differ diff --git a/website/images/mapicons/sport_baseball.p.24.png b/website/images/mapicons/sport_baseball.p.24.png new file mode 100644 index 00000000..40c8bef9 Binary files /dev/null and b/website/images/mapicons/sport_baseball.p.24.png differ diff --git a/website/images/mapicons/sport_baseball.p.32.png b/website/images/mapicons/sport_baseball.p.32.png new file mode 100644 index 00000000..496001d2 Binary files /dev/null and b/website/images/mapicons/sport_baseball.p.32.png differ diff --git a/website/images/mapicons/sport_cricket.glow.12.png b/website/images/mapicons/sport_cricket.glow.12.png new file mode 100644 index 00000000..51d7964b Binary files /dev/null and b/website/images/mapicons/sport_cricket.glow.12.png differ diff --git a/website/images/mapicons/sport_cricket.glow.16.png b/website/images/mapicons/sport_cricket.glow.16.png new file mode 100644 index 00000000..2845f4ab Binary files /dev/null and b/website/images/mapicons/sport_cricket.glow.16.png differ diff --git a/website/images/mapicons/sport_cricket.glow.20.png b/website/images/mapicons/sport_cricket.glow.20.png new file mode 100644 index 00000000..f0e8c541 Binary files /dev/null and b/website/images/mapicons/sport_cricket.glow.20.png differ diff --git a/website/images/mapicons/sport_cricket.glow.24.png b/website/images/mapicons/sport_cricket.glow.24.png new file mode 100644 index 00000000..c50b1136 Binary files /dev/null and b/website/images/mapicons/sport_cricket.glow.24.png differ diff --git a/website/images/mapicons/sport_cricket.glow.32.png b/website/images/mapicons/sport_cricket.glow.32.png new file mode 100644 index 00000000..033ae93d Binary files /dev/null and b/website/images/mapicons/sport_cricket.glow.32.png differ diff --git a/website/images/mapicons/sport_cricket.n.12.png b/website/images/mapicons/sport_cricket.n.12.png new file mode 100644 index 00000000..fc651904 Binary files /dev/null and b/website/images/mapicons/sport_cricket.n.12.png differ diff --git a/website/images/mapicons/sport_cricket.n.16.png b/website/images/mapicons/sport_cricket.n.16.png new file mode 100644 index 00000000..d5d243bf Binary files /dev/null and b/website/images/mapicons/sport_cricket.n.16.png differ diff --git a/website/images/mapicons/sport_cricket.n.20.png b/website/images/mapicons/sport_cricket.n.20.png new file mode 100644 index 00000000..4c7b347d Binary files /dev/null and b/website/images/mapicons/sport_cricket.n.20.png differ diff --git a/website/images/mapicons/sport_cricket.n.24.png b/website/images/mapicons/sport_cricket.n.24.png new file mode 100644 index 00000000..823652b0 Binary files /dev/null and b/website/images/mapicons/sport_cricket.n.24.png differ diff --git a/website/images/mapicons/sport_cricket.n.32.png b/website/images/mapicons/sport_cricket.n.32.png new file mode 100644 index 00000000..ff9c1aca Binary files /dev/null and b/website/images/mapicons/sport_cricket.n.32.png differ diff --git a/website/images/mapicons/sport_cricket.p.12.png b/website/images/mapicons/sport_cricket.p.12.png new file mode 100644 index 00000000..efe198c8 Binary files /dev/null and b/website/images/mapicons/sport_cricket.p.12.png differ diff --git a/website/images/mapicons/sport_cricket.p.16.png b/website/images/mapicons/sport_cricket.p.16.png new file mode 100644 index 00000000..8ef2ef80 Binary files /dev/null and b/website/images/mapicons/sport_cricket.p.16.png differ diff --git a/website/images/mapicons/sport_cricket.p.20.png b/website/images/mapicons/sport_cricket.p.20.png new file mode 100644 index 00000000..010fc1b4 Binary files /dev/null and b/website/images/mapicons/sport_cricket.p.20.png differ diff --git a/website/images/mapicons/sport_cricket.p.24.png b/website/images/mapicons/sport_cricket.p.24.png new file mode 100644 index 00000000..abe38426 Binary files /dev/null and b/website/images/mapicons/sport_cricket.p.24.png differ diff --git a/website/images/mapicons/sport_cricket.p.32.png b/website/images/mapicons/sport_cricket.p.32.png new file mode 100644 index 00000000..9c3941f7 Binary files /dev/null and b/website/images/mapicons/sport_cricket.p.32.png differ diff --git a/website/images/mapicons/sport_diving.glow.12.png b/website/images/mapicons/sport_diving.glow.12.png new file mode 100644 index 00000000..70044cd8 Binary files /dev/null and b/website/images/mapicons/sport_diving.glow.12.png differ diff --git a/website/images/mapicons/sport_diving.glow.16.png b/website/images/mapicons/sport_diving.glow.16.png new file mode 100644 index 00000000..0ab5fe38 Binary files /dev/null and b/website/images/mapicons/sport_diving.glow.16.png differ diff --git a/website/images/mapicons/sport_diving.glow.20.png b/website/images/mapicons/sport_diving.glow.20.png new file mode 100644 index 00000000..3012c885 Binary files /dev/null and b/website/images/mapicons/sport_diving.glow.20.png differ diff --git a/website/images/mapicons/sport_diving.glow.24.png b/website/images/mapicons/sport_diving.glow.24.png new file mode 100644 index 00000000..9ede07ab Binary files /dev/null and b/website/images/mapicons/sport_diving.glow.24.png differ diff --git a/website/images/mapicons/sport_diving.glow.32.png b/website/images/mapicons/sport_diving.glow.32.png new file mode 100644 index 00000000..f14fe57f Binary files /dev/null and b/website/images/mapicons/sport_diving.glow.32.png differ diff --git a/website/images/mapicons/sport_diving.n.12.png b/website/images/mapicons/sport_diving.n.12.png new file mode 100644 index 00000000..fc4321ad Binary files /dev/null and b/website/images/mapicons/sport_diving.n.12.png differ diff --git a/website/images/mapicons/sport_diving.n.16.png b/website/images/mapicons/sport_diving.n.16.png new file mode 100644 index 00000000..31ec9399 Binary files /dev/null and b/website/images/mapicons/sport_diving.n.16.png differ diff --git a/website/images/mapicons/sport_diving.n.20.png b/website/images/mapicons/sport_diving.n.20.png new file mode 100644 index 00000000..f5a70b52 Binary files /dev/null and b/website/images/mapicons/sport_diving.n.20.png differ diff --git a/website/images/mapicons/sport_diving.n.24.png b/website/images/mapicons/sport_diving.n.24.png new file mode 100644 index 00000000..93ea17bc Binary files /dev/null and b/website/images/mapicons/sport_diving.n.24.png differ diff --git a/website/images/mapicons/sport_diving.n.32.png b/website/images/mapicons/sport_diving.n.32.png new file mode 100644 index 00000000..ee2e7a26 Binary files /dev/null and b/website/images/mapicons/sport_diving.n.32.png differ diff --git a/website/images/mapicons/sport_diving.p.12.png b/website/images/mapicons/sport_diving.p.12.png new file mode 100644 index 00000000..87bd74d1 Binary files /dev/null and b/website/images/mapicons/sport_diving.p.12.png differ diff --git a/website/images/mapicons/sport_diving.p.16.png b/website/images/mapicons/sport_diving.p.16.png new file mode 100644 index 00000000..9fc4c8ef Binary files /dev/null and b/website/images/mapicons/sport_diving.p.16.png differ diff --git a/website/images/mapicons/sport_diving.p.20.png b/website/images/mapicons/sport_diving.p.20.png new file mode 100644 index 00000000..cad46888 Binary files /dev/null and b/website/images/mapicons/sport_diving.p.20.png differ diff --git a/website/images/mapicons/sport_diving.p.24.png b/website/images/mapicons/sport_diving.p.24.png new file mode 100644 index 00000000..804e724b Binary files /dev/null and b/website/images/mapicons/sport_diving.p.24.png differ diff --git a/website/images/mapicons/sport_diving.p.32.png b/website/images/mapicons/sport_diving.p.32.png new file mode 100644 index 00000000..bf4fc7ae Binary files /dev/null and b/website/images/mapicons/sport_diving.p.32.png differ diff --git a/website/images/mapicons/sport_golf.glow.12.png b/website/images/mapicons/sport_golf.glow.12.png new file mode 100644 index 00000000..ad066a47 Binary files /dev/null and b/website/images/mapicons/sport_golf.glow.12.png differ diff --git a/website/images/mapicons/sport_golf.glow.16.png b/website/images/mapicons/sport_golf.glow.16.png new file mode 100644 index 00000000..c9ff2d69 Binary files /dev/null and b/website/images/mapicons/sport_golf.glow.16.png differ diff --git a/website/images/mapicons/sport_golf.glow.20.png b/website/images/mapicons/sport_golf.glow.20.png new file mode 100644 index 00000000..f1a6572c Binary files /dev/null and b/website/images/mapicons/sport_golf.glow.20.png differ diff --git a/website/images/mapicons/sport_golf.glow.24.png b/website/images/mapicons/sport_golf.glow.24.png new file mode 100644 index 00000000..b6636e3c Binary files /dev/null and b/website/images/mapicons/sport_golf.glow.24.png differ diff --git a/website/images/mapicons/sport_golf.glow.32.png b/website/images/mapicons/sport_golf.glow.32.png new file mode 100644 index 00000000..c6584929 Binary files /dev/null and b/website/images/mapicons/sport_golf.glow.32.png differ diff --git a/website/images/mapicons/sport_golf.n.12.png b/website/images/mapicons/sport_golf.n.12.png new file mode 100644 index 00000000..0d456d99 Binary files /dev/null and b/website/images/mapicons/sport_golf.n.12.png differ diff --git a/website/images/mapicons/sport_golf.n.16.png b/website/images/mapicons/sport_golf.n.16.png new file mode 100644 index 00000000..23f3e454 Binary files /dev/null and b/website/images/mapicons/sport_golf.n.16.png differ diff --git a/website/images/mapicons/sport_golf.n.20.png b/website/images/mapicons/sport_golf.n.20.png new file mode 100644 index 00000000..aec21813 Binary files /dev/null and b/website/images/mapicons/sport_golf.n.20.png differ diff --git a/website/images/mapicons/sport_golf.n.24.png b/website/images/mapicons/sport_golf.n.24.png new file mode 100644 index 00000000..ad42a4e5 Binary files /dev/null and b/website/images/mapicons/sport_golf.n.24.png differ diff --git a/website/images/mapicons/sport_golf.n.32.png b/website/images/mapicons/sport_golf.n.32.png new file mode 100644 index 00000000..688c2365 Binary files /dev/null and b/website/images/mapicons/sport_golf.n.32.png differ diff --git a/website/images/mapicons/sport_golf.p.12.png b/website/images/mapicons/sport_golf.p.12.png new file mode 100644 index 00000000..6b40468b Binary files /dev/null and b/website/images/mapicons/sport_golf.p.12.png differ diff --git a/website/images/mapicons/sport_golf.p.16.png b/website/images/mapicons/sport_golf.p.16.png new file mode 100644 index 00000000..88f9676a Binary files /dev/null and b/website/images/mapicons/sport_golf.p.16.png differ diff --git a/website/images/mapicons/sport_golf.p.20.png b/website/images/mapicons/sport_golf.p.20.png new file mode 100644 index 00000000..bb915d7f Binary files /dev/null and b/website/images/mapicons/sport_golf.p.20.png differ diff --git a/website/images/mapicons/sport_golf.p.24.png b/website/images/mapicons/sport_golf.p.24.png new file mode 100644 index 00000000..ebee324d Binary files /dev/null and b/website/images/mapicons/sport_golf.p.24.png differ diff --git a/website/images/mapicons/sport_golf.p.32.png b/website/images/mapicons/sport_golf.p.32.png new file mode 100644 index 00000000..dd4fef9a Binary files /dev/null and b/website/images/mapicons/sport_golf.p.32.png differ diff --git a/website/images/mapicons/sport_gym.glow.12.png b/website/images/mapicons/sport_gym.glow.12.png new file mode 100644 index 00000000..de70b975 Binary files /dev/null and b/website/images/mapicons/sport_gym.glow.12.png differ diff --git a/website/images/mapicons/sport_gym.glow.16.png b/website/images/mapicons/sport_gym.glow.16.png new file mode 100644 index 00000000..00c39909 Binary files /dev/null and b/website/images/mapicons/sport_gym.glow.16.png differ diff --git a/website/images/mapicons/sport_gym.glow.20.png b/website/images/mapicons/sport_gym.glow.20.png new file mode 100644 index 00000000..41fd12b0 Binary files /dev/null and b/website/images/mapicons/sport_gym.glow.20.png differ diff --git a/website/images/mapicons/sport_gym.glow.24.png b/website/images/mapicons/sport_gym.glow.24.png new file mode 100644 index 00000000..2ebd4bbf Binary files /dev/null and b/website/images/mapicons/sport_gym.glow.24.png differ diff --git a/website/images/mapicons/sport_gym.glow.32.png b/website/images/mapicons/sport_gym.glow.32.png new file mode 100644 index 00000000..03144208 Binary files /dev/null and b/website/images/mapicons/sport_gym.glow.32.png differ diff --git a/website/images/mapicons/sport_gym.n.12.png b/website/images/mapicons/sport_gym.n.12.png new file mode 100644 index 00000000..dd627d30 Binary files /dev/null and b/website/images/mapicons/sport_gym.n.12.png differ diff --git a/website/images/mapicons/sport_gym.n.16.png b/website/images/mapicons/sport_gym.n.16.png new file mode 100644 index 00000000..0a43eb05 Binary files /dev/null and b/website/images/mapicons/sport_gym.n.16.png differ diff --git a/website/images/mapicons/sport_gym.n.20.png b/website/images/mapicons/sport_gym.n.20.png new file mode 100644 index 00000000..3eee9c35 Binary files /dev/null and b/website/images/mapicons/sport_gym.n.20.png differ diff --git a/website/images/mapicons/sport_gym.n.24.png b/website/images/mapicons/sport_gym.n.24.png new file mode 100644 index 00000000..084fd60f Binary files /dev/null and b/website/images/mapicons/sport_gym.n.24.png differ diff --git a/website/images/mapicons/sport_gym.n.32.png b/website/images/mapicons/sport_gym.n.32.png new file mode 100644 index 00000000..302e06ba Binary files /dev/null and b/website/images/mapicons/sport_gym.n.32.png differ diff --git a/website/images/mapicons/sport_gym.p.12.png b/website/images/mapicons/sport_gym.p.12.png new file mode 100644 index 00000000..6aac8d04 Binary files /dev/null and b/website/images/mapicons/sport_gym.p.12.png differ diff --git a/website/images/mapicons/sport_gym.p.16.png b/website/images/mapicons/sport_gym.p.16.png new file mode 100644 index 00000000..14525d7f Binary files /dev/null and b/website/images/mapicons/sport_gym.p.16.png differ diff --git a/website/images/mapicons/sport_gym.p.20.png b/website/images/mapicons/sport_gym.p.20.png new file mode 100644 index 00000000..f5f30470 Binary files /dev/null and b/website/images/mapicons/sport_gym.p.20.png differ diff --git a/website/images/mapicons/sport_gym.p.24.png b/website/images/mapicons/sport_gym.p.24.png new file mode 100644 index 00000000..b0de7246 Binary files /dev/null and b/website/images/mapicons/sport_gym.p.24.png differ diff --git a/website/images/mapicons/sport_gym.p.32.png b/website/images/mapicons/sport_gym.p.32.png new file mode 100644 index 00000000..1081cda2 Binary files /dev/null and b/website/images/mapicons/sport_gym.p.32.png differ diff --git a/website/images/mapicons/sport_gymnasium.glow.12.png b/website/images/mapicons/sport_gymnasium.glow.12.png new file mode 100644 index 00000000..081ee8ec Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.glow.12.png differ diff --git a/website/images/mapicons/sport_gymnasium.glow.16.png b/website/images/mapicons/sport_gymnasium.glow.16.png new file mode 100644 index 00000000..be38519f Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.glow.16.png differ diff --git a/website/images/mapicons/sport_gymnasium.glow.20.png b/website/images/mapicons/sport_gymnasium.glow.20.png new file mode 100644 index 00000000..0dd8b21c Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.glow.20.png differ diff --git a/website/images/mapicons/sport_gymnasium.glow.24.png b/website/images/mapicons/sport_gymnasium.glow.24.png new file mode 100644 index 00000000..f58e790c Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.glow.24.png differ diff --git a/website/images/mapicons/sport_gymnasium.glow.32.png b/website/images/mapicons/sport_gymnasium.glow.32.png new file mode 100644 index 00000000..6e3baa87 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.glow.32.png differ diff --git a/website/images/mapicons/sport_gymnasium.n.12.png b/website/images/mapicons/sport_gymnasium.n.12.png new file mode 100644 index 00000000..367d2d4c Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.n.12.png differ diff --git a/website/images/mapicons/sport_gymnasium.n.16.png b/website/images/mapicons/sport_gymnasium.n.16.png new file mode 100644 index 00000000..0eea1cba Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.n.16.png differ diff --git a/website/images/mapicons/sport_gymnasium.n.20.png b/website/images/mapicons/sport_gymnasium.n.20.png new file mode 100644 index 00000000..c827fab7 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.n.20.png differ diff --git a/website/images/mapicons/sport_gymnasium.n.24.png b/website/images/mapicons/sport_gymnasium.n.24.png new file mode 100644 index 00000000..ddac8c52 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.n.24.png differ diff --git a/website/images/mapicons/sport_gymnasium.n.32.png b/website/images/mapicons/sport_gymnasium.n.32.png new file mode 100644 index 00000000..28baf2ce Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.n.32.png differ diff --git a/website/images/mapicons/sport_gymnasium.p.12.png b/website/images/mapicons/sport_gymnasium.p.12.png new file mode 100644 index 00000000..218264c4 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.p.12.png differ diff --git a/website/images/mapicons/sport_gymnasium.p.16.png b/website/images/mapicons/sport_gymnasium.p.16.png new file mode 100644 index 00000000..58ec5122 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.p.16.png differ diff --git a/website/images/mapicons/sport_gymnasium.p.20.png b/website/images/mapicons/sport_gymnasium.p.20.png new file mode 100644 index 00000000..d1a16fe8 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.p.20.png differ diff --git a/website/images/mapicons/sport_gymnasium.p.24.png b/website/images/mapicons/sport_gymnasium.p.24.png new file mode 100644 index 00000000..8c011e02 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.p.24.png differ diff --git a/website/images/mapicons/sport_gymnasium.p.32.png b/website/images/mapicons/sport_gymnasium.p.32.png new file mode 100644 index 00000000..025ce1a5 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium.p.32.png differ diff --git a/website/images/mapicons/sport_gymnasium2.glow.12.png b/website/images/mapicons/sport_gymnasium2.glow.12.png new file mode 100644 index 00000000..314efbb4 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.glow.12.png differ diff --git a/website/images/mapicons/sport_gymnasium2.glow.16.png b/website/images/mapicons/sport_gymnasium2.glow.16.png new file mode 100644 index 00000000..b0e89417 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.glow.16.png differ diff --git a/website/images/mapicons/sport_gymnasium2.glow.20.png b/website/images/mapicons/sport_gymnasium2.glow.20.png new file mode 100644 index 00000000..be2d086d Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.glow.20.png differ diff --git a/website/images/mapicons/sport_gymnasium2.glow.24.png b/website/images/mapicons/sport_gymnasium2.glow.24.png new file mode 100644 index 00000000..e4bcf4a3 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.glow.24.png differ diff --git a/website/images/mapicons/sport_gymnasium2.glow.32.png b/website/images/mapicons/sport_gymnasium2.glow.32.png new file mode 100644 index 00000000..875c6996 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.glow.32.png differ diff --git a/website/images/mapicons/sport_gymnasium2.n.12.png b/website/images/mapicons/sport_gymnasium2.n.12.png new file mode 100644 index 00000000..a23a2817 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.n.12.png differ diff --git a/website/images/mapicons/sport_gymnasium2.n.16.png b/website/images/mapicons/sport_gymnasium2.n.16.png new file mode 100644 index 00000000..693a12a3 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.n.16.png differ diff --git a/website/images/mapicons/sport_gymnasium2.n.20.png b/website/images/mapicons/sport_gymnasium2.n.20.png new file mode 100644 index 00000000..ef8091ba Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.n.20.png differ diff --git a/website/images/mapicons/sport_gymnasium2.n.24.png b/website/images/mapicons/sport_gymnasium2.n.24.png new file mode 100644 index 00000000..6200eb3c Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.n.24.png differ diff --git a/website/images/mapicons/sport_gymnasium2.n.32.png b/website/images/mapicons/sport_gymnasium2.n.32.png new file mode 100644 index 00000000..ca8472ed Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.n.32.png differ diff --git a/website/images/mapicons/sport_gymnasium2.p.12.png b/website/images/mapicons/sport_gymnasium2.p.12.png new file mode 100644 index 00000000..bf762e71 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.p.12.png differ diff --git a/website/images/mapicons/sport_gymnasium2.p.16.png b/website/images/mapicons/sport_gymnasium2.p.16.png new file mode 100644 index 00000000..d3894fc7 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.p.16.png differ diff --git a/website/images/mapicons/sport_gymnasium2.p.20.png b/website/images/mapicons/sport_gymnasium2.p.20.png new file mode 100644 index 00000000..d20b93a9 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.p.20.png differ diff --git a/website/images/mapicons/sport_gymnasium2.p.24.png b/website/images/mapicons/sport_gymnasium2.p.24.png new file mode 100644 index 00000000..9f6a6585 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.p.24.png differ diff --git a/website/images/mapicons/sport_gymnasium2.p.32.png b/website/images/mapicons/sport_gymnasium2.p.32.png new file mode 100644 index 00000000..e8d6d002 Binary files /dev/null and b/website/images/mapicons/sport_gymnasium2.p.32.png differ diff --git a/website/images/mapicons/sport_hillclimbing.glow.12.png b/website/images/mapicons/sport_hillclimbing.glow.12.png new file mode 100644 index 00000000..d500606a Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.glow.12.png differ diff --git a/website/images/mapicons/sport_hillclimbing.glow.16.png b/website/images/mapicons/sport_hillclimbing.glow.16.png new file mode 100644 index 00000000..a1056bb7 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.glow.16.png differ diff --git a/website/images/mapicons/sport_hillclimbing.glow.20.png b/website/images/mapicons/sport_hillclimbing.glow.20.png new file mode 100644 index 00000000..321949c6 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.glow.20.png differ diff --git a/website/images/mapicons/sport_hillclimbing.glow.24.png b/website/images/mapicons/sport_hillclimbing.glow.24.png new file mode 100644 index 00000000..62eb0d02 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.glow.24.png differ diff --git a/website/images/mapicons/sport_hillclimbing.glow.32.png b/website/images/mapicons/sport_hillclimbing.glow.32.png new file mode 100644 index 00000000..c4185683 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.glow.32.png differ diff --git a/website/images/mapicons/sport_hillclimbing.n.12.png b/website/images/mapicons/sport_hillclimbing.n.12.png new file mode 100644 index 00000000..83df5281 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.n.12.png differ diff --git a/website/images/mapicons/sport_hillclimbing.n.16.png b/website/images/mapicons/sport_hillclimbing.n.16.png new file mode 100644 index 00000000..c5e0ed16 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.n.16.png differ diff --git a/website/images/mapicons/sport_hillclimbing.n.20.png b/website/images/mapicons/sport_hillclimbing.n.20.png new file mode 100644 index 00000000..611931a0 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.n.20.png differ diff --git a/website/images/mapicons/sport_hillclimbing.n.24.png b/website/images/mapicons/sport_hillclimbing.n.24.png new file mode 100644 index 00000000..e22196f0 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.n.24.png differ diff --git a/website/images/mapicons/sport_hillclimbing.n.32.png b/website/images/mapicons/sport_hillclimbing.n.32.png new file mode 100644 index 00000000..5c17e2dc Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.n.32.png differ diff --git a/website/images/mapicons/sport_hillclimbing.p.12.png b/website/images/mapicons/sport_hillclimbing.p.12.png new file mode 100644 index 00000000..896ba0cd Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.p.12.png differ diff --git a/website/images/mapicons/sport_hillclimbing.p.16.png b/website/images/mapicons/sport_hillclimbing.p.16.png new file mode 100644 index 00000000..d28721dd Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.p.16.png differ diff --git a/website/images/mapicons/sport_hillclimbing.p.20.png b/website/images/mapicons/sport_hillclimbing.p.20.png new file mode 100644 index 00000000..090695c1 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.p.20.png differ diff --git a/website/images/mapicons/sport_hillclimbing.p.24.png b/website/images/mapicons/sport_hillclimbing.p.24.png new file mode 100644 index 00000000..826cf9ee Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.p.24.png differ diff --git a/website/images/mapicons/sport_hillclimbing.p.32.png b/website/images/mapicons/sport_hillclimbing.p.32.png new file mode 100644 index 00000000..e3802b98 Binary files /dev/null and b/website/images/mapicons/sport_hillclimbing.p.32.png differ diff --git a/website/images/mapicons/sport_horse_racing.glow.12.png b/website/images/mapicons/sport_horse_racing.glow.12.png new file mode 100644 index 00000000..c345d342 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.glow.12.png differ diff --git a/website/images/mapicons/sport_horse_racing.glow.16.png b/website/images/mapicons/sport_horse_racing.glow.16.png new file mode 100644 index 00000000..31529616 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.glow.16.png differ diff --git a/website/images/mapicons/sport_horse_racing.glow.20.png b/website/images/mapicons/sport_horse_racing.glow.20.png new file mode 100644 index 00000000..cfd56814 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.glow.20.png differ diff --git a/website/images/mapicons/sport_horse_racing.glow.24.png b/website/images/mapicons/sport_horse_racing.glow.24.png new file mode 100644 index 00000000..309667d8 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.glow.24.png differ diff --git a/website/images/mapicons/sport_horse_racing.glow.32.png b/website/images/mapicons/sport_horse_racing.glow.32.png new file mode 100644 index 00000000..221fcac7 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.glow.32.png differ diff --git a/website/images/mapicons/sport_horse_racing.n.12.png b/website/images/mapicons/sport_horse_racing.n.12.png new file mode 100644 index 00000000..b5927a78 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.n.12.png differ diff --git a/website/images/mapicons/sport_horse_racing.n.16.png b/website/images/mapicons/sport_horse_racing.n.16.png new file mode 100644 index 00000000..36e8f551 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.n.16.png differ diff --git a/website/images/mapicons/sport_horse_racing.n.20.png b/website/images/mapicons/sport_horse_racing.n.20.png new file mode 100644 index 00000000..34edae92 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.n.20.png differ diff --git a/website/images/mapicons/sport_horse_racing.n.24.png b/website/images/mapicons/sport_horse_racing.n.24.png new file mode 100644 index 00000000..ef4c6a0c Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.n.24.png differ diff --git a/website/images/mapicons/sport_horse_racing.n.32.png b/website/images/mapicons/sport_horse_racing.n.32.png new file mode 100644 index 00000000..e64f7327 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.n.32.png differ diff --git a/website/images/mapicons/sport_horse_racing.p.12.png b/website/images/mapicons/sport_horse_racing.p.12.png new file mode 100644 index 00000000..fa3371dd Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.p.12.png differ diff --git a/website/images/mapicons/sport_horse_racing.p.16.png b/website/images/mapicons/sport_horse_racing.p.16.png new file mode 100644 index 00000000..e113ce03 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.p.16.png differ diff --git a/website/images/mapicons/sport_horse_racing.p.20.png b/website/images/mapicons/sport_horse_racing.p.20.png new file mode 100644 index 00000000..6d097c28 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.p.20.png differ diff --git a/website/images/mapicons/sport_horse_racing.p.24.png b/website/images/mapicons/sport_horse_racing.p.24.png new file mode 100644 index 00000000..26340eae Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.p.24.png differ diff --git a/website/images/mapicons/sport_horse_racing.p.32.png b/website/images/mapicons/sport_horse_racing.p.32.png new file mode 100644 index 00000000..59cf2b78 Binary files /dev/null and b/website/images/mapicons/sport_horse_racing.p.32.png differ diff --git a/website/images/mapicons/sport_iceskating.glow.12.png b/website/images/mapicons/sport_iceskating.glow.12.png new file mode 100644 index 00000000..58b1da50 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.glow.12.png differ diff --git a/website/images/mapicons/sport_iceskating.glow.16.png b/website/images/mapicons/sport_iceskating.glow.16.png new file mode 100644 index 00000000..7e0cc61d Binary files /dev/null and b/website/images/mapicons/sport_iceskating.glow.16.png differ diff --git a/website/images/mapicons/sport_iceskating.glow.20.png b/website/images/mapicons/sport_iceskating.glow.20.png new file mode 100644 index 00000000..a411ac0a Binary files /dev/null and b/website/images/mapicons/sport_iceskating.glow.20.png differ diff --git a/website/images/mapicons/sport_iceskating.glow.24.png b/website/images/mapicons/sport_iceskating.glow.24.png new file mode 100644 index 00000000..a3b443d4 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.glow.24.png differ diff --git a/website/images/mapicons/sport_iceskating.glow.32.png b/website/images/mapicons/sport_iceskating.glow.32.png new file mode 100644 index 00000000..4a7255f7 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.glow.32.png differ diff --git a/website/images/mapicons/sport_iceskating.n.12.png b/website/images/mapicons/sport_iceskating.n.12.png new file mode 100644 index 00000000..bf5ae307 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.n.12.png differ diff --git a/website/images/mapicons/sport_iceskating.n.16.png b/website/images/mapicons/sport_iceskating.n.16.png new file mode 100644 index 00000000..568115b3 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.n.16.png differ diff --git a/website/images/mapicons/sport_iceskating.n.20.png b/website/images/mapicons/sport_iceskating.n.20.png new file mode 100644 index 00000000..6a2fb3e4 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.n.20.png differ diff --git a/website/images/mapicons/sport_iceskating.n.24.png b/website/images/mapicons/sport_iceskating.n.24.png new file mode 100644 index 00000000..f7580d5f Binary files /dev/null and b/website/images/mapicons/sport_iceskating.n.24.png differ diff --git a/website/images/mapicons/sport_iceskating.n.32.png b/website/images/mapicons/sport_iceskating.n.32.png new file mode 100644 index 00000000..b1f476cc Binary files /dev/null and b/website/images/mapicons/sport_iceskating.n.32.png differ diff --git a/website/images/mapicons/sport_iceskating.p.12.png b/website/images/mapicons/sport_iceskating.p.12.png new file mode 100644 index 00000000..d1078dc5 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.p.12.png differ diff --git a/website/images/mapicons/sport_iceskating.p.16.png b/website/images/mapicons/sport_iceskating.p.16.png new file mode 100644 index 00000000..62abfd6b Binary files /dev/null and b/website/images/mapicons/sport_iceskating.p.16.png differ diff --git a/website/images/mapicons/sport_iceskating.p.20.png b/website/images/mapicons/sport_iceskating.p.20.png new file mode 100644 index 00000000..a6614d81 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.p.20.png differ diff --git a/website/images/mapicons/sport_iceskating.p.24.png b/website/images/mapicons/sport_iceskating.p.24.png new file mode 100644 index 00000000..ba45bff0 Binary files /dev/null and b/website/images/mapicons/sport_iceskating.p.24.png differ diff --git a/website/images/mapicons/sport_iceskating.p.32.png b/website/images/mapicons/sport_iceskating.p.32.png new file mode 100644 index 00000000..89113f1c Binary files /dev/null and b/website/images/mapicons/sport_iceskating.p.32.png differ diff --git a/website/images/mapicons/sport_jetski.glow.12.png b/website/images/mapicons/sport_jetski.glow.12.png new file mode 100644 index 00000000..c8649225 Binary files /dev/null and b/website/images/mapicons/sport_jetski.glow.12.png differ diff --git a/website/images/mapicons/sport_jetski.glow.16.png b/website/images/mapicons/sport_jetski.glow.16.png new file mode 100644 index 00000000..0aea3470 Binary files /dev/null and b/website/images/mapicons/sport_jetski.glow.16.png differ diff --git a/website/images/mapicons/sport_jetski.glow.20.png b/website/images/mapicons/sport_jetski.glow.20.png new file mode 100644 index 00000000..e366b42b Binary files /dev/null and b/website/images/mapicons/sport_jetski.glow.20.png differ diff --git a/website/images/mapicons/sport_jetski.glow.24.png b/website/images/mapicons/sport_jetski.glow.24.png new file mode 100644 index 00000000..743b7230 Binary files /dev/null and b/website/images/mapicons/sport_jetski.glow.24.png differ diff --git a/website/images/mapicons/sport_jetski.glow.32.png b/website/images/mapicons/sport_jetski.glow.32.png new file mode 100644 index 00000000..bbbc4eb5 Binary files /dev/null and b/website/images/mapicons/sport_jetski.glow.32.png differ diff --git a/website/images/mapicons/sport_jetski.n.12.png b/website/images/mapicons/sport_jetski.n.12.png new file mode 100644 index 00000000..d05d7a2e Binary files /dev/null and b/website/images/mapicons/sport_jetski.n.12.png differ diff --git a/website/images/mapicons/sport_jetski.n.16.png b/website/images/mapicons/sport_jetski.n.16.png new file mode 100644 index 00000000..067128ee Binary files /dev/null and b/website/images/mapicons/sport_jetski.n.16.png differ diff --git a/website/images/mapicons/sport_jetski.n.20.png b/website/images/mapicons/sport_jetski.n.20.png new file mode 100644 index 00000000..43833f62 Binary files /dev/null and b/website/images/mapicons/sport_jetski.n.20.png differ diff --git a/website/images/mapicons/sport_jetski.n.24.png b/website/images/mapicons/sport_jetski.n.24.png new file mode 100644 index 00000000..22d8fad4 Binary files /dev/null and b/website/images/mapicons/sport_jetski.n.24.png differ diff --git a/website/images/mapicons/sport_jetski.n.32.png b/website/images/mapicons/sport_jetski.n.32.png new file mode 100644 index 00000000..bfb63818 Binary files /dev/null and b/website/images/mapicons/sport_jetski.n.32.png differ diff --git a/website/images/mapicons/sport_jetski.p.12.png b/website/images/mapicons/sport_jetski.p.12.png new file mode 100644 index 00000000..21472ad9 Binary files /dev/null and b/website/images/mapicons/sport_jetski.p.12.png differ diff --git a/website/images/mapicons/sport_jetski.p.16.png b/website/images/mapicons/sport_jetski.p.16.png new file mode 100644 index 00000000..d0e0209a Binary files /dev/null and b/website/images/mapicons/sport_jetski.p.16.png differ diff --git a/website/images/mapicons/sport_jetski.p.20.png b/website/images/mapicons/sport_jetski.p.20.png new file mode 100644 index 00000000..7517f0d5 Binary files /dev/null and b/website/images/mapicons/sport_jetski.p.20.png differ diff --git a/website/images/mapicons/sport_jetski.p.24.png b/website/images/mapicons/sport_jetski.p.24.png new file mode 100644 index 00000000..21202ab5 Binary files /dev/null and b/website/images/mapicons/sport_jetski.p.24.png differ diff --git a/website/images/mapicons/sport_jetski.p.32.png b/website/images/mapicons/sport_jetski.p.32.png new file mode 100644 index 00000000..6086c523 Binary files /dev/null and b/website/images/mapicons/sport_jetski.p.32.png differ diff --git a/website/images/mapicons/sport_leisure_centre.glow.12.png b/website/images/mapicons/sport_leisure_centre.glow.12.png new file mode 100644 index 00000000..859ec62c Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.glow.12.png differ diff --git a/website/images/mapicons/sport_leisure_centre.glow.16.png b/website/images/mapicons/sport_leisure_centre.glow.16.png new file mode 100644 index 00000000..755dc16b Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.glow.16.png differ diff --git a/website/images/mapicons/sport_leisure_centre.glow.20.png b/website/images/mapicons/sport_leisure_centre.glow.20.png new file mode 100644 index 00000000..841f9f2b Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.glow.20.png differ diff --git a/website/images/mapicons/sport_leisure_centre.glow.24.png b/website/images/mapicons/sport_leisure_centre.glow.24.png new file mode 100644 index 00000000..8ae15b2d Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.glow.24.png differ diff --git a/website/images/mapicons/sport_leisure_centre.glow.32.png b/website/images/mapicons/sport_leisure_centre.glow.32.png new file mode 100644 index 00000000..bbc03980 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.glow.32.png differ diff --git a/website/images/mapicons/sport_leisure_centre.n.12.png b/website/images/mapicons/sport_leisure_centre.n.12.png new file mode 100644 index 00000000..f2e379d4 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.n.12.png differ diff --git a/website/images/mapicons/sport_leisure_centre.n.16.png b/website/images/mapicons/sport_leisure_centre.n.16.png new file mode 100644 index 00000000..976aeeb6 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.n.16.png differ diff --git a/website/images/mapicons/sport_leisure_centre.n.20.png b/website/images/mapicons/sport_leisure_centre.n.20.png new file mode 100644 index 00000000..42beae9f Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.n.20.png differ diff --git a/website/images/mapicons/sport_leisure_centre.n.24.png b/website/images/mapicons/sport_leisure_centre.n.24.png new file mode 100644 index 00000000..dd6d636c Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.n.24.png differ diff --git a/website/images/mapicons/sport_leisure_centre.n.32.png b/website/images/mapicons/sport_leisure_centre.n.32.png new file mode 100644 index 00000000..ca685c59 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.n.32.png differ diff --git a/website/images/mapicons/sport_leisure_centre.p.12.png b/website/images/mapicons/sport_leisure_centre.p.12.png new file mode 100644 index 00000000..c56fa3e9 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.p.12.png differ diff --git a/website/images/mapicons/sport_leisure_centre.p.16.png b/website/images/mapicons/sport_leisure_centre.p.16.png new file mode 100644 index 00000000..f14aacdb Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.p.16.png differ diff --git a/website/images/mapicons/sport_leisure_centre.p.20.png b/website/images/mapicons/sport_leisure_centre.p.20.png new file mode 100644 index 00000000..9cc9063d Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.p.20.png differ diff --git a/website/images/mapicons/sport_leisure_centre.p.24.png b/website/images/mapicons/sport_leisure_centre.p.24.png new file mode 100644 index 00000000..3a63e342 Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.p.24.png differ diff --git a/website/images/mapicons/sport_leisure_centre.p.32.png b/website/images/mapicons/sport_leisure_centre.p.32.png new file mode 100644 index 00000000..639bbbea Binary files /dev/null and b/website/images/mapicons/sport_leisure_centre.p.32.png differ diff --git a/website/images/mapicons/sport_motorracing.glow.12.png b/website/images/mapicons/sport_motorracing.glow.12.png new file mode 100644 index 00000000..b7409425 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.glow.12.png differ diff --git a/website/images/mapicons/sport_motorracing.glow.16.png b/website/images/mapicons/sport_motorracing.glow.16.png new file mode 100644 index 00000000..ce68b0fb Binary files /dev/null and b/website/images/mapicons/sport_motorracing.glow.16.png differ diff --git a/website/images/mapicons/sport_motorracing.glow.20.png b/website/images/mapicons/sport_motorracing.glow.20.png new file mode 100644 index 00000000..ee5d282d Binary files /dev/null and b/website/images/mapicons/sport_motorracing.glow.20.png differ diff --git a/website/images/mapicons/sport_motorracing.glow.24.png b/website/images/mapicons/sport_motorracing.glow.24.png new file mode 100644 index 00000000..c975091e Binary files /dev/null and b/website/images/mapicons/sport_motorracing.glow.24.png differ diff --git a/website/images/mapicons/sport_motorracing.glow.32.png b/website/images/mapicons/sport_motorracing.glow.32.png new file mode 100644 index 00000000..99386332 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.glow.32.png differ diff --git a/website/images/mapicons/sport_motorracing.n.12.png b/website/images/mapicons/sport_motorracing.n.12.png new file mode 100644 index 00000000..27af8f7a Binary files /dev/null and b/website/images/mapicons/sport_motorracing.n.12.png differ diff --git a/website/images/mapicons/sport_motorracing.n.16.png b/website/images/mapicons/sport_motorracing.n.16.png new file mode 100644 index 00000000..28d0b3b2 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.n.16.png differ diff --git a/website/images/mapicons/sport_motorracing.n.20.png b/website/images/mapicons/sport_motorracing.n.20.png new file mode 100644 index 00000000..62bdbfc4 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.n.20.png differ diff --git a/website/images/mapicons/sport_motorracing.n.24.png b/website/images/mapicons/sport_motorracing.n.24.png new file mode 100644 index 00000000..862ffa9a Binary files /dev/null and b/website/images/mapicons/sport_motorracing.n.24.png differ diff --git a/website/images/mapicons/sport_motorracing.n.32.png b/website/images/mapicons/sport_motorracing.n.32.png new file mode 100644 index 00000000..98d2c0c6 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.n.32.png differ diff --git a/website/images/mapicons/sport_motorracing.p.12.png b/website/images/mapicons/sport_motorracing.p.12.png new file mode 100644 index 00000000..b9a9dc35 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.p.12.png differ diff --git a/website/images/mapicons/sport_motorracing.p.16.png b/website/images/mapicons/sport_motorracing.p.16.png new file mode 100644 index 00000000..c2a7a83f Binary files /dev/null and b/website/images/mapicons/sport_motorracing.p.16.png differ diff --git a/website/images/mapicons/sport_motorracing.p.20.png b/website/images/mapicons/sport_motorracing.p.20.png new file mode 100644 index 00000000..3a07c1c1 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.p.20.png differ diff --git a/website/images/mapicons/sport_motorracing.p.24.png b/website/images/mapicons/sport_motorracing.p.24.png new file mode 100644 index 00000000..3e520fbb Binary files /dev/null and b/website/images/mapicons/sport_motorracing.p.24.png differ diff --git a/website/images/mapicons/sport_motorracing.p.32.png b/website/images/mapicons/sport_motorracing.p.32.png new file mode 100644 index 00000000..4c9b6e44 Binary files /dev/null and b/website/images/mapicons/sport_motorracing.p.32.png differ diff --git a/website/images/mapicons/sport_playground.glow.12.png b/website/images/mapicons/sport_playground.glow.12.png new file mode 100644 index 00000000..7a2837a9 Binary files /dev/null and b/website/images/mapicons/sport_playground.glow.12.png differ diff --git a/website/images/mapicons/sport_playground.glow.16.png b/website/images/mapicons/sport_playground.glow.16.png new file mode 100644 index 00000000..1ea3d0df Binary files /dev/null and b/website/images/mapicons/sport_playground.glow.16.png differ diff --git a/website/images/mapicons/sport_playground.glow.20.png b/website/images/mapicons/sport_playground.glow.20.png new file mode 100644 index 00000000..a398ef04 Binary files /dev/null and b/website/images/mapicons/sport_playground.glow.20.png differ diff --git a/website/images/mapicons/sport_playground.glow.24.png b/website/images/mapicons/sport_playground.glow.24.png new file mode 100644 index 00000000..597fb504 Binary files /dev/null and b/website/images/mapicons/sport_playground.glow.24.png differ diff --git a/website/images/mapicons/sport_playground.glow.32.png b/website/images/mapicons/sport_playground.glow.32.png new file mode 100644 index 00000000..7458dc73 Binary files /dev/null and b/website/images/mapicons/sport_playground.glow.32.png differ diff --git a/website/images/mapicons/sport_playground.n.12.png b/website/images/mapicons/sport_playground.n.12.png new file mode 100644 index 00000000..8ab0b7fd Binary files /dev/null and b/website/images/mapicons/sport_playground.n.12.png differ diff --git a/website/images/mapicons/sport_playground.n.16.png b/website/images/mapicons/sport_playground.n.16.png new file mode 100644 index 00000000..789da7bc Binary files /dev/null and b/website/images/mapicons/sport_playground.n.16.png differ diff --git a/website/images/mapicons/sport_playground.n.20.png b/website/images/mapicons/sport_playground.n.20.png new file mode 100644 index 00000000..87154298 Binary files /dev/null and b/website/images/mapicons/sport_playground.n.20.png differ diff --git a/website/images/mapicons/sport_playground.n.24.png b/website/images/mapicons/sport_playground.n.24.png new file mode 100644 index 00000000..318ec71d Binary files /dev/null and b/website/images/mapicons/sport_playground.n.24.png differ diff --git a/website/images/mapicons/sport_playground.n.32.png b/website/images/mapicons/sport_playground.n.32.png new file mode 100644 index 00000000..a718b626 Binary files /dev/null and b/website/images/mapicons/sport_playground.n.32.png differ diff --git a/website/images/mapicons/sport_playground.p.12.png b/website/images/mapicons/sport_playground.p.12.png new file mode 100644 index 00000000..f0f8aae8 Binary files /dev/null and b/website/images/mapicons/sport_playground.p.12.png differ diff --git a/website/images/mapicons/sport_playground.p.16.png b/website/images/mapicons/sport_playground.p.16.png new file mode 100644 index 00000000..e73c2e52 Binary files /dev/null and b/website/images/mapicons/sport_playground.p.16.png differ diff --git a/website/images/mapicons/sport_playground.p.20.png b/website/images/mapicons/sport_playground.p.20.png new file mode 100644 index 00000000..6f7ad3c5 Binary files /dev/null and b/website/images/mapicons/sport_playground.p.20.png differ diff --git a/website/images/mapicons/sport_playground.p.24.png b/website/images/mapicons/sport_playground.p.24.png new file mode 100644 index 00000000..cbca7c5d Binary files /dev/null and b/website/images/mapicons/sport_playground.p.24.png differ diff --git a/website/images/mapicons/sport_playground.p.32.png b/website/images/mapicons/sport_playground.p.32.png new file mode 100644 index 00000000..34ff5cc7 Binary files /dev/null and b/website/images/mapicons/sport_playground.p.32.png differ diff --git a/website/images/mapicons/sport_sailing.glow.12.png b/website/images/mapicons/sport_sailing.glow.12.png new file mode 100644 index 00000000..4f1dc95a Binary files /dev/null and b/website/images/mapicons/sport_sailing.glow.12.png differ diff --git a/website/images/mapicons/sport_sailing.glow.16.png b/website/images/mapicons/sport_sailing.glow.16.png new file mode 100644 index 00000000..87e94a15 Binary files /dev/null and b/website/images/mapicons/sport_sailing.glow.16.png differ diff --git a/website/images/mapicons/sport_sailing.glow.20.png b/website/images/mapicons/sport_sailing.glow.20.png new file mode 100644 index 00000000..6bd8e3b3 Binary files /dev/null and b/website/images/mapicons/sport_sailing.glow.20.png differ diff --git a/website/images/mapicons/sport_sailing.glow.24.png b/website/images/mapicons/sport_sailing.glow.24.png new file mode 100644 index 00000000..5770a9f5 Binary files /dev/null and b/website/images/mapicons/sport_sailing.glow.24.png differ diff --git a/website/images/mapicons/sport_sailing.glow.32.png b/website/images/mapicons/sport_sailing.glow.32.png new file mode 100644 index 00000000..d8c1f966 Binary files /dev/null and b/website/images/mapicons/sport_sailing.glow.32.png differ diff --git a/website/images/mapicons/sport_sailing.n.12.png b/website/images/mapicons/sport_sailing.n.12.png new file mode 100644 index 00000000..d93d848a Binary files /dev/null and b/website/images/mapicons/sport_sailing.n.12.png differ diff --git a/website/images/mapicons/sport_sailing.n.16.png b/website/images/mapicons/sport_sailing.n.16.png new file mode 100644 index 00000000..a5397d2b Binary files /dev/null and b/website/images/mapicons/sport_sailing.n.16.png differ diff --git a/website/images/mapicons/sport_sailing.n.20.png b/website/images/mapicons/sport_sailing.n.20.png new file mode 100644 index 00000000..2a5f0288 Binary files /dev/null and b/website/images/mapicons/sport_sailing.n.20.png differ diff --git a/website/images/mapicons/sport_sailing.n.24.png b/website/images/mapicons/sport_sailing.n.24.png new file mode 100644 index 00000000..462fcc4f Binary files /dev/null and b/website/images/mapicons/sport_sailing.n.24.png differ diff --git a/website/images/mapicons/sport_sailing.n.32.png b/website/images/mapicons/sport_sailing.n.32.png new file mode 100644 index 00000000..c5bdab33 Binary files /dev/null and b/website/images/mapicons/sport_sailing.n.32.png differ diff --git a/website/images/mapicons/sport_sailing.p.12.png b/website/images/mapicons/sport_sailing.p.12.png new file mode 100644 index 00000000..15414fbe Binary files /dev/null and b/website/images/mapicons/sport_sailing.p.12.png differ diff --git a/website/images/mapicons/sport_sailing.p.16.png b/website/images/mapicons/sport_sailing.p.16.png new file mode 100644 index 00000000..b87d32c3 Binary files /dev/null and b/website/images/mapicons/sport_sailing.p.16.png differ diff --git a/website/images/mapicons/sport_sailing.p.20.png b/website/images/mapicons/sport_sailing.p.20.png new file mode 100644 index 00000000..5a92bbfc Binary files /dev/null and b/website/images/mapicons/sport_sailing.p.20.png differ diff --git a/website/images/mapicons/sport_sailing.p.24.png b/website/images/mapicons/sport_sailing.p.24.png new file mode 100644 index 00000000..9672e11c Binary files /dev/null and b/website/images/mapicons/sport_sailing.p.24.png differ diff --git a/website/images/mapicons/sport_sailing.p.32.png b/website/images/mapicons/sport_sailing.p.32.png new file mode 100644 index 00000000..780af85f Binary files /dev/null and b/website/images/mapicons/sport_sailing.p.32.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.glow.12.png b/website/images/mapicons/sport_skiing_crosscountry.glow.12.png new file mode 100644 index 00000000..34cebbb7 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.glow.12.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.glow.16.png b/website/images/mapicons/sport_skiing_crosscountry.glow.16.png new file mode 100644 index 00000000..1159f06d Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.glow.16.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.glow.20.png b/website/images/mapicons/sport_skiing_crosscountry.glow.20.png new file mode 100644 index 00000000..8f25fa9e Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.glow.20.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.glow.24.png b/website/images/mapicons/sport_skiing_crosscountry.glow.24.png new file mode 100644 index 00000000..38db4a45 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.glow.24.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.glow.32.png b/website/images/mapicons/sport_skiing_crosscountry.glow.32.png new file mode 100644 index 00000000..a98c899e Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.glow.32.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.n.12.png b/website/images/mapicons/sport_skiing_crosscountry.n.12.png new file mode 100644 index 00000000..4e157d4b Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.n.12.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.n.16.png b/website/images/mapicons/sport_skiing_crosscountry.n.16.png new file mode 100644 index 00000000..62a33ede Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.n.16.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.n.20.png b/website/images/mapicons/sport_skiing_crosscountry.n.20.png new file mode 100644 index 00000000..30c35601 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.n.20.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.n.24.png b/website/images/mapicons/sport_skiing_crosscountry.n.24.png new file mode 100644 index 00000000..b2787262 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.n.24.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.n.32.png b/website/images/mapicons/sport_skiing_crosscountry.n.32.png new file mode 100644 index 00000000..10b8b1c5 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.n.32.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.p.12.png b/website/images/mapicons/sport_skiing_crosscountry.p.12.png new file mode 100644 index 00000000..bfb4ca1f Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.p.12.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.p.16.png b/website/images/mapicons/sport_skiing_crosscountry.p.16.png new file mode 100644 index 00000000..09590314 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.p.16.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.p.20.png b/website/images/mapicons/sport_skiing_crosscountry.p.20.png new file mode 100644 index 00000000..09cc93e2 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.p.20.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.p.24.png b/website/images/mapicons/sport_skiing_crosscountry.p.24.png new file mode 100644 index 00000000..ef4d178d Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.p.24.png differ diff --git a/website/images/mapicons/sport_skiing_crosscountry.p.32.png b/website/images/mapicons/sport_skiing_crosscountry.p.32.png new file mode 100644 index 00000000..ac029bf5 Binary files /dev/null and b/website/images/mapicons/sport_skiing_crosscountry.p.32.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.glow.12.png b/website/images/mapicons/sport_skiing_downhill.glow.12.png new file mode 100644 index 00000000..1b08473b Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.glow.12.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.glow.16.png b/website/images/mapicons/sport_skiing_downhill.glow.16.png new file mode 100644 index 00000000..49c8ba3f Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.glow.16.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.glow.20.png b/website/images/mapicons/sport_skiing_downhill.glow.20.png new file mode 100644 index 00000000..d2b42b1d Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.glow.20.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.glow.24.png b/website/images/mapicons/sport_skiing_downhill.glow.24.png new file mode 100644 index 00000000..b77ed3de Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.glow.24.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.glow.32.png b/website/images/mapicons/sport_skiing_downhill.glow.32.png new file mode 100644 index 00000000..d820a939 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.glow.32.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.n.12.png b/website/images/mapicons/sport_skiing_downhill.n.12.png new file mode 100644 index 00000000..5721e6db Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.n.12.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.n.16.png b/website/images/mapicons/sport_skiing_downhill.n.16.png new file mode 100644 index 00000000..a9e63598 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.n.16.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.n.20.png b/website/images/mapicons/sport_skiing_downhill.n.20.png new file mode 100644 index 00000000..92f848e9 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.n.20.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.n.24.png b/website/images/mapicons/sport_skiing_downhill.n.24.png new file mode 100644 index 00000000..b9ec276f Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.n.24.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.n.32.png b/website/images/mapicons/sport_skiing_downhill.n.32.png new file mode 100644 index 00000000..3f03b80c Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.n.32.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.p.12.png b/website/images/mapicons/sport_skiing_downhill.p.12.png new file mode 100644 index 00000000..e1d8a485 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.p.12.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.p.16.png b/website/images/mapicons/sport_skiing_downhill.p.16.png new file mode 100644 index 00000000..238621c8 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.p.16.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.p.20.png b/website/images/mapicons/sport_skiing_downhill.p.20.png new file mode 100644 index 00000000..6f74e764 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.p.20.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.p.24.png b/website/images/mapicons/sport_skiing_downhill.p.24.png new file mode 100644 index 00000000..321a7ee0 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.p.24.png differ diff --git a/website/images/mapicons/sport_skiing_downhill.p.32.png b/website/images/mapicons/sport_skiing_downhill.p.32.png new file mode 100644 index 00000000..aaba1982 Binary files /dev/null and b/website/images/mapicons/sport_skiing_downhill.p.32.png differ diff --git a/website/images/mapicons/sport_snooker.glow.12.png b/website/images/mapicons/sport_snooker.glow.12.png new file mode 100644 index 00000000..abffab2d Binary files /dev/null and b/website/images/mapicons/sport_snooker.glow.12.png differ diff --git a/website/images/mapicons/sport_snooker.glow.16.png b/website/images/mapicons/sport_snooker.glow.16.png new file mode 100644 index 00000000..a1b979cd Binary files /dev/null and b/website/images/mapicons/sport_snooker.glow.16.png differ diff --git a/website/images/mapicons/sport_snooker.glow.20.png b/website/images/mapicons/sport_snooker.glow.20.png new file mode 100644 index 00000000..d4ad62b4 Binary files /dev/null and b/website/images/mapicons/sport_snooker.glow.20.png differ diff --git a/website/images/mapicons/sport_snooker.glow.24.png b/website/images/mapicons/sport_snooker.glow.24.png new file mode 100644 index 00000000..da857bba Binary files /dev/null and b/website/images/mapicons/sport_snooker.glow.24.png differ diff --git a/website/images/mapicons/sport_snooker.glow.32.png b/website/images/mapicons/sport_snooker.glow.32.png new file mode 100644 index 00000000..1b4e5ee1 Binary files /dev/null and b/website/images/mapicons/sport_snooker.glow.32.png differ diff --git a/website/images/mapicons/sport_snooker.n.12.png b/website/images/mapicons/sport_snooker.n.12.png new file mode 100644 index 00000000..5072cf2c Binary files /dev/null and b/website/images/mapicons/sport_snooker.n.12.png differ diff --git a/website/images/mapicons/sport_snooker.n.16.png b/website/images/mapicons/sport_snooker.n.16.png new file mode 100644 index 00000000..cebbd02b Binary files /dev/null and b/website/images/mapicons/sport_snooker.n.16.png differ diff --git a/website/images/mapicons/sport_snooker.n.20.png b/website/images/mapicons/sport_snooker.n.20.png new file mode 100644 index 00000000..c48240e3 Binary files /dev/null and b/website/images/mapicons/sport_snooker.n.20.png differ diff --git a/website/images/mapicons/sport_snooker.n.24.png b/website/images/mapicons/sport_snooker.n.24.png new file mode 100644 index 00000000..8f773076 Binary files /dev/null and b/website/images/mapicons/sport_snooker.n.24.png differ diff --git a/website/images/mapicons/sport_snooker.n.32.png b/website/images/mapicons/sport_snooker.n.32.png new file mode 100644 index 00000000..934946b5 Binary files /dev/null and b/website/images/mapicons/sport_snooker.n.32.png differ diff --git a/website/images/mapicons/sport_snooker.p.12.png b/website/images/mapicons/sport_snooker.p.12.png new file mode 100644 index 00000000..a721cf89 Binary files /dev/null and b/website/images/mapicons/sport_snooker.p.12.png differ diff --git a/website/images/mapicons/sport_snooker.p.16.png b/website/images/mapicons/sport_snooker.p.16.png new file mode 100644 index 00000000..025b1fe7 Binary files /dev/null and b/website/images/mapicons/sport_snooker.p.16.png differ diff --git a/website/images/mapicons/sport_snooker.p.20.png b/website/images/mapicons/sport_snooker.p.20.png new file mode 100644 index 00000000..dbb00d87 Binary files /dev/null and b/website/images/mapicons/sport_snooker.p.20.png differ diff --git a/website/images/mapicons/sport_snooker.p.24.png b/website/images/mapicons/sport_snooker.p.24.png new file mode 100644 index 00000000..71ad2439 Binary files /dev/null and b/website/images/mapicons/sport_snooker.p.24.png differ diff --git a/website/images/mapicons/sport_snooker.p.32.png b/website/images/mapicons/sport_snooker.p.32.png new file mode 100644 index 00000000..903ac9f3 Binary files /dev/null and b/website/images/mapicons/sport_snooker.p.32.png differ diff --git a/website/images/mapicons/sport_soccer.glow.12.png b/website/images/mapicons/sport_soccer.glow.12.png new file mode 100644 index 00000000..4e51ad67 Binary files /dev/null and b/website/images/mapicons/sport_soccer.glow.12.png differ diff --git a/website/images/mapicons/sport_soccer.glow.16.png b/website/images/mapicons/sport_soccer.glow.16.png new file mode 100644 index 00000000..286f0e8f Binary files /dev/null and b/website/images/mapicons/sport_soccer.glow.16.png differ diff --git a/website/images/mapicons/sport_soccer.glow.20.png b/website/images/mapicons/sport_soccer.glow.20.png new file mode 100644 index 00000000..5fd5c118 Binary files /dev/null and b/website/images/mapicons/sport_soccer.glow.20.png differ diff --git a/website/images/mapicons/sport_soccer.glow.24.png b/website/images/mapicons/sport_soccer.glow.24.png new file mode 100644 index 00000000..ebc933b6 Binary files /dev/null and b/website/images/mapicons/sport_soccer.glow.24.png differ diff --git a/website/images/mapicons/sport_soccer.glow.32.png b/website/images/mapicons/sport_soccer.glow.32.png new file mode 100644 index 00000000..5fbe27ee Binary files /dev/null and b/website/images/mapicons/sport_soccer.glow.32.png differ diff --git a/website/images/mapicons/sport_soccer.n.12.png b/website/images/mapicons/sport_soccer.n.12.png new file mode 100644 index 00000000..83a72cd3 Binary files /dev/null and b/website/images/mapicons/sport_soccer.n.12.png differ diff --git a/website/images/mapicons/sport_soccer.n.16.png b/website/images/mapicons/sport_soccer.n.16.png new file mode 100644 index 00000000..0726c70c Binary files /dev/null and b/website/images/mapicons/sport_soccer.n.16.png differ diff --git a/website/images/mapicons/sport_soccer.n.20.png b/website/images/mapicons/sport_soccer.n.20.png new file mode 100644 index 00000000..876c68ba Binary files /dev/null and b/website/images/mapicons/sport_soccer.n.20.png differ diff --git a/website/images/mapicons/sport_soccer.n.24.png b/website/images/mapicons/sport_soccer.n.24.png new file mode 100644 index 00000000..1b44f441 Binary files /dev/null and b/website/images/mapicons/sport_soccer.n.24.png differ diff --git a/website/images/mapicons/sport_soccer.n.32.png b/website/images/mapicons/sport_soccer.n.32.png new file mode 100644 index 00000000..251cd76c Binary files /dev/null and b/website/images/mapicons/sport_soccer.n.32.png differ diff --git a/website/images/mapicons/sport_soccer.p.12.png b/website/images/mapicons/sport_soccer.p.12.png new file mode 100644 index 00000000..8c8353f2 Binary files /dev/null and b/website/images/mapicons/sport_soccer.p.12.png differ diff --git a/website/images/mapicons/sport_soccer.p.16.png b/website/images/mapicons/sport_soccer.p.16.png new file mode 100644 index 00000000..cf6ab3ef Binary files /dev/null and b/website/images/mapicons/sport_soccer.p.16.png differ diff --git a/website/images/mapicons/sport_soccer.p.20.png b/website/images/mapicons/sport_soccer.p.20.png new file mode 100644 index 00000000..bdb283ee Binary files /dev/null and b/website/images/mapicons/sport_soccer.p.20.png differ diff --git a/website/images/mapicons/sport_soccer.p.24.png b/website/images/mapicons/sport_soccer.p.24.png new file mode 100644 index 00000000..9a34ddb6 Binary files /dev/null and b/website/images/mapicons/sport_soccer.p.24.png differ diff --git a/website/images/mapicons/sport_soccer.p.32.png b/website/images/mapicons/sport_soccer.p.32.png new file mode 100644 index 00000000..92b90df8 Binary files /dev/null and b/website/images/mapicons/sport_soccer.p.32.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.glow.12.png b/website/images/mapicons/sport_swimming_indoor.glow.12.png new file mode 100644 index 00000000..844e86b4 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.glow.12.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.glow.16.png b/website/images/mapicons/sport_swimming_indoor.glow.16.png new file mode 100644 index 00000000..a6c8f83e Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.glow.16.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.glow.20.png b/website/images/mapicons/sport_swimming_indoor.glow.20.png new file mode 100644 index 00000000..3e796209 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.glow.20.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.glow.24.png b/website/images/mapicons/sport_swimming_indoor.glow.24.png new file mode 100644 index 00000000..d03b544e Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.glow.24.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.glow.32.png b/website/images/mapicons/sport_swimming_indoor.glow.32.png new file mode 100644 index 00000000..25d6fcb7 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.glow.32.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.n.12.png b/website/images/mapicons/sport_swimming_indoor.n.12.png new file mode 100644 index 00000000..6a65403f Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.n.12.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.n.16.png b/website/images/mapicons/sport_swimming_indoor.n.16.png new file mode 100644 index 00000000..96c5eaa7 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.n.16.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.n.20.png b/website/images/mapicons/sport_swimming_indoor.n.20.png new file mode 100644 index 00000000..b58b89b8 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.n.20.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.n.24.png b/website/images/mapicons/sport_swimming_indoor.n.24.png new file mode 100644 index 00000000..c80d9ef4 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.n.24.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.n.32.png b/website/images/mapicons/sport_swimming_indoor.n.32.png new file mode 100644 index 00000000..07f376cf Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.n.32.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.p.12.png b/website/images/mapicons/sport_swimming_indoor.p.12.png new file mode 100644 index 00000000..1bba41cf Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.p.12.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.p.16.png b/website/images/mapicons/sport_swimming_indoor.p.16.png new file mode 100644 index 00000000..7a116855 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.p.16.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.p.20.png b/website/images/mapicons/sport_swimming_indoor.p.20.png new file mode 100644 index 00000000..be71ec01 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.p.20.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.p.24.png b/website/images/mapicons/sport_swimming_indoor.p.24.png new file mode 100644 index 00000000..30c54af6 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.p.24.png differ diff --git a/website/images/mapicons/sport_swimming_indoor.p.32.png b/website/images/mapicons/sport_swimming_indoor.p.32.png new file mode 100644 index 00000000..b31b3a50 Binary files /dev/null and b/website/images/mapicons/sport_swimming_indoor.p.32.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.glow.12.png b/website/images/mapicons/sport_swimming_outdoor.glow.12.png new file mode 100644 index 00000000..b24f89fb Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.glow.12.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.glow.16.png b/website/images/mapicons/sport_swimming_outdoor.glow.16.png new file mode 100644 index 00000000..0de047cf Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.glow.16.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.glow.20.png b/website/images/mapicons/sport_swimming_outdoor.glow.20.png new file mode 100644 index 00000000..39ff8f41 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.glow.20.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.glow.24.png b/website/images/mapicons/sport_swimming_outdoor.glow.24.png new file mode 100644 index 00000000..4cfb1205 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.glow.24.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.glow.32.png b/website/images/mapicons/sport_swimming_outdoor.glow.32.png new file mode 100644 index 00000000..753714a7 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.glow.32.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.n.12.png b/website/images/mapicons/sport_swimming_outdoor.n.12.png new file mode 100644 index 00000000..98ef1c3a Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.n.12.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.n.16.png b/website/images/mapicons/sport_swimming_outdoor.n.16.png new file mode 100644 index 00000000..7fef8c51 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.n.16.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.n.20.png b/website/images/mapicons/sport_swimming_outdoor.n.20.png new file mode 100644 index 00000000..e87fe878 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.n.20.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.n.24.png b/website/images/mapicons/sport_swimming_outdoor.n.24.png new file mode 100644 index 00000000..a0e0c61a Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.n.24.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.n.32.png b/website/images/mapicons/sport_swimming_outdoor.n.32.png new file mode 100644 index 00000000..9e3e0da0 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.n.32.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.p.12.png b/website/images/mapicons/sport_swimming_outdoor.p.12.png new file mode 100644 index 00000000..ca6ea6c8 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.p.12.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.p.16.png b/website/images/mapicons/sport_swimming_outdoor.p.16.png new file mode 100644 index 00000000..bcbb719c Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.p.16.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.p.20.png b/website/images/mapicons/sport_swimming_outdoor.p.20.png new file mode 100644 index 00000000..4caf96d7 Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.p.20.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.p.24.png b/website/images/mapicons/sport_swimming_outdoor.p.24.png new file mode 100644 index 00000000..0abf72fe Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.p.24.png differ diff --git a/website/images/mapicons/sport_swimming_outdoor.p.32.png b/website/images/mapicons/sport_swimming_outdoor.p.32.png new file mode 100644 index 00000000..ac2a86dd Binary files /dev/null and b/website/images/mapicons/sport_swimming_outdoor.p.32.png differ diff --git a/website/images/mapicons/sport_tennis.glow.12.png b/website/images/mapicons/sport_tennis.glow.12.png new file mode 100644 index 00000000..6b90d34c Binary files /dev/null and b/website/images/mapicons/sport_tennis.glow.12.png differ diff --git a/website/images/mapicons/sport_tennis.glow.16.png b/website/images/mapicons/sport_tennis.glow.16.png new file mode 100644 index 00000000..5d9a4aae Binary files /dev/null and b/website/images/mapicons/sport_tennis.glow.16.png differ diff --git a/website/images/mapicons/sport_tennis.glow.20.png b/website/images/mapicons/sport_tennis.glow.20.png new file mode 100644 index 00000000..767d9b1d Binary files /dev/null and b/website/images/mapicons/sport_tennis.glow.20.png differ diff --git a/website/images/mapicons/sport_tennis.glow.24.png b/website/images/mapicons/sport_tennis.glow.24.png new file mode 100644 index 00000000..ec6893d4 Binary files /dev/null and b/website/images/mapicons/sport_tennis.glow.24.png differ diff --git a/website/images/mapicons/sport_tennis.glow.32.png b/website/images/mapicons/sport_tennis.glow.32.png new file mode 100644 index 00000000..37d42dd7 Binary files /dev/null and b/website/images/mapicons/sport_tennis.glow.32.png differ diff --git a/website/images/mapicons/sport_tennis.n.12.png b/website/images/mapicons/sport_tennis.n.12.png new file mode 100644 index 00000000..d404a1fc Binary files /dev/null and b/website/images/mapicons/sport_tennis.n.12.png differ diff --git a/website/images/mapicons/sport_tennis.n.16.png b/website/images/mapicons/sport_tennis.n.16.png new file mode 100644 index 00000000..44f0b6b2 Binary files /dev/null and b/website/images/mapicons/sport_tennis.n.16.png differ diff --git a/website/images/mapicons/sport_tennis.n.20.png b/website/images/mapicons/sport_tennis.n.20.png new file mode 100644 index 00000000..8e0c0ea1 Binary files /dev/null and b/website/images/mapicons/sport_tennis.n.20.png differ diff --git a/website/images/mapicons/sport_tennis.n.24.png b/website/images/mapicons/sport_tennis.n.24.png new file mode 100644 index 00000000..a8af8ca1 Binary files /dev/null and b/website/images/mapicons/sport_tennis.n.24.png differ diff --git a/website/images/mapicons/sport_tennis.n.32.png b/website/images/mapicons/sport_tennis.n.32.png new file mode 100644 index 00000000..c1768a9a Binary files /dev/null and b/website/images/mapicons/sport_tennis.n.32.png differ diff --git a/website/images/mapicons/sport_tennis.p.12.png b/website/images/mapicons/sport_tennis.p.12.png new file mode 100644 index 00000000..8932068a Binary files /dev/null and b/website/images/mapicons/sport_tennis.p.12.png differ diff --git a/website/images/mapicons/sport_tennis.p.16.png b/website/images/mapicons/sport_tennis.p.16.png new file mode 100644 index 00000000..84978d19 Binary files /dev/null and b/website/images/mapicons/sport_tennis.p.16.png differ diff --git a/website/images/mapicons/sport_tennis.p.20.png b/website/images/mapicons/sport_tennis.p.20.png new file mode 100644 index 00000000..9b755f82 Binary files /dev/null and b/website/images/mapicons/sport_tennis.p.20.png differ diff --git a/website/images/mapicons/sport_tennis.p.24.png b/website/images/mapicons/sport_tennis.p.24.png new file mode 100644 index 00000000..fc18ec86 Binary files /dev/null and b/website/images/mapicons/sport_tennis.p.24.png differ diff --git a/website/images/mapicons/sport_tennis.p.32.png b/website/images/mapicons/sport_tennis.p.32.png new file mode 100644 index 00000000..feb67130 Binary files /dev/null and b/website/images/mapicons/sport_tennis.p.32.png differ diff --git a/website/images/mapicons/sport_windsurfing.glow.12.png b/website/images/mapicons/sport_windsurfing.glow.12.png new file mode 100644 index 00000000..73097f0e Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.glow.12.png differ diff --git a/website/images/mapicons/sport_windsurfing.glow.16.png b/website/images/mapicons/sport_windsurfing.glow.16.png new file mode 100644 index 00000000..900e49f6 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.glow.16.png differ diff --git a/website/images/mapicons/sport_windsurfing.glow.20.png b/website/images/mapicons/sport_windsurfing.glow.20.png new file mode 100644 index 00000000..8b516afb Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.glow.20.png differ diff --git a/website/images/mapicons/sport_windsurfing.glow.24.png b/website/images/mapicons/sport_windsurfing.glow.24.png new file mode 100644 index 00000000..e67d0248 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.glow.24.png differ diff --git a/website/images/mapicons/sport_windsurfing.glow.32.png b/website/images/mapicons/sport_windsurfing.glow.32.png new file mode 100644 index 00000000..5d9dac0c Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.glow.32.png differ diff --git a/website/images/mapicons/sport_windsurfing.n.12.png b/website/images/mapicons/sport_windsurfing.n.12.png new file mode 100644 index 00000000..5747fe96 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.n.12.png differ diff --git a/website/images/mapicons/sport_windsurfing.n.16.png b/website/images/mapicons/sport_windsurfing.n.16.png new file mode 100644 index 00000000..b9c6f977 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.n.16.png differ diff --git a/website/images/mapicons/sport_windsurfing.n.20.png b/website/images/mapicons/sport_windsurfing.n.20.png new file mode 100644 index 00000000..3b1bf2d0 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.n.20.png differ diff --git a/website/images/mapicons/sport_windsurfing.n.24.png b/website/images/mapicons/sport_windsurfing.n.24.png new file mode 100644 index 00000000..34a651a4 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.n.24.png differ diff --git a/website/images/mapicons/sport_windsurfing.n.32.png b/website/images/mapicons/sport_windsurfing.n.32.png new file mode 100644 index 00000000..b3a6ce23 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.n.32.png differ diff --git a/website/images/mapicons/sport_windsurfing.p.12.png b/website/images/mapicons/sport_windsurfing.p.12.png new file mode 100644 index 00000000..712aed50 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.p.12.png differ diff --git a/website/images/mapicons/sport_windsurfing.p.16.png b/website/images/mapicons/sport_windsurfing.p.16.png new file mode 100644 index 00000000..4e2d5932 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.p.16.png differ diff --git a/website/images/mapicons/sport_windsurfing.p.20.png b/website/images/mapicons/sport_windsurfing.p.20.png new file mode 100644 index 00000000..2bb57f0b Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.p.20.png differ diff --git a/website/images/mapicons/sport_windsurfing.p.24.png b/website/images/mapicons/sport_windsurfing.p.24.png new file mode 100644 index 00000000..f3544b76 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.p.24.png differ diff --git a/website/images/mapicons/sport_windsurfing.p.32.png b/website/images/mapicons/sport_windsurfing.p.32.png new file mode 100644 index 00000000..5e8c8dc9 Binary files /dev/null and b/website/images/mapicons/sport_windsurfing.p.32.png differ diff --git a/website/images/mapicons/tourist_archaeological.glow.12.png b/website/images/mapicons/tourist_archaeological.glow.12.png new file mode 100644 index 00000000..74d01259 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.glow.12.png differ diff --git a/website/images/mapicons/tourist_archaeological.glow.16.png b/website/images/mapicons/tourist_archaeological.glow.16.png new file mode 100644 index 00000000..3dcf6bb0 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.glow.16.png differ diff --git a/website/images/mapicons/tourist_archaeological.glow.20.png b/website/images/mapicons/tourist_archaeological.glow.20.png new file mode 100644 index 00000000..32f14041 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.glow.20.png differ diff --git a/website/images/mapicons/tourist_archaeological.glow.24.png b/website/images/mapicons/tourist_archaeological.glow.24.png new file mode 100644 index 00000000..8b330d0f Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.glow.24.png differ diff --git a/website/images/mapicons/tourist_archaeological.glow.32.png b/website/images/mapicons/tourist_archaeological.glow.32.png new file mode 100644 index 00000000..4b192bae Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.glow.32.png differ diff --git a/website/images/mapicons/tourist_archaeological.n.12.png b/website/images/mapicons/tourist_archaeological.n.12.png new file mode 100644 index 00000000..8c130bb9 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.n.12.png differ diff --git a/website/images/mapicons/tourist_archaeological.n.16.png b/website/images/mapicons/tourist_archaeological.n.16.png new file mode 100644 index 00000000..87c49763 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.n.16.png differ diff --git a/website/images/mapicons/tourist_archaeological.n.20.png b/website/images/mapicons/tourist_archaeological.n.20.png new file mode 100644 index 00000000..cf5f0dff Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.n.20.png differ diff --git a/website/images/mapicons/tourist_archaeological.n.24.png b/website/images/mapicons/tourist_archaeological.n.24.png new file mode 100644 index 00000000..a75a358b Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.n.24.png differ diff --git a/website/images/mapicons/tourist_archaeological.n.32.png b/website/images/mapicons/tourist_archaeological.n.32.png new file mode 100644 index 00000000..450fba01 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.n.32.png differ diff --git a/website/images/mapicons/tourist_archaeological.p.12.png b/website/images/mapicons/tourist_archaeological.p.12.png new file mode 100644 index 00000000..3410f9fd Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.p.12.png differ diff --git a/website/images/mapicons/tourist_archaeological.p.16.png b/website/images/mapicons/tourist_archaeological.p.16.png new file mode 100644 index 00000000..8594a40f Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.p.16.png differ diff --git a/website/images/mapicons/tourist_archaeological.p.20.png b/website/images/mapicons/tourist_archaeological.p.20.png new file mode 100644 index 00000000..371fa9b9 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.p.20.png differ diff --git a/website/images/mapicons/tourist_archaeological.p.24.png b/website/images/mapicons/tourist_archaeological.p.24.png new file mode 100644 index 00000000..0dd03ac9 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.p.24.png differ diff --git a/website/images/mapicons/tourist_archaeological.p.32.png b/website/images/mapicons/tourist_archaeological.p.32.png new file mode 100644 index 00000000..b4a01fa5 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological.p.32.png differ diff --git a/website/images/mapicons/tourist_archaeological2.glow.12.png b/website/images/mapicons/tourist_archaeological2.glow.12.png new file mode 100644 index 00000000..e0c58223 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.glow.12.png differ diff --git a/website/images/mapicons/tourist_archaeological2.glow.16.png b/website/images/mapicons/tourist_archaeological2.glow.16.png new file mode 100644 index 00000000..3ee936c8 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.glow.16.png differ diff --git a/website/images/mapicons/tourist_archaeological2.glow.20.png b/website/images/mapicons/tourist_archaeological2.glow.20.png new file mode 100644 index 00000000..faebe942 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.glow.20.png differ diff --git a/website/images/mapicons/tourist_archaeological2.glow.24.png b/website/images/mapicons/tourist_archaeological2.glow.24.png new file mode 100644 index 00000000..cdb4dd0b Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.glow.24.png differ diff --git a/website/images/mapicons/tourist_archaeological2.glow.32.png b/website/images/mapicons/tourist_archaeological2.glow.32.png new file mode 100644 index 00000000..436ffb8a Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.glow.32.png differ diff --git a/website/images/mapicons/tourist_archaeological2.n.12.png b/website/images/mapicons/tourist_archaeological2.n.12.png new file mode 100644 index 00000000..fb63a011 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.n.12.png differ diff --git a/website/images/mapicons/tourist_archaeological2.n.16.png b/website/images/mapicons/tourist_archaeological2.n.16.png new file mode 100644 index 00000000..aff80bf8 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.n.16.png differ diff --git a/website/images/mapicons/tourist_archaeological2.n.20.png b/website/images/mapicons/tourist_archaeological2.n.20.png new file mode 100644 index 00000000..aaf00d67 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.n.20.png differ diff --git a/website/images/mapicons/tourist_archaeological2.n.24.png b/website/images/mapicons/tourist_archaeological2.n.24.png new file mode 100644 index 00000000..6d3ca80d Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.n.24.png differ diff --git a/website/images/mapicons/tourist_archaeological2.n.32.png b/website/images/mapicons/tourist_archaeological2.n.32.png new file mode 100644 index 00000000..15950b79 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.n.32.png differ diff --git a/website/images/mapicons/tourist_archaeological2.p.12.png b/website/images/mapicons/tourist_archaeological2.p.12.png new file mode 100644 index 00000000..5d82ca3e Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.p.12.png differ diff --git a/website/images/mapicons/tourist_archaeological2.p.16.png b/website/images/mapicons/tourist_archaeological2.p.16.png new file mode 100644 index 00000000..611e2dd6 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.p.16.png differ diff --git a/website/images/mapicons/tourist_archaeological2.p.20.png b/website/images/mapicons/tourist_archaeological2.p.20.png new file mode 100644 index 00000000..a003c7d8 Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.p.20.png differ diff --git a/website/images/mapicons/tourist_archaeological2.p.24.png b/website/images/mapicons/tourist_archaeological2.p.24.png new file mode 100644 index 00000000..67e90f6d Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.p.24.png differ diff --git a/website/images/mapicons/tourist_archaeological2.p.32.png b/website/images/mapicons/tourist_archaeological2.p.32.png new file mode 100644 index 00000000..33b0d89f Binary files /dev/null and b/website/images/mapicons/tourist_archaeological2.p.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery.glow.12.png b/website/images/mapicons/tourist_art_gallery.glow.12.png new file mode 100644 index 00000000..533233c0 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.glow.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery.glow.16.png b/website/images/mapicons/tourist_art_gallery.glow.16.png new file mode 100644 index 00000000..2e7fb067 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.glow.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery.glow.20.png b/website/images/mapicons/tourist_art_gallery.glow.20.png new file mode 100644 index 00000000..33bce01d Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.glow.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery.glow.24.png b/website/images/mapicons/tourist_art_gallery.glow.24.png new file mode 100644 index 00000000..0e2693f0 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.glow.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery.glow.32.png b/website/images/mapicons/tourist_art_gallery.glow.32.png new file mode 100644 index 00000000..7f17f575 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.glow.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery.n.12.png b/website/images/mapicons/tourist_art_gallery.n.12.png new file mode 100644 index 00000000..0e4d0668 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.n.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery.n.16.png b/website/images/mapicons/tourist_art_gallery.n.16.png new file mode 100644 index 00000000..b6809a23 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.n.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery.n.20.png b/website/images/mapicons/tourist_art_gallery.n.20.png new file mode 100644 index 00000000..ef7625e0 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.n.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery.n.24.png b/website/images/mapicons/tourist_art_gallery.n.24.png new file mode 100644 index 00000000..040ac338 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.n.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery.n.32.png b/website/images/mapicons/tourist_art_gallery.n.32.png new file mode 100644 index 00000000..176e9d78 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.n.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery.p.12.png b/website/images/mapicons/tourist_art_gallery.p.12.png new file mode 100644 index 00000000..0f254d76 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.p.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery.p.16.png b/website/images/mapicons/tourist_art_gallery.p.16.png new file mode 100644 index 00000000..357e5f99 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.p.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery.p.20.png b/website/images/mapicons/tourist_art_gallery.p.20.png new file mode 100644 index 00000000..ab3e5b9c Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.p.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery.p.24.png b/website/images/mapicons/tourist_art_gallery.p.24.png new file mode 100644 index 00000000..945a9162 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.p.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery.p.32.png b/website/images/mapicons/tourist_art_gallery.p.32.png new file mode 100644 index 00000000..c4815627 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery.p.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.glow.12.png b/website/images/mapicons/tourist_art_gallery2.glow.12.png new file mode 100644 index 00000000..d9ca515c Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.glow.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.glow.16.png b/website/images/mapicons/tourist_art_gallery2.glow.16.png new file mode 100644 index 00000000..a40a711f Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.glow.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.glow.20.png b/website/images/mapicons/tourist_art_gallery2.glow.20.png new file mode 100644 index 00000000..7c5353b8 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.glow.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.glow.24.png b/website/images/mapicons/tourist_art_gallery2.glow.24.png new file mode 100644 index 00000000..23838043 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.glow.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.glow.32.png b/website/images/mapicons/tourist_art_gallery2.glow.32.png new file mode 100644 index 00000000..167c6082 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.glow.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.n.12.png b/website/images/mapicons/tourist_art_gallery2.n.12.png new file mode 100644 index 00000000..7cff7f81 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.n.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.n.16.png b/website/images/mapicons/tourist_art_gallery2.n.16.png new file mode 100644 index 00000000..93294665 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.n.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.n.20.png b/website/images/mapicons/tourist_art_gallery2.n.20.png new file mode 100644 index 00000000..6f0905a1 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.n.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.n.24.png b/website/images/mapicons/tourist_art_gallery2.n.24.png new file mode 100644 index 00000000..5cd89b60 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.n.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.n.32.png b/website/images/mapicons/tourist_art_gallery2.n.32.png new file mode 100644 index 00000000..77dc7265 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.n.32.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.p.12.png b/website/images/mapicons/tourist_art_gallery2.p.12.png new file mode 100644 index 00000000..2b7488a9 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.p.12.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.p.16.png b/website/images/mapicons/tourist_art_gallery2.p.16.png new file mode 100644 index 00000000..dd204166 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.p.16.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.p.20.png b/website/images/mapicons/tourist_art_gallery2.p.20.png new file mode 100644 index 00000000..ba1bdba6 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.p.20.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.p.24.png b/website/images/mapicons/tourist_art_gallery2.p.24.png new file mode 100644 index 00000000..e23b185c Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.p.24.png differ diff --git a/website/images/mapicons/tourist_art_gallery2.p.32.png b/website/images/mapicons/tourist_art_gallery2.p.32.png new file mode 100644 index 00000000..142e1435 Binary files /dev/null and b/website/images/mapicons/tourist_art_gallery2.p.32.png differ diff --git a/website/images/mapicons/tourist_battlefield.glow.12.png b/website/images/mapicons/tourist_battlefield.glow.12.png new file mode 100644 index 00000000..ce5c2ac7 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.glow.12.png differ diff --git a/website/images/mapicons/tourist_battlefield.glow.16.png b/website/images/mapicons/tourist_battlefield.glow.16.png new file mode 100644 index 00000000..63eca134 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.glow.16.png differ diff --git a/website/images/mapicons/tourist_battlefield.glow.20.png b/website/images/mapicons/tourist_battlefield.glow.20.png new file mode 100644 index 00000000..5ed7e9b2 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.glow.20.png differ diff --git a/website/images/mapicons/tourist_battlefield.glow.24.png b/website/images/mapicons/tourist_battlefield.glow.24.png new file mode 100644 index 00000000..215c750b Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.glow.24.png differ diff --git a/website/images/mapicons/tourist_battlefield.glow.32.png b/website/images/mapicons/tourist_battlefield.glow.32.png new file mode 100644 index 00000000..5affe1bc Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.glow.32.png differ diff --git a/website/images/mapicons/tourist_battlefield.n.12.png b/website/images/mapicons/tourist_battlefield.n.12.png new file mode 100644 index 00000000..ef6b36d4 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.n.12.png differ diff --git a/website/images/mapicons/tourist_battlefield.n.16.png b/website/images/mapicons/tourist_battlefield.n.16.png new file mode 100644 index 00000000..d9668892 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.n.16.png differ diff --git a/website/images/mapicons/tourist_battlefield.n.20.png b/website/images/mapicons/tourist_battlefield.n.20.png new file mode 100644 index 00000000..5dfcbacb Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.n.20.png differ diff --git a/website/images/mapicons/tourist_battlefield.n.24.png b/website/images/mapicons/tourist_battlefield.n.24.png new file mode 100644 index 00000000..b502bfc7 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.n.24.png differ diff --git a/website/images/mapicons/tourist_battlefield.n.32.png b/website/images/mapicons/tourist_battlefield.n.32.png new file mode 100644 index 00000000..b546d5e3 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.n.32.png differ diff --git a/website/images/mapicons/tourist_battlefield.p.12.png b/website/images/mapicons/tourist_battlefield.p.12.png new file mode 100644 index 00000000..8f0005b2 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.p.12.png differ diff --git a/website/images/mapicons/tourist_battlefield.p.16.png b/website/images/mapicons/tourist_battlefield.p.16.png new file mode 100644 index 00000000..ccb37bd9 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.p.16.png differ diff --git a/website/images/mapicons/tourist_battlefield.p.20.png b/website/images/mapicons/tourist_battlefield.p.20.png new file mode 100644 index 00000000..985692d2 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.p.20.png differ diff --git a/website/images/mapicons/tourist_battlefield.p.24.png b/website/images/mapicons/tourist_battlefield.p.24.png new file mode 100644 index 00000000..017d3569 Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.p.24.png differ diff --git a/website/images/mapicons/tourist_battlefield.p.32.png b/website/images/mapicons/tourist_battlefield.p.32.png new file mode 100644 index 00000000..1db4ed2a Binary files /dev/null and b/website/images/mapicons/tourist_battlefield.p.32.png differ diff --git a/website/images/mapicons/tourist_beach.glow.12.png b/website/images/mapicons/tourist_beach.glow.12.png new file mode 100644 index 00000000..2c86b2f4 Binary files /dev/null and b/website/images/mapicons/tourist_beach.glow.12.png differ diff --git a/website/images/mapicons/tourist_beach.glow.16.png b/website/images/mapicons/tourist_beach.glow.16.png new file mode 100644 index 00000000..fe474cf1 Binary files /dev/null and b/website/images/mapicons/tourist_beach.glow.16.png differ diff --git a/website/images/mapicons/tourist_beach.glow.20.png b/website/images/mapicons/tourist_beach.glow.20.png new file mode 100644 index 00000000..682f47cc Binary files /dev/null and b/website/images/mapicons/tourist_beach.glow.20.png differ diff --git a/website/images/mapicons/tourist_beach.glow.24.png b/website/images/mapicons/tourist_beach.glow.24.png new file mode 100644 index 00000000..dd3a1c83 Binary files /dev/null and b/website/images/mapicons/tourist_beach.glow.24.png differ diff --git a/website/images/mapicons/tourist_beach.glow.32.png b/website/images/mapicons/tourist_beach.glow.32.png new file mode 100644 index 00000000..5c16df9d Binary files /dev/null and b/website/images/mapicons/tourist_beach.glow.32.png differ diff --git a/website/images/mapicons/tourist_beach.n.12.png b/website/images/mapicons/tourist_beach.n.12.png new file mode 100644 index 00000000..e981eaf5 Binary files /dev/null and b/website/images/mapicons/tourist_beach.n.12.png differ diff --git a/website/images/mapicons/tourist_beach.n.16.png b/website/images/mapicons/tourist_beach.n.16.png new file mode 100644 index 00000000..9023b4fd Binary files /dev/null and b/website/images/mapicons/tourist_beach.n.16.png differ diff --git a/website/images/mapicons/tourist_beach.n.20.png b/website/images/mapicons/tourist_beach.n.20.png new file mode 100644 index 00000000..2ad12eed Binary files /dev/null and b/website/images/mapicons/tourist_beach.n.20.png differ diff --git a/website/images/mapicons/tourist_beach.n.24.png b/website/images/mapicons/tourist_beach.n.24.png new file mode 100644 index 00000000..3b4d4aca Binary files /dev/null and b/website/images/mapicons/tourist_beach.n.24.png differ diff --git a/website/images/mapicons/tourist_beach.n.32.png b/website/images/mapicons/tourist_beach.n.32.png new file mode 100644 index 00000000..d22f2590 Binary files /dev/null and b/website/images/mapicons/tourist_beach.n.32.png differ diff --git a/website/images/mapicons/tourist_beach.p.12.png b/website/images/mapicons/tourist_beach.p.12.png new file mode 100644 index 00000000..b5e813f4 Binary files /dev/null and b/website/images/mapicons/tourist_beach.p.12.png differ diff --git a/website/images/mapicons/tourist_beach.p.16.png b/website/images/mapicons/tourist_beach.p.16.png new file mode 100644 index 00000000..660facc8 Binary files /dev/null and b/website/images/mapicons/tourist_beach.p.16.png differ diff --git a/website/images/mapicons/tourist_beach.p.20.png b/website/images/mapicons/tourist_beach.p.20.png new file mode 100644 index 00000000..3d93dd2b Binary files /dev/null and b/website/images/mapicons/tourist_beach.p.20.png differ diff --git a/website/images/mapicons/tourist_beach.p.24.png b/website/images/mapicons/tourist_beach.p.24.png new file mode 100644 index 00000000..214a1e97 Binary files /dev/null and b/website/images/mapicons/tourist_beach.p.24.png differ diff --git a/website/images/mapicons/tourist_beach.p.32.png b/website/images/mapicons/tourist_beach.p.32.png new file mode 100644 index 00000000..2dc246d6 Binary files /dev/null and b/website/images/mapicons/tourist_beach.p.32.png differ diff --git a/website/images/mapicons/tourist_casino.glow.12.png b/website/images/mapicons/tourist_casino.glow.12.png new file mode 100644 index 00000000..bd8089db Binary files /dev/null and b/website/images/mapicons/tourist_casino.glow.12.png differ diff --git a/website/images/mapicons/tourist_casino.glow.16.png b/website/images/mapicons/tourist_casino.glow.16.png new file mode 100644 index 00000000..d90eb898 Binary files /dev/null and b/website/images/mapicons/tourist_casino.glow.16.png differ diff --git a/website/images/mapicons/tourist_casino.glow.20.png b/website/images/mapicons/tourist_casino.glow.20.png new file mode 100644 index 00000000..60f87098 Binary files /dev/null and b/website/images/mapicons/tourist_casino.glow.20.png differ diff --git a/website/images/mapicons/tourist_casino.glow.24.png b/website/images/mapicons/tourist_casino.glow.24.png new file mode 100644 index 00000000..90af8015 Binary files /dev/null and b/website/images/mapicons/tourist_casino.glow.24.png differ diff --git a/website/images/mapicons/tourist_casino.glow.32.png b/website/images/mapicons/tourist_casino.glow.32.png new file mode 100644 index 00000000..cc16decc Binary files /dev/null and b/website/images/mapicons/tourist_casino.glow.32.png differ diff --git a/website/images/mapicons/tourist_casino.n.12.png b/website/images/mapicons/tourist_casino.n.12.png new file mode 100644 index 00000000..3c470570 Binary files /dev/null and b/website/images/mapicons/tourist_casino.n.12.png differ diff --git a/website/images/mapicons/tourist_casino.n.16.png b/website/images/mapicons/tourist_casino.n.16.png new file mode 100644 index 00000000..3e31aeba Binary files /dev/null and b/website/images/mapicons/tourist_casino.n.16.png differ diff --git a/website/images/mapicons/tourist_casino.n.20.png b/website/images/mapicons/tourist_casino.n.20.png new file mode 100644 index 00000000..b27858c5 Binary files /dev/null and b/website/images/mapicons/tourist_casino.n.20.png differ diff --git a/website/images/mapicons/tourist_casino.n.24.png b/website/images/mapicons/tourist_casino.n.24.png new file mode 100644 index 00000000..741cdad4 Binary files /dev/null and b/website/images/mapicons/tourist_casino.n.24.png differ diff --git a/website/images/mapicons/tourist_casino.n.32.png b/website/images/mapicons/tourist_casino.n.32.png new file mode 100644 index 00000000..3448e8ac Binary files /dev/null and b/website/images/mapicons/tourist_casino.n.32.png differ diff --git a/website/images/mapicons/tourist_casino.p.12.png b/website/images/mapicons/tourist_casino.p.12.png new file mode 100644 index 00000000..516ac743 Binary files /dev/null and b/website/images/mapicons/tourist_casino.p.12.png differ diff --git a/website/images/mapicons/tourist_casino.p.16.png b/website/images/mapicons/tourist_casino.p.16.png new file mode 100644 index 00000000..5fc12fa3 Binary files /dev/null and b/website/images/mapicons/tourist_casino.p.16.png differ diff --git a/website/images/mapicons/tourist_casino.p.20.png b/website/images/mapicons/tourist_casino.p.20.png new file mode 100644 index 00000000..4696d9fa Binary files /dev/null and b/website/images/mapicons/tourist_casino.p.20.png differ diff --git a/website/images/mapicons/tourist_casino.p.24.png b/website/images/mapicons/tourist_casino.p.24.png new file mode 100644 index 00000000..ec88e39d Binary files /dev/null and b/website/images/mapicons/tourist_casino.p.24.png differ diff --git a/website/images/mapicons/tourist_casino.p.32.png b/website/images/mapicons/tourist_casino.p.32.png new file mode 100644 index 00000000..ae8a9bea Binary files /dev/null and b/website/images/mapicons/tourist_casino.p.32.png differ diff --git a/website/images/mapicons/tourist_castle.glow.12.png b/website/images/mapicons/tourist_castle.glow.12.png new file mode 100644 index 00000000..b15e6d7c Binary files /dev/null and b/website/images/mapicons/tourist_castle.glow.12.png differ diff --git a/website/images/mapicons/tourist_castle.glow.16.png b/website/images/mapicons/tourist_castle.glow.16.png new file mode 100644 index 00000000..7df0098a Binary files /dev/null and b/website/images/mapicons/tourist_castle.glow.16.png differ diff --git a/website/images/mapicons/tourist_castle.glow.20.png b/website/images/mapicons/tourist_castle.glow.20.png new file mode 100644 index 00000000..86f51d90 Binary files /dev/null and b/website/images/mapicons/tourist_castle.glow.20.png differ diff --git a/website/images/mapicons/tourist_castle.glow.24.png b/website/images/mapicons/tourist_castle.glow.24.png new file mode 100644 index 00000000..bad566e5 Binary files /dev/null and b/website/images/mapicons/tourist_castle.glow.24.png differ diff --git a/website/images/mapicons/tourist_castle.glow.32.png b/website/images/mapicons/tourist_castle.glow.32.png new file mode 100644 index 00000000..760188fe Binary files /dev/null and b/website/images/mapicons/tourist_castle.glow.32.png differ diff --git a/website/images/mapicons/tourist_castle.n.12.png b/website/images/mapicons/tourist_castle.n.12.png new file mode 100644 index 00000000..ea474ad6 Binary files /dev/null and b/website/images/mapicons/tourist_castle.n.12.png differ diff --git a/website/images/mapicons/tourist_castle.n.16.png b/website/images/mapicons/tourist_castle.n.16.png new file mode 100644 index 00000000..bd9a42bf Binary files /dev/null and b/website/images/mapicons/tourist_castle.n.16.png differ diff --git a/website/images/mapicons/tourist_castle.n.20.png b/website/images/mapicons/tourist_castle.n.20.png new file mode 100644 index 00000000..b7f99402 Binary files /dev/null and b/website/images/mapicons/tourist_castle.n.20.png differ diff --git a/website/images/mapicons/tourist_castle.n.24.png b/website/images/mapicons/tourist_castle.n.24.png new file mode 100644 index 00000000..75734d67 Binary files /dev/null and b/website/images/mapicons/tourist_castle.n.24.png differ diff --git a/website/images/mapicons/tourist_castle.n.32.png b/website/images/mapicons/tourist_castle.n.32.png new file mode 100644 index 00000000..c2a4c8b7 Binary files /dev/null and b/website/images/mapicons/tourist_castle.n.32.png differ diff --git a/website/images/mapicons/tourist_castle.p.12.png b/website/images/mapicons/tourist_castle.p.12.png new file mode 100644 index 00000000..65cfe8ec Binary files /dev/null and b/website/images/mapicons/tourist_castle.p.12.png differ diff --git a/website/images/mapicons/tourist_castle.p.16.png b/website/images/mapicons/tourist_castle.p.16.png new file mode 100644 index 00000000..47716675 Binary files /dev/null and b/website/images/mapicons/tourist_castle.p.16.png differ diff --git a/website/images/mapicons/tourist_castle.p.20.png b/website/images/mapicons/tourist_castle.p.20.png new file mode 100644 index 00000000..d6667085 Binary files /dev/null and b/website/images/mapicons/tourist_castle.p.20.png differ diff --git a/website/images/mapicons/tourist_castle.p.24.png b/website/images/mapicons/tourist_castle.p.24.png new file mode 100644 index 00000000..bc3e8d79 Binary files /dev/null and b/website/images/mapicons/tourist_castle.p.24.png differ diff --git a/website/images/mapicons/tourist_castle.p.32.png b/website/images/mapicons/tourist_castle.p.32.png new file mode 100644 index 00000000..94c0b5fd Binary files /dev/null and b/website/images/mapicons/tourist_castle.p.32.png differ diff --git a/website/images/mapicons/tourist_cinema.glow.12.png b/website/images/mapicons/tourist_cinema.glow.12.png new file mode 100644 index 00000000..4ed48a27 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.glow.12.png differ diff --git a/website/images/mapicons/tourist_cinema.glow.16.png b/website/images/mapicons/tourist_cinema.glow.16.png new file mode 100644 index 00000000..5d183f81 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.glow.16.png differ diff --git a/website/images/mapicons/tourist_cinema.glow.20.png b/website/images/mapicons/tourist_cinema.glow.20.png new file mode 100644 index 00000000..85470d05 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.glow.20.png differ diff --git a/website/images/mapicons/tourist_cinema.glow.24.png b/website/images/mapicons/tourist_cinema.glow.24.png new file mode 100644 index 00000000..ba73c3db Binary files /dev/null and b/website/images/mapicons/tourist_cinema.glow.24.png differ diff --git a/website/images/mapicons/tourist_cinema.glow.32.png b/website/images/mapicons/tourist_cinema.glow.32.png new file mode 100644 index 00000000..21ce7e57 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.glow.32.png differ diff --git a/website/images/mapicons/tourist_cinema.n.12.png b/website/images/mapicons/tourist_cinema.n.12.png new file mode 100644 index 00000000..48037ab7 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.n.12.png differ diff --git a/website/images/mapicons/tourist_cinema.n.16.png b/website/images/mapicons/tourist_cinema.n.16.png new file mode 100644 index 00000000..42f28152 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.n.16.png differ diff --git a/website/images/mapicons/tourist_cinema.n.20.png b/website/images/mapicons/tourist_cinema.n.20.png new file mode 100644 index 00000000..dd2f4038 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.n.20.png differ diff --git a/website/images/mapicons/tourist_cinema.n.24.png b/website/images/mapicons/tourist_cinema.n.24.png new file mode 100644 index 00000000..4207e842 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.n.24.png differ diff --git a/website/images/mapicons/tourist_cinema.n.32.png b/website/images/mapicons/tourist_cinema.n.32.png new file mode 100644 index 00000000..3349956b Binary files /dev/null and b/website/images/mapicons/tourist_cinema.n.32.png differ diff --git a/website/images/mapicons/tourist_cinema.p.12.png b/website/images/mapicons/tourist_cinema.p.12.png new file mode 100644 index 00000000..98aac487 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.p.12.png differ diff --git a/website/images/mapicons/tourist_cinema.p.16.png b/website/images/mapicons/tourist_cinema.p.16.png new file mode 100644 index 00000000..4cfe5b95 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.p.16.png differ diff --git a/website/images/mapicons/tourist_cinema.p.20.png b/website/images/mapicons/tourist_cinema.p.20.png new file mode 100644 index 00000000..0beed791 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.p.20.png differ diff --git a/website/images/mapicons/tourist_cinema.p.24.png b/website/images/mapicons/tourist_cinema.p.24.png new file mode 100644 index 00000000..29f67db9 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.p.24.png differ diff --git a/website/images/mapicons/tourist_cinema.p.32.png b/website/images/mapicons/tourist_cinema.p.32.png new file mode 100644 index 00000000..790d7189 Binary files /dev/null and b/website/images/mapicons/tourist_cinema.p.32.png differ diff --git a/website/images/mapicons/tourist_cinema2.glow.12.png b/website/images/mapicons/tourist_cinema2.glow.12.png new file mode 100644 index 00000000..e8c89a74 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.glow.12.png differ diff --git a/website/images/mapicons/tourist_cinema2.glow.16.png b/website/images/mapicons/tourist_cinema2.glow.16.png new file mode 100644 index 00000000..15f30ed1 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.glow.16.png differ diff --git a/website/images/mapicons/tourist_cinema2.glow.20.png b/website/images/mapicons/tourist_cinema2.glow.20.png new file mode 100644 index 00000000..a328e282 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.glow.20.png differ diff --git a/website/images/mapicons/tourist_cinema2.glow.24.png b/website/images/mapicons/tourist_cinema2.glow.24.png new file mode 100644 index 00000000..da0177fa Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.glow.24.png differ diff --git a/website/images/mapicons/tourist_cinema2.glow.32.png b/website/images/mapicons/tourist_cinema2.glow.32.png new file mode 100644 index 00000000..54d9315d Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.glow.32.png differ diff --git a/website/images/mapicons/tourist_cinema2.n.12.png b/website/images/mapicons/tourist_cinema2.n.12.png new file mode 100644 index 00000000..f3ad8952 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.n.12.png differ diff --git a/website/images/mapicons/tourist_cinema2.n.16.png b/website/images/mapicons/tourist_cinema2.n.16.png new file mode 100644 index 00000000..ebe7799c Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.n.16.png differ diff --git a/website/images/mapicons/tourist_cinema2.n.20.png b/website/images/mapicons/tourist_cinema2.n.20.png new file mode 100644 index 00000000..3b68345d Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.n.20.png differ diff --git a/website/images/mapicons/tourist_cinema2.n.24.png b/website/images/mapicons/tourist_cinema2.n.24.png new file mode 100644 index 00000000..5fca1382 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.n.24.png differ diff --git a/website/images/mapicons/tourist_cinema2.n.32.png b/website/images/mapicons/tourist_cinema2.n.32.png new file mode 100644 index 00000000..738c75a5 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.n.32.png differ diff --git a/website/images/mapicons/tourist_cinema2.p.12.png b/website/images/mapicons/tourist_cinema2.p.12.png new file mode 100644 index 00000000..631a8065 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.p.12.png differ diff --git a/website/images/mapicons/tourist_cinema2.p.16.png b/website/images/mapicons/tourist_cinema2.p.16.png new file mode 100644 index 00000000..29355236 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.p.16.png differ diff --git a/website/images/mapicons/tourist_cinema2.p.20.png b/website/images/mapicons/tourist_cinema2.p.20.png new file mode 100644 index 00000000..a3938092 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.p.20.png differ diff --git a/website/images/mapicons/tourist_cinema2.p.24.png b/website/images/mapicons/tourist_cinema2.p.24.png new file mode 100644 index 00000000..0ecb8ea3 Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.p.24.png differ diff --git a/website/images/mapicons/tourist_cinema2.p.32.png b/website/images/mapicons/tourist_cinema2.p.32.png new file mode 100644 index 00000000..58c8d2bc Binary files /dev/null and b/website/images/mapicons/tourist_cinema2.p.32.png differ diff --git a/website/images/mapicons/tourist_fountain.glow.12.png b/website/images/mapicons/tourist_fountain.glow.12.png new file mode 100644 index 00000000..350dac36 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.glow.12.png differ diff --git a/website/images/mapicons/tourist_fountain.glow.16.png b/website/images/mapicons/tourist_fountain.glow.16.png new file mode 100644 index 00000000..5a354e08 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.glow.16.png differ diff --git a/website/images/mapicons/tourist_fountain.glow.20.png b/website/images/mapicons/tourist_fountain.glow.20.png new file mode 100644 index 00000000..54f1c46d Binary files /dev/null and b/website/images/mapicons/tourist_fountain.glow.20.png differ diff --git a/website/images/mapicons/tourist_fountain.glow.24.png b/website/images/mapicons/tourist_fountain.glow.24.png new file mode 100644 index 00000000..8ab7e4ea Binary files /dev/null and b/website/images/mapicons/tourist_fountain.glow.24.png differ diff --git a/website/images/mapicons/tourist_fountain.glow.32.png b/website/images/mapicons/tourist_fountain.glow.32.png new file mode 100644 index 00000000..388d997d Binary files /dev/null and b/website/images/mapicons/tourist_fountain.glow.32.png differ diff --git a/website/images/mapicons/tourist_fountain.n.12.png b/website/images/mapicons/tourist_fountain.n.12.png new file mode 100644 index 00000000..98141def Binary files /dev/null and b/website/images/mapicons/tourist_fountain.n.12.png differ diff --git a/website/images/mapicons/tourist_fountain.n.16.png b/website/images/mapicons/tourist_fountain.n.16.png new file mode 100644 index 00000000..79e16859 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.n.16.png differ diff --git a/website/images/mapicons/tourist_fountain.n.20.png b/website/images/mapicons/tourist_fountain.n.20.png new file mode 100644 index 00000000..00fbd085 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.n.20.png differ diff --git a/website/images/mapicons/tourist_fountain.n.24.png b/website/images/mapicons/tourist_fountain.n.24.png new file mode 100644 index 00000000..90f15edd Binary files /dev/null and b/website/images/mapicons/tourist_fountain.n.24.png differ diff --git a/website/images/mapicons/tourist_fountain.n.32.png b/website/images/mapicons/tourist_fountain.n.32.png new file mode 100644 index 00000000..7c122cdc Binary files /dev/null and b/website/images/mapicons/tourist_fountain.n.32.png differ diff --git a/website/images/mapicons/tourist_fountain.p.12.png b/website/images/mapicons/tourist_fountain.p.12.png new file mode 100644 index 00000000..106c339e Binary files /dev/null and b/website/images/mapicons/tourist_fountain.p.12.png differ diff --git a/website/images/mapicons/tourist_fountain.p.16.png b/website/images/mapicons/tourist_fountain.p.16.png new file mode 100644 index 00000000..65e25b9c Binary files /dev/null and b/website/images/mapicons/tourist_fountain.p.16.png differ diff --git a/website/images/mapicons/tourist_fountain.p.20.png b/website/images/mapicons/tourist_fountain.p.20.png new file mode 100644 index 00000000..5d122db0 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.p.20.png differ diff --git a/website/images/mapicons/tourist_fountain.p.24.png b/website/images/mapicons/tourist_fountain.p.24.png new file mode 100644 index 00000000..4d7e7fd7 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.p.24.png differ diff --git a/website/images/mapicons/tourist_fountain.p.32.png b/website/images/mapicons/tourist_fountain.p.32.png new file mode 100644 index 00000000..72c2d8b3 Binary files /dev/null and b/website/images/mapicons/tourist_fountain.p.32.png differ diff --git a/website/images/mapicons/tourist_memorial.glow.12.png b/website/images/mapicons/tourist_memorial.glow.12.png new file mode 100644 index 00000000..543c69fe Binary files /dev/null and b/website/images/mapicons/tourist_memorial.glow.12.png differ diff --git a/website/images/mapicons/tourist_memorial.glow.16.png b/website/images/mapicons/tourist_memorial.glow.16.png new file mode 100644 index 00000000..6e5a48db Binary files /dev/null and b/website/images/mapicons/tourist_memorial.glow.16.png differ diff --git a/website/images/mapicons/tourist_memorial.glow.20.png b/website/images/mapicons/tourist_memorial.glow.20.png new file mode 100644 index 00000000..16d62019 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.glow.20.png differ diff --git a/website/images/mapicons/tourist_memorial.glow.24.png b/website/images/mapicons/tourist_memorial.glow.24.png new file mode 100644 index 00000000..00b3345f Binary files /dev/null and b/website/images/mapicons/tourist_memorial.glow.24.png differ diff --git a/website/images/mapicons/tourist_memorial.glow.32.png b/website/images/mapicons/tourist_memorial.glow.32.png new file mode 100644 index 00000000..21a06b60 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.glow.32.png differ diff --git a/website/images/mapicons/tourist_memorial.n.12.png b/website/images/mapicons/tourist_memorial.n.12.png new file mode 100644 index 00000000..0537e51c Binary files /dev/null and b/website/images/mapicons/tourist_memorial.n.12.png differ diff --git a/website/images/mapicons/tourist_memorial.n.16.png b/website/images/mapicons/tourist_memorial.n.16.png new file mode 100644 index 00000000..944e27b1 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.n.16.png differ diff --git a/website/images/mapicons/tourist_memorial.n.20.png b/website/images/mapicons/tourist_memorial.n.20.png new file mode 100644 index 00000000..b243985c Binary files /dev/null and b/website/images/mapicons/tourist_memorial.n.20.png differ diff --git a/website/images/mapicons/tourist_memorial.n.24.png b/website/images/mapicons/tourist_memorial.n.24.png new file mode 100644 index 00000000..2729e68d Binary files /dev/null and b/website/images/mapicons/tourist_memorial.n.24.png differ diff --git a/website/images/mapicons/tourist_memorial.n.32.png b/website/images/mapicons/tourist_memorial.n.32.png new file mode 100644 index 00000000..a6ffad61 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.n.32.png differ diff --git a/website/images/mapicons/tourist_memorial.p.12.png b/website/images/mapicons/tourist_memorial.p.12.png new file mode 100644 index 00000000..b22c3ccb Binary files /dev/null and b/website/images/mapicons/tourist_memorial.p.12.png differ diff --git a/website/images/mapicons/tourist_memorial.p.16.png b/website/images/mapicons/tourist_memorial.p.16.png new file mode 100644 index 00000000..0db93d72 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.p.16.png differ diff --git a/website/images/mapicons/tourist_memorial.p.20.png b/website/images/mapicons/tourist_memorial.p.20.png new file mode 100644 index 00000000..7fa8361d Binary files /dev/null and b/website/images/mapicons/tourist_memorial.p.20.png differ diff --git a/website/images/mapicons/tourist_memorial.p.24.png b/website/images/mapicons/tourist_memorial.p.24.png new file mode 100644 index 00000000..d2de5da6 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.p.24.png differ diff --git a/website/images/mapicons/tourist_memorial.p.32.png b/website/images/mapicons/tourist_memorial.p.32.png new file mode 100644 index 00000000..9a569c27 Binary files /dev/null and b/website/images/mapicons/tourist_memorial.p.32.png differ diff --git a/website/images/mapicons/tourist_monument.glow.12.png b/website/images/mapicons/tourist_monument.glow.12.png new file mode 100644 index 00000000..2f5904e7 Binary files /dev/null and b/website/images/mapicons/tourist_monument.glow.12.png differ diff --git a/website/images/mapicons/tourist_monument.glow.16.png b/website/images/mapicons/tourist_monument.glow.16.png new file mode 100644 index 00000000..5457c262 Binary files /dev/null and b/website/images/mapicons/tourist_monument.glow.16.png differ diff --git a/website/images/mapicons/tourist_monument.glow.20.png b/website/images/mapicons/tourist_monument.glow.20.png new file mode 100644 index 00000000..c3cbe711 Binary files /dev/null and b/website/images/mapicons/tourist_monument.glow.20.png differ diff --git a/website/images/mapicons/tourist_monument.glow.24.png b/website/images/mapicons/tourist_monument.glow.24.png new file mode 100644 index 00000000..80b2a870 Binary files /dev/null and b/website/images/mapicons/tourist_monument.glow.24.png differ diff --git a/website/images/mapicons/tourist_monument.glow.32.png b/website/images/mapicons/tourist_monument.glow.32.png new file mode 100644 index 00000000..c6522878 Binary files /dev/null and b/website/images/mapicons/tourist_monument.glow.32.png differ diff --git a/website/images/mapicons/tourist_monument.n.12.png b/website/images/mapicons/tourist_monument.n.12.png new file mode 100644 index 00000000..26c1b7bd Binary files /dev/null and b/website/images/mapicons/tourist_monument.n.12.png differ diff --git a/website/images/mapicons/tourist_monument.n.16.png b/website/images/mapicons/tourist_monument.n.16.png new file mode 100644 index 00000000..8b7e7f81 Binary files /dev/null and b/website/images/mapicons/tourist_monument.n.16.png differ diff --git a/website/images/mapicons/tourist_monument.n.20.png b/website/images/mapicons/tourist_monument.n.20.png new file mode 100644 index 00000000..969be135 Binary files /dev/null and b/website/images/mapicons/tourist_monument.n.20.png differ diff --git a/website/images/mapicons/tourist_monument.n.24.png b/website/images/mapicons/tourist_monument.n.24.png new file mode 100644 index 00000000..853632b0 Binary files /dev/null and b/website/images/mapicons/tourist_monument.n.24.png differ diff --git a/website/images/mapicons/tourist_monument.n.32.png b/website/images/mapicons/tourist_monument.n.32.png new file mode 100644 index 00000000..ecb2410e Binary files /dev/null and b/website/images/mapicons/tourist_monument.n.32.png differ diff --git a/website/images/mapicons/tourist_monument.p.12.png b/website/images/mapicons/tourist_monument.p.12.png new file mode 100644 index 00000000..6b0ae163 Binary files /dev/null and b/website/images/mapicons/tourist_monument.p.12.png differ diff --git a/website/images/mapicons/tourist_monument.p.16.png b/website/images/mapicons/tourist_monument.p.16.png new file mode 100644 index 00000000..5c468aa1 Binary files /dev/null and b/website/images/mapicons/tourist_monument.p.16.png differ diff --git a/website/images/mapicons/tourist_monument.p.20.png b/website/images/mapicons/tourist_monument.p.20.png new file mode 100644 index 00000000..955c65de Binary files /dev/null and b/website/images/mapicons/tourist_monument.p.20.png differ diff --git a/website/images/mapicons/tourist_monument.p.24.png b/website/images/mapicons/tourist_monument.p.24.png new file mode 100644 index 00000000..f2b446ec Binary files /dev/null and b/website/images/mapicons/tourist_monument.p.24.png differ diff --git a/website/images/mapicons/tourist_monument.p.32.png b/website/images/mapicons/tourist_monument.p.32.png new file mode 100644 index 00000000..716ea16a Binary files /dev/null and b/website/images/mapicons/tourist_monument.p.32.png differ diff --git a/website/images/mapicons/tourist_museum.glow.12.png b/website/images/mapicons/tourist_museum.glow.12.png new file mode 100644 index 00000000..e1b11fa8 Binary files /dev/null and b/website/images/mapicons/tourist_museum.glow.12.png differ diff --git a/website/images/mapicons/tourist_museum.glow.16.png b/website/images/mapicons/tourist_museum.glow.16.png new file mode 100644 index 00000000..56b143c8 Binary files /dev/null and b/website/images/mapicons/tourist_museum.glow.16.png differ diff --git a/website/images/mapicons/tourist_museum.glow.20.png b/website/images/mapicons/tourist_museum.glow.20.png new file mode 100644 index 00000000..eb07e373 Binary files /dev/null and b/website/images/mapicons/tourist_museum.glow.20.png differ diff --git a/website/images/mapicons/tourist_museum.glow.24.png b/website/images/mapicons/tourist_museum.glow.24.png new file mode 100644 index 00000000..18b996be Binary files /dev/null and b/website/images/mapicons/tourist_museum.glow.24.png differ diff --git a/website/images/mapicons/tourist_museum.glow.32.png b/website/images/mapicons/tourist_museum.glow.32.png new file mode 100644 index 00000000..fd724c92 Binary files /dev/null and b/website/images/mapicons/tourist_museum.glow.32.png differ diff --git a/website/images/mapicons/tourist_museum.n.12.png b/website/images/mapicons/tourist_museum.n.12.png new file mode 100644 index 00000000..010ed9d8 Binary files /dev/null and b/website/images/mapicons/tourist_museum.n.12.png differ diff --git a/website/images/mapicons/tourist_museum.n.16.png b/website/images/mapicons/tourist_museum.n.16.png new file mode 100644 index 00000000..36a4c450 Binary files /dev/null and b/website/images/mapicons/tourist_museum.n.16.png differ diff --git a/website/images/mapicons/tourist_museum.n.20.png b/website/images/mapicons/tourist_museum.n.20.png new file mode 100644 index 00000000..b78a3317 Binary files /dev/null and b/website/images/mapicons/tourist_museum.n.20.png differ diff --git a/website/images/mapicons/tourist_museum.n.24.png b/website/images/mapicons/tourist_museum.n.24.png new file mode 100644 index 00000000..3cdea51d Binary files /dev/null and b/website/images/mapicons/tourist_museum.n.24.png differ diff --git a/website/images/mapicons/tourist_museum.n.32.png b/website/images/mapicons/tourist_museum.n.32.png new file mode 100644 index 00000000..c8b9a8cf Binary files /dev/null and b/website/images/mapicons/tourist_museum.n.32.png differ diff --git a/website/images/mapicons/tourist_museum.p.12.png b/website/images/mapicons/tourist_museum.p.12.png new file mode 100644 index 00000000..5d10172e Binary files /dev/null and b/website/images/mapicons/tourist_museum.p.12.png differ diff --git a/website/images/mapicons/tourist_museum.p.16.png b/website/images/mapicons/tourist_museum.p.16.png new file mode 100644 index 00000000..47e5f20f Binary files /dev/null and b/website/images/mapicons/tourist_museum.p.16.png differ diff --git a/website/images/mapicons/tourist_museum.p.20.png b/website/images/mapicons/tourist_museum.p.20.png new file mode 100644 index 00000000..ad1db752 Binary files /dev/null and b/website/images/mapicons/tourist_museum.p.20.png differ diff --git a/website/images/mapicons/tourist_museum.p.24.png b/website/images/mapicons/tourist_museum.p.24.png new file mode 100644 index 00000000..d19b358c Binary files /dev/null and b/website/images/mapicons/tourist_museum.p.24.png differ diff --git a/website/images/mapicons/tourist_museum.p.32.png b/website/images/mapicons/tourist_museum.p.32.png new file mode 100644 index 00000000..c2b4cc78 Binary files /dev/null and b/website/images/mapicons/tourist_museum.p.32.png differ diff --git a/website/images/mapicons/tourist_picnic.glow.12.png b/website/images/mapicons/tourist_picnic.glow.12.png new file mode 100644 index 00000000..a1668a38 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.glow.12.png differ diff --git a/website/images/mapicons/tourist_picnic.glow.16.png b/website/images/mapicons/tourist_picnic.glow.16.png new file mode 100644 index 00000000..7c07f16e Binary files /dev/null and b/website/images/mapicons/tourist_picnic.glow.16.png differ diff --git a/website/images/mapicons/tourist_picnic.glow.20.png b/website/images/mapicons/tourist_picnic.glow.20.png new file mode 100644 index 00000000..564c697f Binary files /dev/null and b/website/images/mapicons/tourist_picnic.glow.20.png differ diff --git a/website/images/mapicons/tourist_picnic.glow.24.png b/website/images/mapicons/tourist_picnic.glow.24.png new file mode 100644 index 00000000..34e16dfb Binary files /dev/null and b/website/images/mapicons/tourist_picnic.glow.24.png differ diff --git a/website/images/mapicons/tourist_picnic.glow.32.png b/website/images/mapicons/tourist_picnic.glow.32.png new file mode 100644 index 00000000..8a30a7e5 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.glow.32.png differ diff --git a/website/images/mapicons/tourist_picnic.n.12.png b/website/images/mapicons/tourist_picnic.n.12.png new file mode 100644 index 00000000..2a35ba80 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.n.12.png differ diff --git a/website/images/mapicons/tourist_picnic.n.16.png b/website/images/mapicons/tourist_picnic.n.16.png new file mode 100644 index 00000000..f5292364 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.n.16.png differ diff --git a/website/images/mapicons/tourist_picnic.n.20.png b/website/images/mapicons/tourist_picnic.n.20.png new file mode 100644 index 00000000..615d369d Binary files /dev/null and b/website/images/mapicons/tourist_picnic.n.20.png differ diff --git a/website/images/mapicons/tourist_picnic.n.24.png b/website/images/mapicons/tourist_picnic.n.24.png new file mode 100644 index 00000000..6943ab48 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.n.24.png differ diff --git a/website/images/mapicons/tourist_picnic.n.32.png b/website/images/mapicons/tourist_picnic.n.32.png new file mode 100644 index 00000000..91ac14b0 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.n.32.png differ diff --git a/website/images/mapicons/tourist_picnic.p.12.png b/website/images/mapicons/tourist_picnic.p.12.png new file mode 100644 index 00000000..d1de1a6a Binary files /dev/null and b/website/images/mapicons/tourist_picnic.p.12.png differ diff --git a/website/images/mapicons/tourist_picnic.p.16.png b/website/images/mapicons/tourist_picnic.p.16.png new file mode 100644 index 00000000..0eff097b Binary files /dev/null and b/website/images/mapicons/tourist_picnic.p.16.png differ diff --git a/website/images/mapicons/tourist_picnic.p.20.png b/website/images/mapicons/tourist_picnic.p.20.png new file mode 100644 index 00000000..994a1764 Binary files /dev/null and b/website/images/mapicons/tourist_picnic.p.20.png differ diff --git a/website/images/mapicons/tourist_picnic.p.24.png b/website/images/mapicons/tourist_picnic.p.24.png new file mode 100644 index 00000000..31610f5e Binary files /dev/null and b/website/images/mapicons/tourist_picnic.p.24.png differ diff --git a/website/images/mapicons/tourist_picnic.p.32.png b/website/images/mapicons/tourist_picnic.p.32.png new file mode 100644 index 00000000..875a23dc Binary files /dev/null and b/website/images/mapicons/tourist_picnic.p.32.png differ diff --git a/website/images/mapicons/tourist_ruin.glow.12.png b/website/images/mapicons/tourist_ruin.glow.12.png new file mode 100644 index 00000000..e81c2043 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.glow.12.png differ diff --git a/website/images/mapicons/tourist_ruin.glow.16.png b/website/images/mapicons/tourist_ruin.glow.16.png new file mode 100644 index 00000000..27fd701e Binary files /dev/null and b/website/images/mapicons/tourist_ruin.glow.16.png differ diff --git a/website/images/mapicons/tourist_ruin.glow.20.png b/website/images/mapicons/tourist_ruin.glow.20.png new file mode 100644 index 00000000..5cbc68a9 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.glow.20.png differ diff --git a/website/images/mapicons/tourist_ruin.glow.24.png b/website/images/mapicons/tourist_ruin.glow.24.png new file mode 100644 index 00000000..54298d04 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.glow.24.png differ diff --git a/website/images/mapicons/tourist_ruin.glow.32.png b/website/images/mapicons/tourist_ruin.glow.32.png new file mode 100644 index 00000000..5bc9cf46 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.glow.32.png differ diff --git a/website/images/mapicons/tourist_ruin.n.12.png b/website/images/mapicons/tourist_ruin.n.12.png new file mode 100644 index 00000000..71193ad0 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.n.12.png differ diff --git a/website/images/mapicons/tourist_ruin.n.16.png b/website/images/mapicons/tourist_ruin.n.16.png new file mode 100644 index 00000000..65ad843d Binary files /dev/null and b/website/images/mapicons/tourist_ruin.n.16.png differ diff --git a/website/images/mapicons/tourist_ruin.n.20.png b/website/images/mapicons/tourist_ruin.n.20.png new file mode 100644 index 00000000..d3b440b0 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.n.20.png differ diff --git a/website/images/mapicons/tourist_ruin.n.24.png b/website/images/mapicons/tourist_ruin.n.24.png new file mode 100644 index 00000000..d8650c1f Binary files /dev/null and b/website/images/mapicons/tourist_ruin.n.24.png differ diff --git a/website/images/mapicons/tourist_ruin.n.32.png b/website/images/mapicons/tourist_ruin.n.32.png new file mode 100644 index 00000000..2b7cbf93 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.n.32.png differ diff --git a/website/images/mapicons/tourist_ruin.p.12.png b/website/images/mapicons/tourist_ruin.p.12.png new file mode 100644 index 00000000..0cfc158f Binary files /dev/null and b/website/images/mapicons/tourist_ruin.p.12.png differ diff --git a/website/images/mapicons/tourist_ruin.p.16.png b/website/images/mapicons/tourist_ruin.p.16.png new file mode 100644 index 00000000..804672ec Binary files /dev/null and b/website/images/mapicons/tourist_ruin.p.16.png differ diff --git a/website/images/mapicons/tourist_ruin.p.20.png b/website/images/mapicons/tourist_ruin.p.20.png new file mode 100644 index 00000000..767924d5 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.p.20.png differ diff --git a/website/images/mapicons/tourist_ruin.p.24.png b/website/images/mapicons/tourist_ruin.p.24.png new file mode 100644 index 00000000..56e4f272 Binary files /dev/null and b/website/images/mapicons/tourist_ruin.p.24.png differ diff --git a/website/images/mapicons/tourist_ruin.p.32.png b/website/images/mapicons/tourist_ruin.p.32.png new file mode 100644 index 00000000..4bc2792d Binary files /dev/null and b/website/images/mapicons/tourist_ruin.p.32.png differ diff --git a/website/images/mapicons/tourist_steam_train.glow.12.png b/website/images/mapicons/tourist_steam_train.glow.12.png new file mode 100644 index 00000000..32a19a5f Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.glow.12.png differ diff --git a/website/images/mapicons/tourist_steam_train.glow.16.png b/website/images/mapicons/tourist_steam_train.glow.16.png new file mode 100644 index 00000000..ddaf11d5 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.glow.16.png differ diff --git a/website/images/mapicons/tourist_steam_train.glow.20.png b/website/images/mapicons/tourist_steam_train.glow.20.png new file mode 100644 index 00000000..e391a9d3 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.glow.20.png differ diff --git a/website/images/mapicons/tourist_steam_train.glow.24.png b/website/images/mapicons/tourist_steam_train.glow.24.png new file mode 100644 index 00000000..2984624b Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.glow.24.png differ diff --git a/website/images/mapicons/tourist_steam_train.glow.32.png b/website/images/mapicons/tourist_steam_train.glow.32.png new file mode 100644 index 00000000..1caaf786 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.glow.32.png differ diff --git a/website/images/mapicons/tourist_steam_train.n.12.png b/website/images/mapicons/tourist_steam_train.n.12.png new file mode 100644 index 00000000..f07c78ac Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.n.12.png differ diff --git a/website/images/mapicons/tourist_steam_train.n.16.png b/website/images/mapicons/tourist_steam_train.n.16.png new file mode 100644 index 00000000..0fde4f4b Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.n.16.png differ diff --git a/website/images/mapicons/tourist_steam_train.n.20.png b/website/images/mapicons/tourist_steam_train.n.20.png new file mode 100644 index 00000000..970bc3c0 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.n.20.png differ diff --git a/website/images/mapicons/tourist_steam_train.n.24.png b/website/images/mapicons/tourist_steam_train.n.24.png new file mode 100644 index 00000000..aaea06ae Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.n.24.png differ diff --git a/website/images/mapicons/tourist_steam_train.n.32.png b/website/images/mapicons/tourist_steam_train.n.32.png new file mode 100644 index 00000000..55d79837 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.n.32.png differ diff --git a/website/images/mapicons/tourist_steam_train.p.12.png b/website/images/mapicons/tourist_steam_train.p.12.png new file mode 100644 index 00000000..c60bbbba Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.p.12.png differ diff --git a/website/images/mapicons/tourist_steam_train.p.16.png b/website/images/mapicons/tourist_steam_train.p.16.png new file mode 100644 index 00000000..296c632a Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.p.16.png differ diff --git a/website/images/mapicons/tourist_steam_train.p.20.png b/website/images/mapicons/tourist_steam_train.p.20.png new file mode 100644 index 00000000..be6da9c4 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.p.20.png differ diff --git a/website/images/mapicons/tourist_steam_train.p.24.png b/website/images/mapicons/tourist_steam_train.p.24.png new file mode 100644 index 00000000..587d13d3 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.p.24.png differ diff --git a/website/images/mapicons/tourist_steam_train.p.32.png b/website/images/mapicons/tourist_steam_train.p.32.png new file mode 100644 index 00000000..da9b91e9 Binary files /dev/null and b/website/images/mapicons/tourist_steam_train.p.32.png differ diff --git a/website/images/mapicons/tourist_theatre.glow.12.png b/website/images/mapicons/tourist_theatre.glow.12.png new file mode 100644 index 00000000..7f0af2e4 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.glow.12.png differ diff --git a/website/images/mapicons/tourist_theatre.glow.16.png b/website/images/mapicons/tourist_theatre.glow.16.png new file mode 100644 index 00000000..e83e8b1f Binary files /dev/null and b/website/images/mapicons/tourist_theatre.glow.16.png differ diff --git a/website/images/mapicons/tourist_theatre.glow.20.png b/website/images/mapicons/tourist_theatre.glow.20.png new file mode 100644 index 00000000..01111b0c Binary files /dev/null and b/website/images/mapicons/tourist_theatre.glow.20.png differ diff --git a/website/images/mapicons/tourist_theatre.glow.24.png b/website/images/mapicons/tourist_theatre.glow.24.png new file mode 100644 index 00000000..70e74782 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.glow.24.png differ diff --git a/website/images/mapicons/tourist_theatre.glow.32.png b/website/images/mapicons/tourist_theatre.glow.32.png new file mode 100644 index 00000000..12ba164c Binary files /dev/null and b/website/images/mapicons/tourist_theatre.glow.32.png differ diff --git a/website/images/mapicons/tourist_theatre.n.12.png b/website/images/mapicons/tourist_theatre.n.12.png new file mode 100644 index 00000000..da5f750e Binary files /dev/null and b/website/images/mapicons/tourist_theatre.n.12.png differ diff --git a/website/images/mapicons/tourist_theatre.n.16.png b/website/images/mapicons/tourist_theatre.n.16.png new file mode 100644 index 00000000..c0c82dfd Binary files /dev/null and b/website/images/mapicons/tourist_theatre.n.16.png differ diff --git a/website/images/mapicons/tourist_theatre.n.20.png b/website/images/mapicons/tourist_theatre.n.20.png new file mode 100644 index 00000000..89565296 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.n.20.png differ diff --git a/website/images/mapicons/tourist_theatre.n.24.png b/website/images/mapicons/tourist_theatre.n.24.png new file mode 100644 index 00000000..a5db00bd Binary files /dev/null and b/website/images/mapicons/tourist_theatre.n.24.png differ diff --git a/website/images/mapicons/tourist_theatre.n.32.png b/website/images/mapicons/tourist_theatre.n.32.png new file mode 100644 index 00000000..c1c7cc2e Binary files /dev/null and b/website/images/mapicons/tourist_theatre.n.32.png differ diff --git a/website/images/mapicons/tourist_theatre.p.12.png b/website/images/mapicons/tourist_theatre.p.12.png new file mode 100644 index 00000000..7d4e762b Binary files /dev/null and b/website/images/mapicons/tourist_theatre.p.12.png differ diff --git a/website/images/mapicons/tourist_theatre.p.16.png b/website/images/mapicons/tourist_theatre.p.16.png new file mode 100644 index 00000000..ab11b49e Binary files /dev/null and b/website/images/mapicons/tourist_theatre.p.16.png differ diff --git a/website/images/mapicons/tourist_theatre.p.20.png b/website/images/mapicons/tourist_theatre.p.20.png new file mode 100644 index 00000000..3d8a0fd7 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.p.20.png differ diff --git a/website/images/mapicons/tourist_theatre.p.24.png b/website/images/mapicons/tourist_theatre.p.24.png new file mode 100644 index 00000000..93ad6c08 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.p.24.png differ diff --git a/website/images/mapicons/tourist_theatre.p.32.png b/website/images/mapicons/tourist_theatre.p.32.png new file mode 100644 index 00000000..bcbbb974 Binary files /dev/null and b/website/images/mapicons/tourist_theatre.p.32.png differ diff --git a/website/images/mapicons/tourist_view_point.glow.12.png b/website/images/mapicons/tourist_view_point.glow.12.png new file mode 100644 index 00000000..5f507c72 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.glow.12.png differ diff --git a/website/images/mapicons/tourist_view_point.glow.16.png b/website/images/mapicons/tourist_view_point.glow.16.png new file mode 100644 index 00000000..c638b58f Binary files /dev/null and b/website/images/mapicons/tourist_view_point.glow.16.png differ diff --git a/website/images/mapicons/tourist_view_point.glow.20.png b/website/images/mapicons/tourist_view_point.glow.20.png new file mode 100644 index 00000000..7574915a Binary files /dev/null and b/website/images/mapicons/tourist_view_point.glow.20.png differ diff --git a/website/images/mapicons/tourist_view_point.glow.24.png b/website/images/mapicons/tourist_view_point.glow.24.png new file mode 100644 index 00000000..e3f32b83 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.glow.24.png differ diff --git a/website/images/mapicons/tourist_view_point.glow.32.png b/website/images/mapicons/tourist_view_point.glow.32.png new file mode 100644 index 00000000..09def81c Binary files /dev/null and b/website/images/mapicons/tourist_view_point.glow.32.png differ diff --git a/website/images/mapicons/tourist_view_point.n.12.png b/website/images/mapicons/tourist_view_point.n.12.png new file mode 100644 index 00000000..2a87cd3b Binary files /dev/null and b/website/images/mapicons/tourist_view_point.n.12.png differ diff --git a/website/images/mapicons/tourist_view_point.n.16.png b/website/images/mapicons/tourist_view_point.n.16.png new file mode 100644 index 00000000..781e7499 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.n.16.png differ diff --git a/website/images/mapicons/tourist_view_point.n.20.png b/website/images/mapicons/tourist_view_point.n.20.png new file mode 100644 index 00000000..bc9a5cda Binary files /dev/null and b/website/images/mapicons/tourist_view_point.n.20.png differ diff --git a/website/images/mapicons/tourist_view_point.n.24.png b/website/images/mapicons/tourist_view_point.n.24.png new file mode 100644 index 00000000..a2dde9eb Binary files /dev/null and b/website/images/mapicons/tourist_view_point.n.24.png differ diff --git a/website/images/mapicons/tourist_view_point.n.32.png b/website/images/mapicons/tourist_view_point.n.32.png new file mode 100644 index 00000000..86f9bdcd Binary files /dev/null and b/website/images/mapicons/tourist_view_point.n.32.png differ diff --git a/website/images/mapicons/tourist_view_point.p.12.png b/website/images/mapicons/tourist_view_point.p.12.png new file mode 100644 index 00000000..fdf53b55 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.p.12.png differ diff --git a/website/images/mapicons/tourist_view_point.p.16.png b/website/images/mapicons/tourist_view_point.p.16.png new file mode 100644 index 00000000..161f5efd Binary files /dev/null and b/website/images/mapicons/tourist_view_point.p.16.png differ diff --git a/website/images/mapicons/tourist_view_point.p.20.png b/website/images/mapicons/tourist_view_point.p.20.png new file mode 100644 index 00000000..74f2a1c3 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.p.20.png differ diff --git a/website/images/mapicons/tourist_view_point.p.24.png b/website/images/mapicons/tourist_view_point.p.24.png new file mode 100644 index 00000000..ad843343 Binary files /dev/null and b/website/images/mapicons/tourist_view_point.p.24.png differ diff --git a/website/images/mapicons/tourist_view_point.p.32.png b/website/images/mapicons/tourist_view_point.p.32.png new file mode 100644 index 00000000..c9e9205f Binary files /dev/null and b/website/images/mapicons/tourist_view_point.p.32.png differ diff --git a/website/images/mapicons/tourist_waterwheel.glow.12.png b/website/images/mapicons/tourist_waterwheel.glow.12.png new file mode 100644 index 00000000..fc413345 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.glow.12.png differ diff --git a/website/images/mapicons/tourist_waterwheel.glow.16.png b/website/images/mapicons/tourist_waterwheel.glow.16.png new file mode 100644 index 00000000..751d7db5 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.glow.16.png differ diff --git a/website/images/mapicons/tourist_waterwheel.glow.20.png b/website/images/mapicons/tourist_waterwheel.glow.20.png new file mode 100644 index 00000000..efcbaa0d Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.glow.20.png differ diff --git a/website/images/mapicons/tourist_waterwheel.glow.24.png b/website/images/mapicons/tourist_waterwheel.glow.24.png new file mode 100644 index 00000000..4531a790 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.glow.24.png differ diff --git a/website/images/mapicons/tourist_waterwheel.glow.32.png b/website/images/mapicons/tourist_waterwheel.glow.32.png new file mode 100644 index 00000000..71bc7912 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.glow.32.png differ diff --git a/website/images/mapicons/tourist_waterwheel.n.12.png b/website/images/mapicons/tourist_waterwheel.n.12.png new file mode 100644 index 00000000..c9d4f779 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.n.12.png differ diff --git a/website/images/mapicons/tourist_waterwheel.n.16.png b/website/images/mapicons/tourist_waterwheel.n.16.png new file mode 100644 index 00000000..9a09a931 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.n.16.png differ diff --git a/website/images/mapicons/tourist_waterwheel.n.20.png b/website/images/mapicons/tourist_waterwheel.n.20.png new file mode 100644 index 00000000..ff075714 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.n.20.png differ diff --git a/website/images/mapicons/tourist_waterwheel.n.24.png b/website/images/mapicons/tourist_waterwheel.n.24.png new file mode 100644 index 00000000..9311c1dd Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.n.24.png differ diff --git a/website/images/mapicons/tourist_waterwheel.n.32.png b/website/images/mapicons/tourist_waterwheel.n.32.png new file mode 100644 index 00000000..760a7afb Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.n.32.png differ diff --git a/website/images/mapicons/tourist_waterwheel.p.12.png b/website/images/mapicons/tourist_waterwheel.p.12.png new file mode 100644 index 00000000..f96b091a Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.p.12.png differ diff --git a/website/images/mapicons/tourist_waterwheel.p.16.png b/website/images/mapicons/tourist_waterwheel.p.16.png new file mode 100644 index 00000000..de581897 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.p.16.png differ diff --git a/website/images/mapicons/tourist_waterwheel.p.20.png b/website/images/mapicons/tourist_waterwheel.p.20.png new file mode 100644 index 00000000..d951b5b5 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.p.20.png differ diff --git a/website/images/mapicons/tourist_waterwheel.p.24.png b/website/images/mapicons/tourist_waterwheel.p.24.png new file mode 100644 index 00000000..738f1e8f Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.p.24.png differ diff --git a/website/images/mapicons/tourist_waterwheel.p.32.png b/website/images/mapicons/tourist_waterwheel.p.32.png new file mode 100644 index 00000000..4dd7d6f3 Binary files /dev/null and b/website/images/mapicons/tourist_waterwheel.p.32.png differ diff --git a/website/images/mapicons/tourist_windmill.glow.12.png b/website/images/mapicons/tourist_windmill.glow.12.png new file mode 100644 index 00000000..c5c8c8bc Binary files /dev/null and b/website/images/mapicons/tourist_windmill.glow.12.png differ diff --git a/website/images/mapicons/tourist_windmill.glow.16.png b/website/images/mapicons/tourist_windmill.glow.16.png new file mode 100644 index 00000000..7e327369 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.glow.16.png differ diff --git a/website/images/mapicons/tourist_windmill.glow.20.png b/website/images/mapicons/tourist_windmill.glow.20.png new file mode 100644 index 00000000..5275612a Binary files /dev/null and b/website/images/mapicons/tourist_windmill.glow.20.png differ diff --git a/website/images/mapicons/tourist_windmill.glow.24.png b/website/images/mapicons/tourist_windmill.glow.24.png new file mode 100644 index 00000000..6428aca7 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.glow.24.png differ diff --git a/website/images/mapicons/tourist_windmill.glow.32.png b/website/images/mapicons/tourist_windmill.glow.32.png new file mode 100644 index 00000000..abd5773c Binary files /dev/null and b/website/images/mapicons/tourist_windmill.glow.32.png differ diff --git a/website/images/mapicons/tourist_windmill.n.12.png b/website/images/mapicons/tourist_windmill.n.12.png new file mode 100644 index 00000000..b08b80cb Binary files /dev/null and b/website/images/mapicons/tourist_windmill.n.12.png differ diff --git a/website/images/mapicons/tourist_windmill.n.16.png b/website/images/mapicons/tourist_windmill.n.16.png new file mode 100644 index 00000000..367d03e4 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.n.16.png differ diff --git a/website/images/mapicons/tourist_windmill.n.20.png b/website/images/mapicons/tourist_windmill.n.20.png new file mode 100644 index 00000000..e5939a41 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.n.20.png differ diff --git a/website/images/mapicons/tourist_windmill.n.24.png b/website/images/mapicons/tourist_windmill.n.24.png new file mode 100644 index 00000000..12aabba9 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.n.24.png differ diff --git a/website/images/mapicons/tourist_windmill.n.32.png b/website/images/mapicons/tourist_windmill.n.32.png new file mode 100644 index 00000000..33d5011d Binary files /dev/null and b/website/images/mapicons/tourist_windmill.n.32.png differ diff --git a/website/images/mapicons/tourist_windmill.p.12.png b/website/images/mapicons/tourist_windmill.p.12.png new file mode 100644 index 00000000..fa94a570 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.p.12.png differ diff --git a/website/images/mapicons/tourist_windmill.p.16.png b/website/images/mapicons/tourist_windmill.p.16.png new file mode 100644 index 00000000..9ec568cc Binary files /dev/null and b/website/images/mapicons/tourist_windmill.p.16.png differ diff --git a/website/images/mapicons/tourist_windmill.p.20.png b/website/images/mapicons/tourist_windmill.p.20.png new file mode 100644 index 00000000..38f3e4b3 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.p.20.png differ diff --git a/website/images/mapicons/tourist_windmill.p.24.png b/website/images/mapicons/tourist_windmill.p.24.png new file mode 100644 index 00000000..bd850d20 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.p.24.png differ diff --git a/website/images/mapicons/tourist_windmill.p.32.png b/website/images/mapicons/tourist_windmill.p.32.png new file mode 100644 index 00000000..4c92acd2 Binary files /dev/null and b/website/images/mapicons/tourist_windmill.p.32.png differ diff --git a/website/images/mapicons/tourist_wreck.glow.12.png b/website/images/mapicons/tourist_wreck.glow.12.png new file mode 100644 index 00000000..5d1cc174 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.glow.12.png differ diff --git a/website/images/mapicons/tourist_wreck.glow.16.png b/website/images/mapicons/tourist_wreck.glow.16.png new file mode 100644 index 00000000..7f29bc4e Binary files /dev/null and b/website/images/mapicons/tourist_wreck.glow.16.png differ diff --git a/website/images/mapicons/tourist_wreck.glow.20.png b/website/images/mapicons/tourist_wreck.glow.20.png new file mode 100644 index 00000000..1b31fc2c Binary files /dev/null and b/website/images/mapicons/tourist_wreck.glow.20.png differ diff --git a/website/images/mapicons/tourist_wreck.glow.24.png b/website/images/mapicons/tourist_wreck.glow.24.png new file mode 100644 index 00000000..993c6b38 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.glow.24.png differ diff --git a/website/images/mapicons/tourist_wreck.glow.32.png b/website/images/mapicons/tourist_wreck.glow.32.png new file mode 100644 index 00000000..d536121f Binary files /dev/null and b/website/images/mapicons/tourist_wreck.glow.32.png differ diff --git a/website/images/mapicons/tourist_wreck.n.12.png b/website/images/mapicons/tourist_wreck.n.12.png new file mode 100644 index 00000000..3766f48c Binary files /dev/null and b/website/images/mapicons/tourist_wreck.n.12.png differ diff --git a/website/images/mapicons/tourist_wreck.n.16.png b/website/images/mapicons/tourist_wreck.n.16.png new file mode 100644 index 00000000..555856d8 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.n.16.png differ diff --git a/website/images/mapicons/tourist_wreck.n.20.png b/website/images/mapicons/tourist_wreck.n.20.png new file mode 100644 index 00000000..012ac6a5 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.n.20.png differ diff --git a/website/images/mapicons/tourist_wreck.n.24.png b/website/images/mapicons/tourist_wreck.n.24.png new file mode 100644 index 00000000..1a945353 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.n.24.png differ diff --git a/website/images/mapicons/tourist_wreck.n.32.png b/website/images/mapicons/tourist_wreck.n.32.png new file mode 100644 index 00000000..5337d0dc Binary files /dev/null and b/website/images/mapicons/tourist_wreck.n.32.png differ diff --git a/website/images/mapicons/tourist_wreck.p.12.png b/website/images/mapicons/tourist_wreck.p.12.png new file mode 100644 index 00000000..bc12e0c7 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.p.12.png differ diff --git a/website/images/mapicons/tourist_wreck.p.16.png b/website/images/mapicons/tourist_wreck.p.16.png new file mode 100644 index 00000000..eb190e20 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.p.16.png differ diff --git a/website/images/mapicons/tourist_wreck.p.20.png b/website/images/mapicons/tourist_wreck.p.20.png new file mode 100644 index 00000000..c848b79d Binary files /dev/null and b/website/images/mapicons/tourist_wreck.p.20.png differ diff --git a/website/images/mapicons/tourist_wreck.p.24.png b/website/images/mapicons/tourist_wreck.p.24.png new file mode 100644 index 00000000..e71ab70c Binary files /dev/null and b/website/images/mapicons/tourist_wreck.p.24.png differ diff --git a/website/images/mapicons/tourist_wreck.p.32.png b/website/images/mapicons/tourist_wreck.p.32.png new file mode 100644 index 00000000..e955c611 Binary files /dev/null and b/website/images/mapicons/tourist_wreck.p.32.png differ diff --git a/website/images/mapicons/tourist_zoo.glow.12.png b/website/images/mapicons/tourist_zoo.glow.12.png new file mode 100644 index 00000000..f279ab20 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.glow.12.png differ diff --git a/website/images/mapicons/tourist_zoo.glow.16.png b/website/images/mapicons/tourist_zoo.glow.16.png new file mode 100644 index 00000000..64866636 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.glow.16.png differ diff --git a/website/images/mapicons/tourist_zoo.glow.20.png b/website/images/mapicons/tourist_zoo.glow.20.png new file mode 100644 index 00000000..1c34d30c Binary files /dev/null and b/website/images/mapicons/tourist_zoo.glow.20.png differ diff --git a/website/images/mapicons/tourist_zoo.glow.24.png b/website/images/mapicons/tourist_zoo.glow.24.png new file mode 100644 index 00000000..fa7bf36b Binary files /dev/null and b/website/images/mapicons/tourist_zoo.glow.24.png differ diff --git a/website/images/mapicons/tourist_zoo.glow.32.png b/website/images/mapicons/tourist_zoo.glow.32.png new file mode 100644 index 00000000..cc59a76b Binary files /dev/null and b/website/images/mapicons/tourist_zoo.glow.32.png differ diff --git a/website/images/mapicons/tourist_zoo.n.12.png b/website/images/mapicons/tourist_zoo.n.12.png new file mode 100644 index 00000000..ddc141df Binary files /dev/null and b/website/images/mapicons/tourist_zoo.n.12.png differ diff --git a/website/images/mapicons/tourist_zoo.n.16.png b/website/images/mapicons/tourist_zoo.n.16.png new file mode 100644 index 00000000..2a9ecb08 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.n.16.png differ diff --git a/website/images/mapicons/tourist_zoo.n.20.png b/website/images/mapicons/tourist_zoo.n.20.png new file mode 100644 index 00000000..2aed4a76 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.n.20.png differ diff --git a/website/images/mapicons/tourist_zoo.n.24.png b/website/images/mapicons/tourist_zoo.n.24.png new file mode 100644 index 00000000..f33b9d86 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.n.24.png differ diff --git a/website/images/mapicons/tourist_zoo.n.32.png b/website/images/mapicons/tourist_zoo.n.32.png new file mode 100644 index 00000000..46ee6102 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.n.32.png differ diff --git a/website/images/mapicons/tourist_zoo.p.12.png b/website/images/mapicons/tourist_zoo.p.12.png new file mode 100644 index 00000000..de099d9d Binary files /dev/null and b/website/images/mapicons/tourist_zoo.p.12.png differ diff --git a/website/images/mapicons/tourist_zoo.p.16.png b/website/images/mapicons/tourist_zoo.p.16.png new file mode 100644 index 00000000..8cc0071f Binary files /dev/null and b/website/images/mapicons/tourist_zoo.p.16.png differ diff --git a/website/images/mapicons/tourist_zoo.p.20.png b/website/images/mapicons/tourist_zoo.p.20.png new file mode 100644 index 00000000..fd1513da Binary files /dev/null and b/website/images/mapicons/tourist_zoo.p.20.png differ diff --git a/website/images/mapicons/tourist_zoo.p.24.png b/website/images/mapicons/tourist_zoo.p.24.png new file mode 100644 index 00000000..f8ef9dc5 Binary files /dev/null and b/website/images/mapicons/tourist_zoo.p.24.png differ diff --git a/website/images/mapicons/tourist_zoo.p.32.png b/website/images/mapicons/tourist_zoo.p.32.png new file mode 100644 index 00000000..6c85227f Binary files /dev/null and b/website/images/mapicons/tourist_zoo.p.32.png differ diff --git a/website/images/mapicons/transport_aerodrome.glow.12.png b/website/images/mapicons/transport_aerodrome.glow.12.png new file mode 100644 index 00000000..e0c59752 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.glow.12.png differ diff --git a/website/images/mapicons/transport_aerodrome.glow.16.png b/website/images/mapicons/transport_aerodrome.glow.16.png new file mode 100644 index 00000000..700cb10d Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.glow.16.png differ diff --git a/website/images/mapicons/transport_aerodrome.glow.20.png b/website/images/mapicons/transport_aerodrome.glow.20.png new file mode 100644 index 00000000..47fedcd2 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.glow.20.png differ diff --git a/website/images/mapicons/transport_aerodrome.glow.24.png b/website/images/mapicons/transport_aerodrome.glow.24.png new file mode 100644 index 00000000..251df993 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.glow.24.png differ diff --git a/website/images/mapicons/transport_aerodrome.glow.32.png b/website/images/mapicons/transport_aerodrome.glow.32.png new file mode 100644 index 00000000..962efd0d Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.glow.32.png differ diff --git a/website/images/mapicons/transport_aerodrome.n.12.png b/website/images/mapicons/transport_aerodrome.n.12.png new file mode 100644 index 00000000..83b36532 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.n.12.png differ diff --git a/website/images/mapicons/transport_aerodrome.n.16.png b/website/images/mapicons/transport_aerodrome.n.16.png new file mode 100644 index 00000000..a86124b2 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.n.16.png differ diff --git a/website/images/mapicons/transport_aerodrome.n.20.png b/website/images/mapicons/transport_aerodrome.n.20.png new file mode 100644 index 00000000..4186a434 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.n.20.png differ diff --git a/website/images/mapicons/transport_aerodrome.n.24.png b/website/images/mapicons/transport_aerodrome.n.24.png new file mode 100644 index 00000000..83b7eccf Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.n.24.png differ diff --git a/website/images/mapicons/transport_aerodrome.n.32.png b/website/images/mapicons/transport_aerodrome.n.32.png new file mode 100644 index 00000000..613d48a5 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.n.32.png differ diff --git a/website/images/mapicons/transport_aerodrome.p.12.png b/website/images/mapicons/transport_aerodrome.p.12.png new file mode 100644 index 00000000..e0341209 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.p.12.png differ diff --git a/website/images/mapicons/transport_aerodrome.p.16.png b/website/images/mapicons/transport_aerodrome.p.16.png new file mode 100644 index 00000000..722d3972 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.p.16.png differ diff --git a/website/images/mapicons/transport_aerodrome.p.20.png b/website/images/mapicons/transport_aerodrome.p.20.png new file mode 100644 index 00000000..482acc99 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.p.20.png differ diff --git a/website/images/mapicons/transport_aerodrome.p.24.png b/website/images/mapicons/transport_aerodrome.p.24.png new file mode 100644 index 00000000..4775e260 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.p.24.png differ diff --git a/website/images/mapicons/transport_aerodrome.p.32.png b/website/images/mapicons/transport_aerodrome.p.32.png new file mode 100644 index 00000000..3e993c47 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome.p.32.png differ diff --git a/website/images/mapicons/transport_aerodrome2.glow.12.png b/website/images/mapicons/transport_aerodrome2.glow.12.png new file mode 100644 index 00000000..f9568aba Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.glow.12.png differ diff --git a/website/images/mapicons/transport_aerodrome2.glow.16.png b/website/images/mapicons/transport_aerodrome2.glow.16.png new file mode 100644 index 00000000..29e18e78 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.glow.16.png differ diff --git a/website/images/mapicons/transport_aerodrome2.glow.20.png b/website/images/mapicons/transport_aerodrome2.glow.20.png new file mode 100644 index 00000000..79ce213d Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.glow.20.png differ diff --git a/website/images/mapicons/transport_aerodrome2.glow.24.png b/website/images/mapicons/transport_aerodrome2.glow.24.png new file mode 100644 index 00000000..ea201c27 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.glow.24.png differ diff --git a/website/images/mapicons/transport_aerodrome2.glow.32.png b/website/images/mapicons/transport_aerodrome2.glow.32.png new file mode 100644 index 00000000..42f2b2ff Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.glow.32.png differ diff --git a/website/images/mapicons/transport_aerodrome2.n.12.png b/website/images/mapicons/transport_aerodrome2.n.12.png new file mode 100644 index 00000000..1b5c7144 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.n.12.png differ diff --git a/website/images/mapicons/transport_aerodrome2.n.16.png b/website/images/mapicons/transport_aerodrome2.n.16.png new file mode 100644 index 00000000..2e27e725 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.n.16.png differ diff --git a/website/images/mapicons/transport_aerodrome2.n.20.png b/website/images/mapicons/transport_aerodrome2.n.20.png new file mode 100644 index 00000000..619beb03 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.n.20.png differ diff --git a/website/images/mapicons/transport_aerodrome2.n.24.png b/website/images/mapicons/transport_aerodrome2.n.24.png new file mode 100644 index 00000000..d3b1b0c0 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.n.24.png differ diff --git a/website/images/mapicons/transport_aerodrome2.n.32.png b/website/images/mapicons/transport_aerodrome2.n.32.png new file mode 100644 index 00000000..42130000 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.n.32.png differ diff --git a/website/images/mapicons/transport_aerodrome2.p.12.png b/website/images/mapicons/transport_aerodrome2.p.12.png new file mode 100644 index 00000000..31bf1dc7 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.p.12.png differ diff --git a/website/images/mapicons/transport_aerodrome2.p.16.png b/website/images/mapicons/transport_aerodrome2.p.16.png new file mode 100644 index 00000000..c0c7e391 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.p.16.png differ diff --git a/website/images/mapicons/transport_aerodrome2.p.20.png b/website/images/mapicons/transport_aerodrome2.p.20.png new file mode 100644 index 00000000..c646354f Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.p.20.png differ diff --git a/website/images/mapicons/transport_aerodrome2.p.24.png b/website/images/mapicons/transport_aerodrome2.p.24.png new file mode 100644 index 00000000..7a937486 Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.p.24.png differ diff --git a/website/images/mapicons/transport_aerodrome2.p.32.png b/website/images/mapicons/transport_aerodrome2.p.32.png new file mode 100644 index 00000000..7ec7263e Binary files /dev/null and b/website/images/mapicons/transport_aerodrome2.p.32.png differ diff --git a/website/images/mapicons/transport_airport.glow.12.png b/website/images/mapicons/transport_airport.glow.12.png new file mode 100644 index 00000000..160778b6 Binary files /dev/null and b/website/images/mapicons/transport_airport.glow.12.png differ diff --git a/website/images/mapicons/transport_airport.glow.16.png b/website/images/mapicons/transport_airport.glow.16.png new file mode 100644 index 00000000..cdad08f9 Binary files /dev/null and b/website/images/mapicons/transport_airport.glow.16.png differ diff --git a/website/images/mapicons/transport_airport.glow.20.png b/website/images/mapicons/transport_airport.glow.20.png new file mode 100644 index 00000000..57314a73 Binary files /dev/null and b/website/images/mapicons/transport_airport.glow.20.png differ diff --git a/website/images/mapicons/transport_airport.glow.24.png b/website/images/mapicons/transport_airport.glow.24.png new file mode 100644 index 00000000..ae3b2ec9 Binary files /dev/null and b/website/images/mapicons/transport_airport.glow.24.png differ diff --git a/website/images/mapicons/transport_airport.glow.32.png b/website/images/mapicons/transport_airport.glow.32.png new file mode 100644 index 00000000..3d21bae4 Binary files /dev/null and b/website/images/mapicons/transport_airport.glow.32.png differ diff --git a/website/images/mapicons/transport_airport.n.12.png b/website/images/mapicons/transport_airport.n.12.png new file mode 100644 index 00000000..ed64e1b3 Binary files /dev/null and b/website/images/mapicons/transport_airport.n.12.png differ diff --git a/website/images/mapicons/transport_airport.n.16.png b/website/images/mapicons/transport_airport.n.16.png new file mode 100644 index 00000000..ae1596a4 Binary files /dev/null and b/website/images/mapicons/transport_airport.n.16.png differ diff --git a/website/images/mapicons/transport_airport.n.20.png b/website/images/mapicons/transport_airport.n.20.png new file mode 100644 index 00000000..8933dadd Binary files /dev/null and b/website/images/mapicons/transport_airport.n.20.png differ diff --git a/website/images/mapicons/transport_airport.n.24.png b/website/images/mapicons/transport_airport.n.24.png new file mode 100644 index 00000000..4e6bddb5 Binary files /dev/null and b/website/images/mapicons/transport_airport.n.24.png differ diff --git a/website/images/mapicons/transport_airport.n.32.png b/website/images/mapicons/transport_airport.n.32.png new file mode 100644 index 00000000..5e9fd1af Binary files /dev/null and b/website/images/mapicons/transport_airport.n.32.png differ diff --git a/website/images/mapicons/transport_airport.p.12.png b/website/images/mapicons/transport_airport.p.12.png new file mode 100644 index 00000000..974687c2 Binary files /dev/null and b/website/images/mapicons/transport_airport.p.12.png differ diff --git a/website/images/mapicons/transport_airport.p.16.png b/website/images/mapicons/transport_airport.p.16.png new file mode 100644 index 00000000..21543bc7 Binary files /dev/null and b/website/images/mapicons/transport_airport.p.16.png differ diff --git a/website/images/mapicons/transport_airport.p.20.png b/website/images/mapicons/transport_airport.p.20.png new file mode 100644 index 00000000..1bfd1286 Binary files /dev/null and b/website/images/mapicons/transport_airport.p.20.png differ diff --git a/website/images/mapicons/transport_airport.p.24.png b/website/images/mapicons/transport_airport.p.24.png new file mode 100644 index 00000000..0350ffb4 Binary files /dev/null and b/website/images/mapicons/transport_airport.p.24.png differ diff --git a/website/images/mapicons/transport_airport.p.32.png b/website/images/mapicons/transport_airport.p.32.png new file mode 100644 index 00000000..f89303e8 Binary files /dev/null and b/website/images/mapicons/transport_airport.p.32.png differ diff --git a/website/images/mapicons/transport_airport2.glow.12.png b/website/images/mapicons/transport_airport2.glow.12.png new file mode 100644 index 00000000..64b6f2ae Binary files /dev/null and b/website/images/mapicons/transport_airport2.glow.12.png differ diff --git a/website/images/mapicons/transport_airport2.glow.16.png b/website/images/mapicons/transport_airport2.glow.16.png new file mode 100644 index 00000000..34555743 Binary files /dev/null and b/website/images/mapicons/transport_airport2.glow.16.png differ diff --git a/website/images/mapicons/transport_airport2.glow.20.png b/website/images/mapicons/transport_airport2.glow.20.png new file mode 100644 index 00000000..93a097a3 Binary files /dev/null and b/website/images/mapicons/transport_airport2.glow.20.png differ diff --git a/website/images/mapicons/transport_airport2.glow.24.png b/website/images/mapicons/transport_airport2.glow.24.png new file mode 100644 index 00000000..70ee4a6a Binary files /dev/null and b/website/images/mapicons/transport_airport2.glow.24.png differ diff --git a/website/images/mapicons/transport_airport2.glow.32.png b/website/images/mapicons/transport_airport2.glow.32.png new file mode 100644 index 00000000..db9bb53e Binary files /dev/null and b/website/images/mapicons/transport_airport2.glow.32.png differ diff --git a/website/images/mapicons/transport_airport2.n.12.png b/website/images/mapicons/transport_airport2.n.12.png new file mode 100644 index 00000000..a9edefc7 Binary files /dev/null and b/website/images/mapicons/transport_airport2.n.12.png differ diff --git a/website/images/mapicons/transport_airport2.n.16.png b/website/images/mapicons/transport_airport2.n.16.png new file mode 100644 index 00000000..ab14f9d0 Binary files /dev/null and b/website/images/mapicons/transport_airport2.n.16.png differ diff --git a/website/images/mapicons/transport_airport2.n.20.png b/website/images/mapicons/transport_airport2.n.20.png new file mode 100644 index 00000000..c7efb36f Binary files /dev/null and b/website/images/mapicons/transport_airport2.n.20.png differ diff --git a/website/images/mapicons/transport_airport2.n.24.png b/website/images/mapicons/transport_airport2.n.24.png new file mode 100644 index 00000000..fc1d7c06 Binary files /dev/null and b/website/images/mapicons/transport_airport2.n.24.png differ diff --git a/website/images/mapicons/transport_airport2.n.32.png b/website/images/mapicons/transport_airport2.n.32.png new file mode 100644 index 00000000..9429e2fe Binary files /dev/null and b/website/images/mapicons/transport_airport2.n.32.png differ diff --git a/website/images/mapicons/transport_airport2.p.12.png b/website/images/mapicons/transport_airport2.p.12.png new file mode 100644 index 00000000..e2385cf9 Binary files /dev/null and b/website/images/mapicons/transport_airport2.p.12.png differ diff --git a/website/images/mapicons/transport_airport2.p.16.png b/website/images/mapicons/transport_airport2.p.16.png new file mode 100644 index 00000000..0ff35c84 Binary files /dev/null and b/website/images/mapicons/transport_airport2.p.16.png differ diff --git a/website/images/mapicons/transport_airport2.p.20.png b/website/images/mapicons/transport_airport2.p.20.png new file mode 100644 index 00000000..353adbd6 Binary files /dev/null and b/website/images/mapicons/transport_airport2.p.20.png differ diff --git a/website/images/mapicons/transport_airport2.p.24.png b/website/images/mapicons/transport_airport2.p.24.png new file mode 100644 index 00000000..230a4fad Binary files /dev/null and b/website/images/mapicons/transport_airport2.p.24.png differ diff --git a/website/images/mapicons/transport_airport2.p.32.png b/website/images/mapicons/transport_airport2.p.32.png new file mode 100644 index 00000000..8cec0f0f Binary files /dev/null and b/website/images/mapicons/transport_airport2.p.32.png differ diff --git a/website/images/mapicons/transport_bus_station.glow.12.png b/website/images/mapicons/transport_bus_station.glow.12.png new file mode 100644 index 00000000..3869b3f7 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.glow.12.png differ diff --git a/website/images/mapicons/transport_bus_station.glow.16.png b/website/images/mapicons/transport_bus_station.glow.16.png new file mode 100644 index 00000000..c60e5e23 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.glow.16.png differ diff --git a/website/images/mapicons/transport_bus_station.glow.20.png b/website/images/mapicons/transport_bus_station.glow.20.png new file mode 100644 index 00000000..51e88c06 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.glow.20.png differ diff --git a/website/images/mapicons/transport_bus_station.glow.24.png b/website/images/mapicons/transport_bus_station.glow.24.png new file mode 100644 index 00000000..42ac3e02 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.glow.24.png differ diff --git a/website/images/mapicons/transport_bus_station.glow.32.png b/website/images/mapicons/transport_bus_station.glow.32.png new file mode 100644 index 00000000..e61f0081 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.glow.32.png differ diff --git a/website/images/mapicons/transport_bus_station.n.12.png b/website/images/mapicons/transport_bus_station.n.12.png new file mode 100644 index 00000000..049d5def Binary files /dev/null and b/website/images/mapicons/transport_bus_station.n.12.png differ diff --git a/website/images/mapicons/transport_bus_station.n.16.png b/website/images/mapicons/transport_bus_station.n.16.png new file mode 100644 index 00000000..aa93c115 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.n.16.png differ diff --git a/website/images/mapicons/transport_bus_station.n.20.png b/website/images/mapicons/transport_bus_station.n.20.png new file mode 100644 index 00000000..2dc1d5a8 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.n.20.png differ diff --git a/website/images/mapicons/transport_bus_station.n.24.png b/website/images/mapicons/transport_bus_station.n.24.png new file mode 100644 index 00000000..e9cdc7e1 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.n.24.png differ diff --git a/website/images/mapicons/transport_bus_station.n.32.png b/website/images/mapicons/transport_bus_station.n.32.png new file mode 100644 index 00000000..c5b203e2 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.n.32.png differ diff --git a/website/images/mapicons/transport_bus_station.p.12.png b/website/images/mapicons/transport_bus_station.p.12.png new file mode 100644 index 00000000..ad80e7c7 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.p.12.png differ diff --git a/website/images/mapicons/transport_bus_station.p.16.png b/website/images/mapicons/transport_bus_station.p.16.png new file mode 100644 index 00000000..b748f6a9 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.p.16.png differ diff --git a/website/images/mapicons/transport_bus_station.p.20.png b/website/images/mapicons/transport_bus_station.p.20.png new file mode 100644 index 00000000..417cb344 Binary files /dev/null and b/website/images/mapicons/transport_bus_station.p.20.png differ diff --git a/website/images/mapicons/transport_bus_station.p.24.png b/website/images/mapicons/transport_bus_station.p.24.png new file mode 100644 index 00000000..3935feaf Binary files /dev/null and b/website/images/mapicons/transport_bus_station.p.24.png differ diff --git a/website/images/mapicons/transport_bus_station.p.32.png b/website/images/mapicons/transport_bus_station.p.32.png new file mode 100644 index 00000000..95b17ebf Binary files /dev/null and b/website/images/mapicons/transport_bus_station.p.32.png differ diff --git a/website/images/mapicons/transport_bus_stop.glow.12.png b/website/images/mapicons/transport_bus_stop.glow.12.png new file mode 100644 index 00000000..45a59956 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.glow.12.png differ diff --git a/website/images/mapicons/transport_bus_stop.glow.16.png b/website/images/mapicons/transport_bus_stop.glow.16.png new file mode 100644 index 00000000..58ae9024 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.glow.16.png differ diff --git a/website/images/mapicons/transport_bus_stop.glow.20.png b/website/images/mapicons/transport_bus_stop.glow.20.png new file mode 100644 index 00000000..00ed0e04 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.glow.20.png differ diff --git a/website/images/mapicons/transport_bus_stop.glow.24.png b/website/images/mapicons/transport_bus_stop.glow.24.png new file mode 100644 index 00000000..7d8f730b Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.glow.24.png differ diff --git a/website/images/mapicons/transport_bus_stop.glow.32.png b/website/images/mapicons/transport_bus_stop.glow.32.png new file mode 100644 index 00000000..8aa77103 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.glow.32.png differ diff --git a/website/images/mapicons/transport_bus_stop.n.12.png b/website/images/mapicons/transport_bus_stop.n.12.png new file mode 100644 index 00000000..d293900f Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.n.12.png differ diff --git a/website/images/mapicons/transport_bus_stop.n.16.png b/website/images/mapicons/transport_bus_stop.n.16.png new file mode 100644 index 00000000..282124c4 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.n.16.png differ diff --git a/website/images/mapicons/transport_bus_stop.n.20.png b/website/images/mapicons/transport_bus_stop.n.20.png new file mode 100644 index 00000000..4f8bb610 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.n.20.png differ diff --git a/website/images/mapicons/transport_bus_stop.n.24.png b/website/images/mapicons/transport_bus_stop.n.24.png new file mode 100644 index 00000000..40c211c4 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.n.24.png differ diff --git a/website/images/mapicons/transport_bus_stop.n.32.png b/website/images/mapicons/transport_bus_stop.n.32.png new file mode 100644 index 00000000..34a0306b Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.n.32.png differ diff --git a/website/images/mapicons/transport_bus_stop.p.12.png b/website/images/mapicons/transport_bus_stop.p.12.png new file mode 100644 index 00000000..528c9ef1 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.p.12.png differ diff --git a/website/images/mapicons/transport_bus_stop.p.16.png b/website/images/mapicons/transport_bus_stop.p.16.png new file mode 100644 index 00000000..8dd86e3b Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.p.16.png differ diff --git a/website/images/mapicons/transport_bus_stop.p.20.png b/website/images/mapicons/transport_bus_stop.p.20.png new file mode 100644 index 00000000..ed59cdaf Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.p.20.png differ diff --git a/website/images/mapicons/transport_bus_stop.p.24.png b/website/images/mapicons/transport_bus_stop.p.24.png new file mode 100644 index 00000000..afa356e1 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.p.24.png differ diff --git a/website/images/mapicons/transport_bus_stop.p.32.png b/website/images/mapicons/transport_bus_stop.p.32.png new file mode 100644 index 00000000..6bc0ed26 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop.p.32.png differ diff --git a/website/images/mapicons/transport_bus_stop2.glow.12.png b/website/images/mapicons/transport_bus_stop2.glow.12.png new file mode 100644 index 00000000..b86bb716 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.glow.12.png differ diff --git a/website/images/mapicons/transport_bus_stop2.glow.16.png b/website/images/mapicons/transport_bus_stop2.glow.16.png new file mode 100644 index 00000000..8f4c7079 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.glow.16.png differ diff --git a/website/images/mapicons/transport_bus_stop2.glow.20.png b/website/images/mapicons/transport_bus_stop2.glow.20.png new file mode 100644 index 00000000..19bf5d80 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.glow.20.png differ diff --git a/website/images/mapicons/transport_bus_stop2.glow.24.png b/website/images/mapicons/transport_bus_stop2.glow.24.png new file mode 100644 index 00000000..6758de34 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.glow.24.png differ diff --git a/website/images/mapicons/transport_bus_stop2.glow.32.png b/website/images/mapicons/transport_bus_stop2.glow.32.png new file mode 100644 index 00000000..2bdc5be6 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.glow.32.png differ diff --git a/website/images/mapicons/transport_bus_stop2.n.12.png b/website/images/mapicons/transport_bus_stop2.n.12.png new file mode 100644 index 00000000..e2271e58 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.n.12.png differ diff --git a/website/images/mapicons/transport_bus_stop2.n.16.png b/website/images/mapicons/transport_bus_stop2.n.16.png new file mode 100644 index 00000000..81fe31f3 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.n.16.png differ diff --git a/website/images/mapicons/transport_bus_stop2.n.20.png b/website/images/mapicons/transport_bus_stop2.n.20.png new file mode 100644 index 00000000..a970c38c Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.n.20.png differ diff --git a/website/images/mapicons/transport_bus_stop2.n.24.png b/website/images/mapicons/transport_bus_stop2.n.24.png new file mode 100644 index 00000000..d81484ab Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.n.24.png differ diff --git a/website/images/mapicons/transport_bus_stop2.n.32.png b/website/images/mapicons/transport_bus_stop2.n.32.png new file mode 100644 index 00000000..d32e3651 Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.n.32.png differ diff --git a/website/images/mapicons/transport_bus_stop2.p.12.png b/website/images/mapicons/transport_bus_stop2.p.12.png new file mode 100644 index 00000000..7c8b1a5a Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.p.12.png differ diff --git a/website/images/mapicons/transport_bus_stop2.p.16.png b/website/images/mapicons/transport_bus_stop2.p.16.png new file mode 100644 index 00000000..9e48d3bb Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.p.16.png differ diff --git a/website/images/mapicons/transport_bus_stop2.p.20.png b/website/images/mapicons/transport_bus_stop2.p.20.png new file mode 100644 index 00000000..6e2dc18a Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.p.20.png differ diff --git a/website/images/mapicons/transport_bus_stop2.p.24.png b/website/images/mapicons/transport_bus_stop2.p.24.png new file mode 100644 index 00000000..2797d3ce Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.p.24.png differ diff --git a/website/images/mapicons/transport_bus_stop2.p.32.png b/website/images/mapicons/transport_bus_stop2.p.32.png new file mode 100644 index 00000000..4b07f5ab Binary files /dev/null and b/website/images/mapicons/transport_bus_stop2.p.32.png differ diff --git a/website/images/mapicons/transport_car_share.glow.12.png b/website/images/mapicons/transport_car_share.glow.12.png new file mode 100644 index 00000000..98cba8d6 Binary files /dev/null and b/website/images/mapicons/transport_car_share.glow.12.png differ diff --git a/website/images/mapicons/transport_car_share.glow.16.png b/website/images/mapicons/transport_car_share.glow.16.png new file mode 100644 index 00000000..81687747 Binary files /dev/null and b/website/images/mapicons/transport_car_share.glow.16.png differ diff --git a/website/images/mapicons/transport_car_share.glow.20.png b/website/images/mapicons/transport_car_share.glow.20.png new file mode 100644 index 00000000..24ba54fd Binary files /dev/null and b/website/images/mapicons/transport_car_share.glow.20.png differ diff --git a/website/images/mapicons/transport_car_share.glow.24.png b/website/images/mapicons/transport_car_share.glow.24.png new file mode 100644 index 00000000..4bb0a041 Binary files /dev/null and b/website/images/mapicons/transport_car_share.glow.24.png differ diff --git a/website/images/mapicons/transport_car_share.glow.32.png b/website/images/mapicons/transport_car_share.glow.32.png new file mode 100644 index 00000000..e8027e4b Binary files /dev/null and b/website/images/mapicons/transport_car_share.glow.32.png differ diff --git a/website/images/mapicons/transport_car_share.n.12.png b/website/images/mapicons/transport_car_share.n.12.png new file mode 100644 index 00000000..e48f9c8e Binary files /dev/null and b/website/images/mapicons/transport_car_share.n.12.png differ diff --git a/website/images/mapicons/transport_car_share.n.16.png b/website/images/mapicons/transport_car_share.n.16.png new file mode 100644 index 00000000..fcf68ef4 Binary files /dev/null and b/website/images/mapicons/transport_car_share.n.16.png differ diff --git a/website/images/mapicons/transport_car_share.n.20.png b/website/images/mapicons/transport_car_share.n.20.png new file mode 100644 index 00000000..23ea237d Binary files /dev/null and b/website/images/mapicons/transport_car_share.n.20.png differ diff --git a/website/images/mapicons/transport_car_share.n.24.png b/website/images/mapicons/transport_car_share.n.24.png new file mode 100644 index 00000000..6bcd56e9 Binary files /dev/null and b/website/images/mapicons/transport_car_share.n.24.png differ diff --git a/website/images/mapicons/transport_car_share.n.32.png b/website/images/mapicons/transport_car_share.n.32.png new file mode 100644 index 00000000..e903c599 Binary files /dev/null and b/website/images/mapicons/transport_car_share.n.32.png differ diff --git a/website/images/mapicons/transport_car_share.p.12.png b/website/images/mapicons/transport_car_share.p.12.png new file mode 100644 index 00000000..7f133bb0 Binary files /dev/null and b/website/images/mapicons/transport_car_share.p.12.png differ diff --git a/website/images/mapicons/transport_car_share.p.16.png b/website/images/mapicons/transport_car_share.p.16.png new file mode 100644 index 00000000..c2d10ae8 Binary files /dev/null and b/website/images/mapicons/transport_car_share.p.16.png differ diff --git a/website/images/mapicons/transport_car_share.p.20.png b/website/images/mapicons/transport_car_share.p.20.png new file mode 100644 index 00000000..5613d44b Binary files /dev/null and b/website/images/mapicons/transport_car_share.p.20.png differ diff --git a/website/images/mapicons/transport_car_share.p.24.png b/website/images/mapicons/transport_car_share.p.24.png new file mode 100644 index 00000000..3362a513 Binary files /dev/null and b/website/images/mapicons/transport_car_share.p.24.png differ diff --git a/website/images/mapicons/transport_car_share.p.32.png b/website/images/mapicons/transport_car_share.p.32.png new file mode 100644 index 00000000..e7be7af2 Binary files /dev/null and b/website/images/mapicons/transport_car_share.p.32.png differ diff --git a/website/images/mapicons/transport_ford.glow.12.png b/website/images/mapicons/transport_ford.glow.12.png new file mode 100644 index 00000000..5cae1cf5 Binary files /dev/null and b/website/images/mapicons/transport_ford.glow.12.png differ diff --git a/website/images/mapicons/transport_ford.glow.16.png b/website/images/mapicons/transport_ford.glow.16.png new file mode 100644 index 00000000..7e466179 Binary files /dev/null and b/website/images/mapicons/transport_ford.glow.16.png differ diff --git a/website/images/mapicons/transport_ford.glow.20.png b/website/images/mapicons/transport_ford.glow.20.png new file mode 100644 index 00000000..d315805b Binary files /dev/null and b/website/images/mapicons/transport_ford.glow.20.png differ diff --git a/website/images/mapicons/transport_ford.glow.24.png b/website/images/mapicons/transport_ford.glow.24.png new file mode 100644 index 00000000..158fbe8b Binary files /dev/null and b/website/images/mapicons/transport_ford.glow.24.png differ diff --git a/website/images/mapicons/transport_ford.glow.32.png b/website/images/mapicons/transport_ford.glow.32.png new file mode 100644 index 00000000..0fbc490c Binary files /dev/null and b/website/images/mapicons/transport_ford.glow.32.png differ diff --git a/website/images/mapicons/transport_ford.n.12.png b/website/images/mapicons/transport_ford.n.12.png new file mode 100644 index 00000000..36592341 Binary files /dev/null and b/website/images/mapicons/transport_ford.n.12.png differ diff --git a/website/images/mapicons/transport_ford.n.16.png b/website/images/mapicons/transport_ford.n.16.png new file mode 100644 index 00000000..b7782f66 Binary files /dev/null and b/website/images/mapicons/transport_ford.n.16.png differ diff --git a/website/images/mapicons/transport_ford.n.20.png b/website/images/mapicons/transport_ford.n.20.png new file mode 100644 index 00000000..15a711bd Binary files /dev/null and b/website/images/mapicons/transport_ford.n.20.png differ diff --git a/website/images/mapicons/transport_ford.n.24.png b/website/images/mapicons/transport_ford.n.24.png new file mode 100644 index 00000000..621f9910 Binary files /dev/null and b/website/images/mapicons/transport_ford.n.24.png differ diff --git a/website/images/mapicons/transport_ford.n.32.png b/website/images/mapicons/transport_ford.n.32.png new file mode 100644 index 00000000..1d3a1501 Binary files /dev/null and b/website/images/mapicons/transport_ford.n.32.png differ diff --git a/website/images/mapicons/transport_ford.p.12.png b/website/images/mapicons/transport_ford.p.12.png new file mode 100644 index 00000000..91e5cddb Binary files /dev/null and b/website/images/mapicons/transport_ford.p.12.png differ diff --git a/website/images/mapicons/transport_ford.p.16.png b/website/images/mapicons/transport_ford.p.16.png new file mode 100644 index 00000000..dc1bfc29 Binary files /dev/null and b/website/images/mapicons/transport_ford.p.16.png differ diff --git a/website/images/mapicons/transport_ford.p.20.png b/website/images/mapicons/transport_ford.p.20.png new file mode 100644 index 00000000..1cc8fc15 Binary files /dev/null and b/website/images/mapicons/transport_ford.p.20.png differ diff --git a/website/images/mapicons/transport_ford.p.24.png b/website/images/mapicons/transport_ford.p.24.png new file mode 100644 index 00000000..e969b5cb Binary files /dev/null and b/website/images/mapicons/transport_ford.p.24.png differ diff --git a/website/images/mapicons/transport_ford.p.32.png b/website/images/mapicons/transport_ford.p.32.png new file mode 100644 index 00000000..139108f7 Binary files /dev/null and b/website/images/mapicons/transport_ford.p.32.png differ diff --git a/website/images/mapicons/transport_fuel.glow.12.png b/website/images/mapicons/transport_fuel.glow.12.png new file mode 100644 index 00000000..2360f934 Binary files /dev/null and b/website/images/mapicons/transport_fuel.glow.12.png differ diff --git a/website/images/mapicons/transport_fuel.glow.16.png b/website/images/mapicons/transport_fuel.glow.16.png new file mode 100644 index 00000000..fb4b7eae Binary files /dev/null and b/website/images/mapicons/transport_fuel.glow.16.png differ diff --git a/website/images/mapicons/transport_fuel.glow.20.png b/website/images/mapicons/transport_fuel.glow.20.png new file mode 100644 index 00000000..def6e3ef Binary files /dev/null and b/website/images/mapicons/transport_fuel.glow.20.png differ diff --git a/website/images/mapicons/transport_fuel.glow.24.png b/website/images/mapicons/transport_fuel.glow.24.png new file mode 100644 index 00000000..fe04d78d Binary files /dev/null and b/website/images/mapicons/transport_fuel.glow.24.png differ diff --git a/website/images/mapicons/transport_fuel.glow.32.png b/website/images/mapicons/transport_fuel.glow.32.png new file mode 100644 index 00000000..ea4f42ea Binary files /dev/null and b/website/images/mapicons/transport_fuel.glow.32.png differ diff --git a/website/images/mapicons/transport_fuel.n.12.png b/website/images/mapicons/transport_fuel.n.12.png new file mode 100644 index 00000000..f9254d1f Binary files /dev/null and b/website/images/mapicons/transport_fuel.n.12.png differ diff --git a/website/images/mapicons/transport_fuel.n.16.png b/website/images/mapicons/transport_fuel.n.16.png new file mode 100644 index 00000000..1571502e Binary files /dev/null and b/website/images/mapicons/transport_fuel.n.16.png differ diff --git a/website/images/mapicons/transport_fuel.n.20.png b/website/images/mapicons/transport_fuel.n.20.png new file mode 100644 index 00000000..da576237 Binary files /dev/null and b/website/images/mapicons/transport_fuel.n.20.png differ diff --git a/website/images/mapicons/transport_fuel.n.24.png b/website/images/mapicons/transport_fuel.n.24.png new file mode 100644 index 00000000..736e943b Binary files /dev/null and b/website/images/mapicons/transport_fuel.n.24.png differ diff --git a/website/images/mapicons/transport_fuel.n.32.png b/website/images/mapicons/transport_fuel.n.32.png new file mode 100644 index 00000000..a93fe6d3 Binary files /dev/null and b/website/images/mapicons/transport_fuel.n.32.png differ diff --git a/website/images/mapicons/transport_fuel.p.12.png b/website/images/mapicons/transport_fuel.p.12.png new file mode 100644 index 00000000..5e372f74 Binary files /dev/null and b/website/images/mapicons/transport_fuel.p.12.png differ diff --git a/website/images/mapicons/transport_fuel.p.16.png b/website/images/mapicons/transport_fuel.p.16.png new file mode 100644 index 00000000..84e65eb8 Binary files /dev/null and b/website/images/mapicons/transport_fuel.p.16.png differ diff --git a/website/images/mapicons/transport_fuel.p.20.png b/website/images/mapicons/transport_fuel.p.20.png new file mode 100644 index 00000000..eec119a1 Binary files /dev/null and b/website/images/mapicons/transport_fuel.p.20.png differ diff --git a/website/images/mapicons/transport_fuel.p.24.png b/website/images/mapicons/transport_fuel.p.24.png new file mode 100644 index 00000000..e5ff4e7b Binary files /dev/null and b/website/images/mapicons/transport_fuel.p.24.png differ diff --git a/website/images/mapicons/transport_fuel.p.32.png b/website/images/mapicons/transport_fuel.p.32.png new file mode 100644 index 00000000..36d7a375 Binary files /dev/null and b/website/images/mapicons/transport_fuel.p.32.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.glow.12.png b/website/images/mapicons/transport_fuel_lpg.glow.12.png new file mode 100644 index 00000000..f1626ecf Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.glow.12.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.glow.16.png b/website/images/mapicons/transport_fuel_lpg.glow.16.png new file mode 100644 index 00000000..7b9cf632 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.glow.16.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.glow.20.png b/website/images/mapicons/transport_fuel_lpg.glow.20.png new file mode 100644 index 00000000..9f6bd7c0 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.glow.20.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.glow.24.png b/website/images/mapicons/transport_fuel_lpg.glow.24.png new file mode 100644 index 00000000..33ab8769 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.glow.24.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.glow.32.png b/website/images/mapicons/transport_fuel_lpg.glow.32.png new file mode 100644 index 00000000..64755259 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.glow.32.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.n.12.png b/website/images/mapicons/transport_fuel_lpg.n.12.png new file mode 100644 index 00000000..d0a8d095 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.n.12.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.n.16.png b/website/images/mapicons/transport_fuel_lpg.n.16.png new file mode 100644 index 00000000..cde8499a Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.n.16.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.n.20.png b/website/images/mapicons/transport_fuel_lpg.n.20.png new file mode 100644 index 00000000..e63f3635 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.n.20.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.n.24.png b/website/images/mapicons/transport_fuel_lpg.n.24.png new file mode 100644 index 00000000..35649f2e Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.n.24.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.n.32.png b/website/images/mapicons/transport_fuel_lpg.n.32.png new file mode 100644 index 00000000..4add9460 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.n.32.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.p.12.png b/website/images/mapicons/transport_fuel_lpg.p.12.png new file mode 100644 index 00000000..1ce4c127 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.p.12.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.p.16.png b/website/images/mapicons/transport_fuel_lpg.p.16.png new file mode 100644 index 00000000..2241ffd1 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.p.16.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.p.20.png b/website/images/mapicons/transport_fuel_lpg.p.20.png new file mode 100644 index 00000000..76d9b4c8 Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.p.20.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.p.24.png b/website/images/mapicons/transport_fuel_lpg.p.24.png new file mode 100644 index 00000000..a7fa72da Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.p.24.png differ diff --git a/website/images/mapicons/transport_fuel_lpg.p.32.png b/website/images/mapicons/transport_fuel_lpg.p.32.png new file mode 100644 index 00000000..25a8ed3e Binary files /dev/null and b/website/images/mapicons/transport_fuel_lpg.p.32.png differ diff --git a/website/images/mapicons/transport_lighthouse.glow.12.png b/website/images/mapicons/transport_lighthouse.glow.12.png new file mode 100644 index 00000000..cd36ab72 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.glow.12.png differ diff --git a/website/images/mapicons/transport_lighthouse.glow.16.png b/website/images/mapicons/transport_lighthouse.glow.16.png new file mode 100644 index 00000000..db48904f Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.glow.16.png differ diff --git a/website/images/mapicons/transport_lighthouse.glow.20.png b/website/images/mapicons/transport_lighthouse.glow.20.png new file mode 100644 index 00000000..62a44981 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.glow.20.png differ diff --git a/website/images/mapicons/transport_lighthouse.glow.24.png b/website/images/mapicons/transport_lighthouse.glow.24.png new file mode 100644 index 00000000..a001115f Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.glow.24.png differ diff --git a/website/images/mapicons/transport_lighthouse.glow.32.png b/website/images/mapicons/transport_lighthouse.glow.32.png new file mode 100644 index 00000000..269b0be3 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.glow.32.png differ diff --git a/website/images/mapicons/transport_lighthouse.n.12.png b/website/images/mapicons/transport_lighthouse.n.12.png new file mode 100644 index 00000000..50c39969 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.n.12.png differ diff --git a/website/images/mapicons/transport_lighthouse.n.16.png b/website/images/mapicons/transport_lighthouse.n.16.png new file mode 100644 index 00000000..649c5c7b Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.n.16.png differ diff --git a/website/images/mapicons/transport_lighthouse.n.20.png b/website/images/mapicons/transport_lighthouse.n.20.png new file mode 100644 index 00000000..512af590 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.n.20.png differ diff --git a/website/images/mapicons/transport_lighthouse.n.24.png b/website/images/mapicons/transport_lighthouse.n.24.png new file mode 100644 index 00000000..d1e2741b Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.n.24.png differ diff --git a/website/images/mapicons/transport_lighthouse.n.32.png b/website/images/mapicons/transport_lighthouse.n.32.png new file mode 100644 index 00000000..7e8a3e81 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.n.32.png differ diff --git a/website/images/mapicons/transport_lighthouse.p.12.png b/website/images/mapicons/transport_lighthouse.p.12.png new file mode 100644 index 00000000..697e18c2 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.p.12.png differ diff --git a/website/images/mapicons/transport_lighthouse.p.16.png b/website/images/mapicons/transport_lighthouse.p.16.png new file mode 100644 index 00000000..adc6a18d Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.p.16.png differ diff --git a/website/images/mapicons/transport_lighthouse.p.20.png b/website/images/mapicons/transport_lighthouse.p.20.png new file mode 100644 index 00000000..3ed4e6d2 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.p.20.png differ diff --git a/website/images/mapicons/transport_lighthouse.p.24.png b/website/images/mapicons/transport_lighthouse.p.24.png new file mode 100644 index 00000000..ea740f61 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.p.24.png differ diff --git a/website/images/mapicons/transport_lighthouse.p.32.png b/website/images/mapicons/transport_lighthouse.p.32.png new file mode 100644 index 00000000..5f499e70 Binary files /dev/null and b/website/images/mapicons/transport_lighthouse.p.32.png differ diff --git a/website/images/mapicons/transport_marina.glow.12.png b/website/images/mapicons/transport_marina.glow.12.png new file mode 100644 index 00000000..d3ee9ab2 Binary files /dev/null and b/website/images/mapicons/transport_marina.glow.12.png differ diff --git a/website/images/mapicons/transport_marina.glow.16.png b/website/images/mapicons/transport_marina.glow.16.png new file mode 100644 index 00000000..d8af7c4b Binary files /dev/null and b/website/images/mapicons/transport_marina.glow.16.png differ diff --git a/website/images/mapicons/transport_marina.glow.20.png b/website/images/mapicons/transport_marina.glow.20.png new file mode 100644 index 00000000..75cabb5b Binary files /dev/null and b/website/images/mapicons/transport_marina.glow.20.png differ diff --git a/website/images/mapicons/transport_marina.glow.24.png b/website/images/mapicons/transport_marina.glow.24.png new file mode 100644 index 00000000..848fdf12 Binary files /dev/null and b/website/images/mapicons/transport_marina.glow.24.png differ diff --git a/website/images/mapicons/transport_marina.glow.32.png b/website/images/mapicons/transport_marina.glow.32.png new file mode 100644 index 00000000..2c66b5d3 Binary files /dev/null and b/website/images/mapicons/transport_marina.glow.32.png differ diff --git a/website/images/mapicons/transport_marina.n.12.png b/website/images/mapicons/transport_marina.n.12.png new file mode 100644 index 00000000..39949ad7 Binary files /dev/null and b/website/images/mapicons/transport_marina.n.12.png differ diff --git a/website/images/mapicons/transport_marina.n.16.png b/website/images/mapicons/transport_marina.n.16.png new file mode 100644 index 00000000..79600563 Binary files /dev/null and b/website/images/mapicons/transport_marina.n.16.png differ diff --git a/website/images/mapicons/transport_marina.n.20.png b/website/images/mapicons/transport_marina.n.20.png new file mode 100644 index 00000000..d39ba851 Binary files /dev/null and b/website/images/mapicons/transport_marina.n.20.png differ diff --git a/website/images/mapicons/transport_marina.n.24.png b/website/images/mapicons/transport_marina.n.24.png new file mode 100644 index 00000000..5024e3e8 Binary files /dev/null and b/website/images/mapicons/transport_marina.n.24.png differ diff --git a/website/images/mapicons/transport_marina.n.32.png b/website/images/mapicons/transport_marina.n.32.png new file mode 100644 index 00000000..51efef12 Binary files /dev/null and b/website/images/mapicons/transport_marina.n.32.png differ diff --git a/website/images/mapicons/transport_marina.p.12.png b/website/images/mapicons/transport_marina.p.12.png new file mode 100644 index 00000000..e424861a Binary files /dev/null and b/website/images/mapicons/transport_marina.p.12.png differ diff --git a/website/images/mapicons/transport_marina.p.16.png b/website/images/mapicons/transport_marina.p.16.png new file mode 100644 index 00000000..35bac1f9 Binary files /dev/null and b/website/images/mapicons/transport_marina.p.16.png differ diff --git a/website/images/mapicons/transport_marina.p.20.png b/website/images/mapicons/transport_marina.p.20.png new file mode 100644 index 00000000..6fad80c5 Binary files /dev/null and b/website/images/mapicons/transport_marina.p.20.png differ diff --git a/website/images/mapicons/transport_marina.p.24.png b/website/images/mapicons/transport_marina.p.24.png new file mode 100644 index 00000000..36b6a342 Binary files /dev/null and b/website/images/mapicons/transport_marina.p.24.png differ diff --git a/website/images/mapicons/transport_marina.p.32.png b/website/images/mapicons/transport_marina.p.32.png new file mode 100644 index 00000000..95737eb8 Binary files /dev/null and b/website/images/mapicons/transport_marina.p.32.png differ diff --git a/website/images/mapicons/transport_parking.glow.12.png b/website/images/mapicons/transport_parking.glow.12.png new file mode 100644 index 00000000..5f4bb28b Binary files /dev/null and b/website/images/mapicons/transport_parking.glow.12.png differ diff --git a/website/images/mapicons/transport_parking.glow.16.png b/website/images/mapicons/transport_parking.glow.16.png new file mode 100644 index 00000000..17b12f99 Binary files /dev/null and b/website/images/mapicons/transport_parking.glow.16.png differ diff --git a/website/images/mapicons/transport_parking.glow.20.png b/website/images/mapicons/transport_parking.glow.20.png new file mode 100644 index 00000000..a8725a26 Binary files /dev/null and b/website/images/mapicons/transport_parking.glow.20.png differ diff --git a/website/images/mapicons/transport_parking.glow.24.png b/website/images/mapicons/transport_parking.glow.24.png new file mode 100644 index 00000000..4b34dcee Binary files /dev/null and b/website/images/mapicons/transport_parking.glow.24.png differ diff --git a/website/images/mapicons/transport_parking.glow.32.png b/website/images/mapicons/transport_parking.glow.32.png new file mode 100644 index 00000000..46dbee88 Binary files /dev/null and b/website/images/mapicons/transport_parking.glow.32.png differ diff --git a/website/images/mapicons/transport_parking.n.12.png b/website/images/mapicons/transport_parking.n.12.png new file mode 100644 index 00000000..7d954a8e Binary files /dev/null and b/website/images/mapicons/transport_parking.n.12.png differ diff --git a/website/images/mapicons/transport_parking.n.16.png b/website/images/mapicons/transport_parking.n.16.png new file mode 100644 index 00000000..938b54c6 Binary files /dev/null and b/website/images/mapicons/transport_parking.n.16.png differ diff --git a/website/images/mapicons/transport_parking.n.20.png b/website/images/mapicons/transport_parking.n.20.png new file mode 100644 index 00000000..49c29306 Binary files /dev/null and b/website/images/mapicons/transport_parking.n.20.png differ diff --git a/website/images/mapicons/transport_parking.n.24.png b/website/images/mapicons/transport_parking.n.24.png new file mode 100644 index 00000000..5ca0ad0f Binary files /dev/null and b/website/images/mapicons/transport_parking.n.24.png differ diff --git a/website/images/mapicons/transport_parking.n.32.png b/website/images/mapicons/transport_parking.n.32.png new file mode 100644 index 00000000..ffb1e931 Binary files /dev/null and b/website/images/mapicons/transport_parking.n.32.png differ diff --git a/website/images/mapicons/transport_parking.p.12.png b/website/images/mapicons/transport_parking.p.12.png new file mode 100644 index 00000000..0661a514 Binary files /dev/null and b/website/images/mapicons/transport_parking.p.12.png differ diff --git a/website/images/mapicons/transport_parking.p.16.png b/website/images/mapicons/transport_parking.p.16.png new file mode 100644 index 00000000..64750417 Binary files /dev/null and b/website/images/mapicons/transport_parking.p.16.png differ diff --git a/website/images/mapicons/transport_parking.p.20.png b/website/images/mapicons/transport_parking.p.20.png new file mode 100644 index 00000000..91920e65 Binary files /dev/null and b/website/images/mapicons/transport_parking.p.20.png differ diff --git a/website/images/mapicons/transport_parking.p.24.png b/website/images/mapicons/transport_parking.p.24.png new file mode 100644 index 00000000..a87f40c3 Binary files /dev/null and b/website/images/mapicons/transport_parking.p.24.png differ diff --git a/website/images/mapicons/transport_parking.p.32.png b/website/images/mapicons/transport_parking.p.32.png new file mode 100644 index 00000000..19068b3b Binary files /dev/null and b/website/images/mapicons/transport_parking.p.32.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.glow.12.png b/website/images/mapicons/transport_parking_bicycle.glow.12.png new file mode 100644 index 00000000..1af73461 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.glow.16.png b/website/images/mapicons/transport_parking_bicycle.glow.16.png new file mode 100644 index 00000000..1f6099ef Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.glow.20.png b/website/images/mapicons/transport_parking_bicycle.glow.20.png new file mode 100644 index 00000000..4b50b549 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.glow.24.png b/website/images/mapicons/transport_parking_bicycle.glow.24.png new file mode 100644 index 00000000..dfd394d9 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.glow.32.png b/website/images/mapicons/transport_parking_bicycle.glow.32.png new file mode 100644 index 00000000..0f38812c Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.n.12.png b/website/images/mapicons/transport_parking_bicycle.n.12.png new file mode 100644 index 00000000..48aaec34 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.n.12.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.n.16.png b/website/images/mapicons/transport_parking_bicycle.n.16.png new file mode 100644 index 00000000..dfd7f83d Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.n.16.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.n.20.png b/website/images/mapicons/transport_parking_bicycle.n.20.png new file mode 100644 index 00000000..0904fa5c Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.n.20.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.n.24.png b/website/images/mapicons/transport_parking_bicycle.n.24.png new file mode 100644 index 00000000..42f2e54c Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.n.24.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.n.32.png b/website/images/mapicons/transport_parking_bicycle.n.32.png new file mode 100644 index 00000000..ed63a966 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.n.32.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.p.12.png b/website/images/mapicons/transport_parking_bicycle.p.12.png new file mode 100644 index 00000000..65d9b483 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.p.12.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.p.16.png b/website/images/mapicons/transport_parking_bicycle.p.16.png new file mode 100644 index 00000000..ff988ba5 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.p.16.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.p.20.png b/website/images/mapicons/transport_parking_bicycle.p.20.png new file mode 100644 index 00000000..92b59caa Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.p.20.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.p.24.png b/website/images/mapicons/transport_parking_bicycle.p.24.png new file mode 100644 index 00000000..d25cb9fd Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.p.24.png differ diff --git a/website/images/mapicons/transport_parking_bicycle.p.32.png b/website/images/mapicons/transport_parking_bicycle.p.32.png new file mode 100644 index 00000000..4ee05e82 Binary files /dev/null and b/website/images/mapicons/transport_parking_bicycle.p.32.png differ diff --git a/website/images/mapicons/transport_parking_car.glow.12.png b/website/images/mapicons/transport_parking_car.glow.12.png new file mode 100644 index 00000000..58099358 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_car.glow.16.png b/website/images/mapicons/transport_parking_car.glow.16.png new file mode 100644 index 00000000..8835904f Binary files /dev/null and b/website/images/mapicons/transport_parking_car.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_car.glow.20.png b/website/images/mapicons/transport_parking_car.glow.20.png new file mode 100644 index 00000000..fe68bffa Binary files /dev/null and b/website/images/mapicons/transport_parking_car.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_car.glow.24.png b/website/images/mapicons/transport_parking_car.glow.24.png new file mode 100644 index 00000000..93e37dcf Binary files /dev/null and b/website/images/mapicons/transport_parking_car.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_car.glow.32.png b/website/images/mapicons/transport_parking_car.glow.32.png new file mode 100644 index 00000000..961475ae Binary files /dev/null and b/website/images/mapicons/transport_parking_car.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_car.n.12.png b/website/images/mapicons/transport_parking_car.n.12.png new file mode 100644 index 00000000..a682042d Binary files /dev/null and b/website/images/mapicons/transport_parking_car.n.12.png differ diff --git a/website/images/mapicons/transport_parking_car.n.16.png b/website/images/mapicons/transport_parking_car.n.16.png new file mode 100644 index 00000000..567c4f55 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.n.16.png differ diff --git a/website/images/mapicons/transport_parking_car.n.20.png b/website/images/mapicons/transport_parking_car.n.20.png new file mode 100644 index 00000000..a2be5c1a Binary files /dev/null and b/website/images/mapicons/transport_parking_car.n.20.png differ diff --git a/website/images/mapicons/transport_parking_car.n.24.png b/website/images/mapicons/transport_parking_car.n.24.png new file mode 100644 index 00000000..6aa900cb Binary files /dev/null and b/website/images/mapicons/transport_parking_car.n.24.png differ diff --git a/website/images/mapicons/transport_parking_car.n.32.png b/website/images/mapicons/transport_parking_car.n.32.png new file mode 100644 index 00000000..7106deca Binary files /dev/null and b/website/images/mapicons/transport_parking_car.n.32.png differ diff --git a/website/images/mapicons/transport_parking_car.p.12.png b/website/images/mapicons/transport_parking_car.p.12.png new file mode 100644 index 00000000..aba4e614 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.p.12.png differ diff --git a/website/images/mapicons/transport_parking_car.p.16.png b/website/images/mapicons/transport_parking_car.p.16.png new file mode 100644 index 00000000..31dd829e Binary files /dev/null and b/website/images/mapicons/transport_parking_car.p.16.png differ diff --git a/website/images/mapicons/transport_parking_car.p.20.png b/website/images/mapicons/transport_parking_car.p.20.png new file mode 100644 index 00000000..9a701c31 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.p.20.png differ diff --git a/website/images/mapicons/transport_parking_car.p.24.png b/website/images/mapicons/transport_parking_car.p.24.png new file mode 100644 index 00000000..e0d6dcb8 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.p.24.png differ diff --git a/website/images/mapicons/transport_parking_car.p.32.png b/website/images/mapicons/transport_parking_car.p.32.png new file mode 100644 index 00000000..ccf3d3f2 Binary files /dev/null and b/website/images/mapicons/transport_parking_car.p.32.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.glow.12.png b/website/images/mapicons/transport_parking_car_paid.glow.12.png new file mode 100644 index 00000000..3a809613 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.glow.16.png b/website/images/mapicons/transport_parking_car_paid.glow.16.png new file mode 100644 index 00000000..00663ba6 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.glow.20.png b/website/images/mapicons/transport_parking_car_paid.glow.20.png new file mode 100644 index 00000000..a578fcc5 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.glow.24.png b/website/images/mapicons/transport_parking_car_paid.glow.24.png new file mode 100644 index 00000000..017cf002 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.glow.32.png b/website/images/mapicons/transport_parking_car_paid.glow.32.png new file mode 100644 index 00000000..f9eb86e7 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.n.12.png b/website/images/mapicons/transport_parking_car_paid.n.12.png new file mode 100644 index 00000000..583b9d64 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.n.12.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.n.16.png b/website/images/mapicons/transport_parking_car_paid.n.16.png new file mode 100644 index 00000000..699552c6 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.n.16.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.n.20.png b/website/images/mapicons/transport_parking_car_paid.n.20.png new file mode 100644 index 00000000..28cb4e78 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.n.20.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.n.24.png b/website/images/mapicons/transport_parking_car_paid.n.24.png new file mode 100644 index 00000000..ce4e2b02 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.n.24.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.n.32.png b/website/images/mapicons/transport_parking_car_paid.n.32.png new file mode 100644 index 00000000..2aa17b55 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.n.32.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.p.12.png b/website/images/mapicons/transport_parking_car_paid.p.12.png new file mode 100644 index 00000000..313eea64 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.p.12.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.p.16.png b/website/images/mapicons/transport_parking_car_paid.p.16.png new file mode 100644 index 00000000..70a32643 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.p.16.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.p.20.png b/website/images/mapicons/transport_parking_car_paid.p.20.png new file mode 100644 index 00000000..2177fcfa Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.p.20.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.p.24.png b/website/images/mapicons/transport_parking_car_paid.p.24.png new file mode 100644 index 00000000..567d6eae Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.p.24.png differ diff --git a/website/images/mapicons/transport_parking_car_paid.p.32.png b/website/images/mapicons/transport_parking_car_paid.p.32.png new file mode 100644 index 00000000..c8740641 Binary files /dev/null and b/website/images/mapicons/transport_parking_car_paid.p.32.png differ diff --git a/website/images/mapicons/transport_parking_disabled.glow.12.png b/website/images/mapicons/transport_parking_disabled.glow.12.png new file mode 100644 index 00000000..a10f0d87 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_disabled.glow.16.png b/website/images/mapicons/transport_parking_disabled.glow.16.png new file mode 100644 index 00000000..a2cf5328 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_disabled.glow.20.png b/website/images/mapicons/transport_parking_disabled.glow.20.png new file mode 100644 index 00000000..15ab419b Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_disabled.glow.24.png b/website/images/mapicons/transport_parking_disabled.glow.24.png new file mode 100644 index 00000000..501c1b04 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_disabled.glow.32.png b/website/images/mapicons/transport_parking_disabled.glow.32.png new file mode 100644 index 00000000..25f8c5c1 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_disabled.n.12.png b/website/images/mapicons/transport_parking_disabled.n.12.png new file mode 100644 index 00000000..a8e26236 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.n.12.png differ diff --git a/website/images/mapicons/transport_parking_disabled.n.16.png b/website/images/mapicons/transport_parking_disabled.n.16.png new file mode 100644 index 00000000..a2c57368 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.n.16.png differ diff --git a/website/images/mapicons/transport_parking_disabled.n.20.png b/website/images/mapicons/transport_parking_disabled.n.20.png new file mode 100644 index 00000000..bff00fbf Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.n.20.png differ diff --git a/website/images/mapicons/transport_parking_disabled.n.24.png b/website/images/mapicons/transport_parking_disabled.n.24.png new file mode 100644 index 00000000..1d5f13f6 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.n.24.png differ diff --git a/website/images/mapicons/transport_parking_disabled.n.32.png b/website/images/mapicons/transport_parking_disabled.n.32.png new file mode 100644 index 00000000..3b866db4 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.n.32.png differ diff --git a/website/images/mapicons/transport_parking_disabled.p.12.png b/website/images/mapicons/transport_parking_disabled.p.12.png new file mode 100644 index 00000000..ffda60f3 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.p.12.png differ diff --git a/website/images/mapicons/transport_parking_disabled.p.16.png b/website/images/mapicons/transport_parking_disabled.p.16.png new file mode 100644 index 00000000..926cc453 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.p.16.png differ diff --git a/website/images/mapicons/transport_parking_disabled.p.20.png b/website/images/mapicons/transport_parking_disabled.p.20.png new file mode 100644 index 00000000..c79b11d0 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.p.20.png differ diff --git a/website/images/mapicons/transport_parking_disabled.p.24.png b/website/images/mapicons/transport_parking_disabled.p.24.png new file mode 100644 index 00000000..66ee261f Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.p.24.png differ diff --git a/website/images/mapicons/transport_parking_disabled.p.32.png b/website/images/mapicons/transport_parking_disabled.p.32.png new file mode 100644 index 00000000..a7fdd408 Binary files /dev/null and b/website/images/mapicons/transport_parking_disabled.p.32.png differ diff --git a/website/images/mapicons/transport_parking_private.glow.12.png b/website/images/mapicons/transport_parking_private.glow.12.png new file mode 100644 index 00000000..6ae8b257 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_private.glow.16.png b/website/images/mapicons/transport_parking_private.glow.16.png new file mode 100644 index 00000000..620aa816 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_private.glow.20.png b/website/images/mapicons/transport_parking_private.glow.20.png new file mode 100644 index 00000000..73141b46 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_private.glow.24.png b/website/images/mapicons/transport_parking_private.glow.24.png new file mode 100644 index 00000000..944bea14 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_private.glow.32.png b/website/images/mapicons/transport_parking_private.glow.32.png new file mode 100644 index 00000000..20f60b9e Binary files /dev/null and b/website/images/mapicons/transport_parking_private.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_private.n.12.png b/website/images/mapicons/transport_parking_private.n.12.png new file mode 100644 index 00000000..4104e3f3 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.n.12.png differ diff --git a/website/images/mapicons/transport_parking_private.n.16.png b/website/images/mapicons/transport_parking_private.n.16.png new file mode 100644 index 00000000..95b6eb42 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.n.16.png differ diff --git a/website/images/mapicons/transport_parking_private.n.20.png b/website/images/mapicons/transport_parking_private.n.20.png new file mode 100644 index 00000000..df6a31be Binary files /dev/null and b/website/images/mapicons/transport_parking_private.n.20.png differ diff --git a/website/images/mapicons/transport_parking_private.n.24.png b/website/images/mapicons/transport_parking_private.n.24.png new file mode 100644 index 00000000..83421841 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.n.24.png differ diff --git a/website/images/mapicons/transport_parking_private.n.32.png b/website/images/mapicons/transport_parking_private.n.32.png new file mode 100644 index 00000000..b5c9237f Binary files /dev/null and b/website/images/mapicons/transport_parking_private.n.32.png differ diff --git a/website/images/mapicons/transport_parking_private.p.12.png b/website/images/mapicons/transport_parking_private.p.12.png new file mode 100644 index 00000000..f0d3d3c1 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.p.12.png differ diff --git a/website/images/mapicons/transport_parking_private.p.16.png b/website/images/mapicons/transport_parking_private.p.16.png new file mode 100644 index 00000000..ec1f1c36 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.p.16.png differ diff --git a/website/images/mapicons/transport_parking_private.p.20.png b/website/images/mapicons/transport_parking_private.p.20.png new file mode 100644 index 00000000..f87ea023 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.p.20.png differ diff --git a/website/images/mapicons/transport_parking_private.p.24.png b/website/images/mapicons/transport_parking_private.p.24.png new file mode 100644 index 00000000..946e4654 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.p.24.png differ diff --git a/website/images/mapicons/transport_parking_private.p.32.png b/website/images/mapicons/transport_parking_private.p.32.png new file mode 100644 index 00000000..5bc002e5 Binary files /dev/null and b/website/images/mapicons/transport_parking_private.p.32.png differ diff --git a/website/images/mapicons/transport_parking_private2.glow.12.png b/website/images/mapicons/transport_parking_private2.glow.12.png new file mode 100644 index 00000000..61b82b18 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_private2.glow.16.png b/website/images/mapicons/transport_parking_private2.glow.16.png new file mode 100644 index 00000000..b28db6e8 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_private2.glow.20.png b/website/images/mapicons/transport_parking_private2.glow.20.png new file mode 100644 index 00000000..0664deb5 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_private2.glow.24.png b/website/images/mapicons/transport_parking_private2.glow.24.png new file mode 100644 index 00000000..a5837c36 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_private2.glow.32.png b/website/images/mapicons/transport_parking_private2.glow.32.png new file mode 100644 index 00000000..67366909 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_private2.n.12.png b/website/images/mapicons/transport_parking_private2.n.12.png new file mode 100644 index 00000000..f00e38e7 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.n.12.png differ diff --git a/website/images/mapicons/transport_parking_private2.n.16.png b/website/images/mapicons/transport_parking_private2.n.16.png new file mode 100644 index 00000000..a6f3a3d9 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.n.16.png differ diff --git a/website/images/mapicons/transport_parking_private2.n.20.png b/website/images/mapicons/transport_parking_private2.n.20.png new file mode 100644 index 00000000..0a0dc812 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.n.20.png differ diff --git a/website/images/mapicons/transport_parking_private2.n.24.png b/website/images/mapicons/transport_parking_private2.n.24.png new file mode 100644 index 00000000..47df1d4b Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.n.24.png differ diff --git a/website/images/mapicons/transport_parking_private2.n.32.png b/website/images/mapicons/transport_parking_private2.n.32.png new file mode 100644 index 00000000..b87eea06 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.n.32.png differ diff --git a/website/images/mapicons/transport_parking_private2.p.12.png b/website/images/mapicons/transport_parking_private2.p.12.png new file mode 100644 index 00000000..768f2d25 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.p.12.png differ diff --git a/website/images/mapicons/transport_parking_private2.p.16.png b/website/images/mapicons/transport_parking_private2.p.16.png new file mode 100644 index 00000000..756ff7c9 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.p.16.png differ diff --git a/website/images/mapicons/transport_parking_private2.p.20.png b/website/images/mapicons/transport_parking_private2.p.20.png new file mode 100644 index 00000000..1e6edeb2 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.p.20.png differ diff --git a/website/images/mapicons/transport_parking_private2.p.24.png b/website/images/mapicons/transport_parking_private2.p.24.png new file mode 100644 index 00000000..d749863f Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.p.24.png differ diff --git a/website/images/mapicons/transport_parking_private2.p.32.png b/website/images/mapicons/transport_parking_private2.p.32.png new file mode 100644 index 00000000..2dffdbb6 Binary files /dev/null and b/website/images/mapicons/transport_parking_private2.p.32.png differ diff --git a/website/images/mapicons/transport_parking_private3.glow.12.png b/website/images/mapicons/transport_parking_private3.glow.12.png new file mode 100644 index 00000000..7753078d Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.glow.12.png differ diff --git a/website/images/mapicons/transport_parking_private3.glow.16.png b/website/images/mapicons/transport_parking_private3.glow.16.png new file mode 100644 index 00000000..a50e51da Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.glow.16.png differ diff --git a/website/images/mapicons/transport_parking_private3.glow.20.png b/website/images/mapicons/transport_parking_private3.glow.20.png new file mode 100644 index 00000000..ea8067e6 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.glow.20.png differ diff --git a/website/images/mapicons/transport_parking_private3.glow.24.png b/website/images/mapicons/transport_parking_private3.glow.24.png new file mode 100644 index 00000000..1f1e0886 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.glow.24.png differ diff --git a/website/images/mapicons/transport_parking_private3.glow.32.png b/website/images/mapicons/transport_parking_private3.glow.32.png new file mode 100644 index 00000000..e4a97a1b Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.glow.32.png differ diff --git a/website/images/mapicons/transport_parking_private3.n.12.png b/website/images/mapicons/transport_parking_private3.n.12.png new file mode 100644 index 00000000..d42381a4 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.n.12.png differ diff --git a/website/images/mapicons/transport_parking_private3.n.16.png b/website/images/mapicons/transport_parking_private3.n.16.png new file mode 100644 index 00000000..c38e9de3 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.n.16.png differ diff --git a/website/images/mapicons/transport_parking_private3.n.20.png b/website/images/mapicons/transport_parking_private3.n.20.png new file mode 100644 index 00000000..92359117 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.n.20.png differ diff --git a/website/images/mapicons/transport_parking_private3.n.24.png b/website/images/mapicons/transport_parking_private3.n.24.png new file mode 100644 index 00000000..38e0d86b Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.n.24.png differ diff --git a/website/images/mapicons/transport_parking_private3.n.32.png b/website/images/mapicons/transport_parking_private3.n.32.png new file mode 100644 index 00000000..da3f6b06 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.n.32.png differ diff --git a/website/images/mapicons/transport_parking_private3.p.12.png b/website/images/mapicons/transport_parking_private3.p.12.png new file mode 100644 index 00000000..ce3c0c00 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.p.12.png differ diff --git a/website/images/mapicons/transport_parking_private3.p.16.png b/website/images/mapicons/transport_parking_private3.p.16.png new file mode 100644 index 00000000..d38cca9b Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.p.16.png differ diff --git a/website/images/mapicons/transport_parking_private3.p.20.png b/website/images/mapicons/transport_parking_private3.p.20.png new file mode 100644 index 00000000..531b1540 Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.p.20.png differ diff --git a/website/images/mapicons/transport_parking_private3.p.24.png b/website/images/mapicons/transport_parking_private3.p.24.png new file mode 100644 index 00000000..66bb1ecb Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.p.24.png differ diff --git a/website/images/mapicons/transport_parking_private3.p.32.png b/website/images/mapicons/transport_parking_private3.p.32.png new file mode 100644 index 00000000..66de231f Binary files /dev/null and b/website/images/mapicons/transport_parking_private3.p.32.png differ diff --git a/website/images/mapicons/transport_port.glow.12.png b/website/images/mapicons/transport_port.glow.12.png new file mode 100644 index 00000000..160b9f4d Binary files /dev/null and b/website/images/mapicons/transport_port.glow.12.png differ diff --git a/website/images/mapicons/transport_port.glow.16.png b/website/images/mapicons/transport_port.glow.16.png new file mode 100644 index 00000000..79e972b3 Binary files /dev/null and b/website/images/mapicons/transport_port.glow.16.png differ diff --git a/website/images/mapicons/transport_port.glow.20.png b/website/images/mapicons/transport_port.glow.20.png new file mode 100644 index 00000000..144286a1 Binary files /dev/null and b/website/images/mapicons/transport_port.glow.20.png differ diff --git a/website/images/mapicons/transport_port.glow.24.png b/website/images/mapicons/transport_port.glow.24.png new file mode 100644 index 00000000..f9960cb7 Binary files /dev/null and b/website/images/mapicons/transport_port.glow.24.png differ diff --git a/website/images/mapicons/transport_port.glow.32.png b/website/images/mapicons/transport_port.glow.32.png new file mode 100644 index 00000000..a424a76e Binary files /dev/null and b/website/images/mapicons/transport_port.glow.32.png differ diff --git a/website/images/mapicons/transport_port.n.12.png b/website/images/mapicons/transport_port.n.12.png new file mode 100644 index 00000000..bad223d0 Binary files /dev/null and b/website/images/mapicons/transport_port.n.12.png differ diff --git a/website/images/mapicons/transport_port.n.16.png b/website/images/mapicons/transport_port.n.16.png new file mode 100644 index 00000000..471c4daa Binary files /dev/null and b/website/images/mapicons/transport_port.n.16.png differ diff --git a/website/images/mapicons/transport_port.n.20.png b/website/images/mapicons/transport_port.n.20.png new file mode 100644 index 00000000..4f37a0df Binary files /dev/null and b/website/images/mapicons/transport_port.n.20.png differ diff --git a/website/images/mapicons/transport_port.n.24.png b/website/images/mapicons/transport_port.n.24.png new file mode 100644 index 00000000..6e5f6e19 Binary files /dev/null and b/website/images/mapicons/transport_port.n.24.png differ diff --git a/website/images/mapicons/transport_port.n.32.png b/website/images/mapicons/transport_port.n.32.png new file mode 100644 index 00000000..30752081 Binary files /dev/null and b/website/images/mapicons/transport_port.n.32.png differ diff --git a/website/images/mapicons/transport_port.p.12.png b/website/images/mapicons/transport_port.p.12.png new file mode 100644 index 00000000..a267b19c Binary files /dev/null and b/website/images/mapicons/transport_port.p.12.png differ diff --git a/website/images/mapicons/transport_port.p.16.png b/website/images/mapicons/transport_port.p.16.png new file mode 100644 index 00000000..b0b1c147 Binary files /dev/null and b/website/images/mapicons/transport_port.p.16.png differ diff --git a/website/images/mapicons/transport_port.p.20.png b/website/images/mapicons/transport_port.p.20.png new file mode 100644 index 00000000..d2e7b3ba Binary files /dev/null and b/website/images/mapicons/transport_port.p.20.png differ diff --git a/website/images/mapicons/transport_port.p.24.png b/website/images/mapicons/transport_port.p.24.png new file mode 100644 index 00000000..f22deadd Binary files /dev/null and b/website/images/mapicons/transport_port.p.24.png differ diff --git a/website/images/mapicons/transport_port.p.32.png b/website/images/mapicons/transport_port.p.32.png new file mode 100644 index 00000000..e12e1ccb Binary files /dev/null and b/website/images/mapicons/transport_port.p.32.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.glow.12.png b/website/images/mapicons/transport_rental_bicycle.glow.12.png new file mode 100644 index 00000000..db9cfc65 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.glow.12.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.glow.16.png b/website/images/mapicons/transport_rental_bicycle.glow.16.png new file mode 100644 index 00000000..ef43cdb7 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.glow.16.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.glow.20.png b/website/images/mapicons/transport_rental_bicycle.glow.20.png new file mode 100644 index 00000000..fb485da6 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.glow.20.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.glow.24.png b/website/images/mapicons/transport_rental_bicycle.glow.24.png new file mode 100644 index 00000000..ce74474f Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.glow.24.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.glow.32.png b/website/images/mapicons/transport_rental_bicycle.glow.32.png new file mode 100644 index 00000000..de745031 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.glow.32.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.n.12.png b/website/images/mapicons/transport_rental_bicycle.n.12.png new file mode 100644 index 00000000..929e727f Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.n.12.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.n.16.png b/website/images/mapicons/transport_rental_bicycle.n.16.png new file mode 100644 index 00000000..6659d1e1 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.n.16.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.n.20.png b/website/images/mapicons/transport_rental_bicycle.n.20.png new file mode 100644 index 00000000..d1e94453 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.n.20.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.n.24.png b/website/images/mapicons/transport_rental_bicycle.n.24.png new file mode 100644 index 00000000..773ac431 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.n.24.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.n.32.png b/website/images/mapicons/transport_rental_bicycle.n.32.png new file mode 100644 index 00000000..d1aec02f Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.n.32.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.p.12.png b/website/images/mapicons/transport_rental_bicycle.p.12.png new file mode 100644 index 00000000..7a9c8f77 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.p.12.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.p.16.png b/website/images/mapicons/transport_rental_bicycle.p.16.png new file mode 100644 index 00000000..edf986c1 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.p.16.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.p.20.png b/website/images/mapicons/transport_rental_bicycle.p.20.png new file mode 100644 index 00000000..30e84107 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.p.20.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.p.24.png b/website/images/mapicons/transport_rental_bicycle.p.24.png new file mode 100644 index 00000000..4c4e9372 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.p.24.png differ diff --git a/website/images/mapicons/transport_rental_bicycle.p.32.png b/website/images/mapicons/transport_rental_bicycle.p.32.png new file mode 100644 index 00000000..7a32dbb9 Binary files /dev/null and b/website/images/mapicons/transport_rental_bicycle.p.32.png differ diff --git a/website/images/mapicons/transport_rental_car.glow.12.png b/website/images/mapicons/transport_rental_car.glow.12.png new file mode 100644 index 00000000..1765fd4a Binary files /dev/null and b/website/images/mapicons/transport_rental_car.glow.12.png differ diff --git a/website/images/mapicons/transport_rental_car.glow.16.png b/website/images/mapicons/transport_rental_car.glow.16.png new file mode 100644 index 00000000..1e124c66 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.glow.16.png differ diff --git a/website/images/mapicons/transport_rental_car.glow.20.png b/website/images/mapicons/transport_rental_car.glow.20.png new file mode 100644 index 00000000..53def9d9 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.glow.20.png differ diff --git a/website/images/mapicons/transport_rental_car.glow.24.png b/website/images/mapicons/transport_rental_car.glow.24.png new file mode 100644 index 00000000..a048f458 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.glow.24.png differ diff --git a/website/images/mapicons/transport_rental_car.glow.32.png b/website/images/mapicons/transport_rental_car.glow.32.png new file mode 100644 index 00000000..9a2be07e Binary files /dev/null and b/website/images/mapicons/transport_rental_car.glow.32.png differ diff --git a/website/images/mapicons/transport_rental_car.n.12.png b/website/images/mapicons/transport_rental_car.n.12.png new file mode 100644 index 00000000..85dcd1d2 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.n.12.png differ diff --git a/website/images/mapicons/transport_rental_car.n.16.png b/website/images/mapicons/transport_rental_car.n.16.png new file mode 100644 index 00000000..0c9f7b47 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.n.16.png differ diff --git a/website/images/mapicons/transport_rental_car.n.20.png b/website/images/mapicons/transport_rental_car.n.20.png new file mode 100644 index 00000000..a612c206 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.n.20.png differ diff --git a/website/images/mapicons/transport_rental_car.n.24.png b/website/images/mapicons/transport_rental_car.n.24.png new file mode 100644 index 00000000..5570e708 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.n.24.png differ diff --git a/website/images/mapicons/transport_rental_car.n.32.png b/website/images/mapicons/transport_rental_car.n.32.png new file mode 100644 index 00000000..d5385253 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.n.32.png differ diff --git a/website/images/mapicons/transport_rental_car.p.12.png b/website/images/mapicons/transport_rental_car.p.12.png new file mode 100644 index 00000000..1b28507f Binary files /dev/null and b/website/images/mapicons/transport_rental_car.p.12.png differ diff --git a/website/images/mapicons/transport_rental_car.p.16.png b/website/images/mapicons/transport_rental_car.p.16.png new file mode 100644 index 00000000..b5fc399c Binary files /dev/null and b/website/images/mapicons/transport_rental_car.p.16.png differ diff --git a/website/images/mapicons/transport_rental_car.p.20.png b/website/images/mapicons/transport_rental_car.p.20.png new file mode 100644 index 00000000..590019b8 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.p.20.png differ diff --git a/website/images/mapicons/transport_rental_car.p.24.png b/website/images/mapicons/transport_rental_car.p.24.png new file mode 100644 index 00000000..fda41334 Binary files /dev/null and b/website/images/mapicons/transport_rental_car.p.24.png differ diff --git a/website/images/mapicons/transport_rental_car.p.32.png b/website/images/mapicons/transport_rental_car.p.32.png new file mode 100644 index 00000000..848e86da Binary files /dev/null and b/website/images/mapicons/transport_rental_car.p.32.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.glow.12.png b/website/images/mapicons/transport_roundabout_anticlockwise.glow.12.png new file mode 100644 index 00000000..6f3d9ec9 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.glow.12.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.glow.16.png b/website/images/mapicons/transport_roundabout_anticlockwise.glow.16.png new file mode 100644 index 00000000..da3cd77a Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.glow.16.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.glow.20.png b/website/images/mapicons/transport_roundabout_anticlockwise.glow.20.png new file mode 100644 index 00000000..85a4e477 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.glow.20.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.glow.24.png b/website/images/mapicons/transport_roundabout_anticlockwise.glow.24.png new file mode 100644 index 00000000..1f0d1c65 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.glow.24.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.glow.32.png b/website/images/mapicons/transport_roundabout_anticlockwise.glow.32.png new file mode 100644 index 00000000..0d5f4e8c Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.glow.32.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.n.12.png b/website/images/mapicons/transport_roundabout_anticlockwise.n.12.png new file mode 100644 index 00000000..2c39021f Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.n.12.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.n.16.png b/website/images/mapicons/transport_roundabout_anticlockwise.n.16.png new file mode 100644 index 00000000..a4eab6cf Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.n.16.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.n.20.png b/website/images/mapicons/transport_roundabout_anticlockwise.n.20.png new file mode 100644 index 00000000..c791fede Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.n.20.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.n.24.png b/website/images/mapicons/transport_roundabout_anticlockwise.n.24.png new file mode 100644 index 00000000..87ed3363 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.n.24.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.n.32.png b/website/images/mapicons/transport_roundabout_anticlockwise.n.32.png new file mode 100644 index 00000000..b8242590 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.n.32.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.p.12.png b/website/images/mapicons/transport_roundabout_anticlockwise.p.12.png new file mode 100644 index 00000000..b45c86f3 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.p.12.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.p.16.png b/website/images/mapicons/transport_roundabout_anticlockwise.p.16.png new file mode 100644 index 00000000..0cd56bb1 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.p.16.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.p.20.png b/website/images/mapicons/transport_roundabout_anticlockwise.p.20.png new file mode 100644 index 00000000..1d118a1a Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.p.20.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.p.24.png b/website/images/mapicons/transport_roundabout_anticlockwise.p.24.png new file mode 100644 index 00000000..2df0902c Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.p.24.png differ diff --git a/website/images/mapicons/transport_roundabout_anticlockwise.p.32.png b/website/images/mapicons/transport_roundabout_anticlockwise.p.32.png new file mode 100644 index 00000000..70bf5e2e Binary files /dev/null and b/website/images/mapicons/transport_roundabout_anticlockwise.p.32.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.glow.12.png b/website/images/mapicons/transport_roundabout_clockwise.glow.12.png new file mode 100644 index 00000000..22905c39 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.glow.12.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.glow.16.png b/website/images/mapicons/transport_roundabout_clockwise.glow.16.png new file mode 100644 index 00000000..b7ad29f9 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.glow.16.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.glow.20.png b/website/images/mapicons/transport_roundabout_clockwise.glow.20.png new file mode 100644 index 00000000..3b6fc0c6 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.glow.20.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.glow.24.png b/website/images/mapicons/transport_roundabout_clockwise.glow.24.png new file mode 100644 index 00000000..55698784 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.glow.24.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.glow.32.png b/website/images/mapicons/transport_roundabout_clockwise.glow.32.png new file mode 100644 index 00000000..06136c6f Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.glow.32.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.n.12.png b/website/images/mapicons/transport_roundabout_clockwise.n.12.png new file mode 100644 index 00000000..5c18c281 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.n.12.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.n.16.png b/website/images/mapicons/transport_roundabout_clockwise.n.16.png new file mode 100644 index 00000000..a601227c Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.n.16.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.n.20.png b/website/images/mapicons/transport_roundabout_clockwise.n.20.png new file mode 100644 index 00000000..ebd9e2de Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.n.20.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.n.24.png b/website/images/mapicons/transport_roundabout_clockwise.n.24.png new file mode 100644 index 00000000..7d824190 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.n.24.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.n.32.png b/website/images/mapicons/transport_roundabout_clockwise.n.32.png new file mode 100644 index 00000000..cc89973d Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.n.32.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.p.12.png b/website/images/mapicons/transport_roundabout_clockwise.p.12.png new file mode 100644 index 00000000..076ed41d Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.p.12.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.p.16.png b/website/images/mapicons/transport_roundabout_clockwise.p.16.png new file mode 100644 index 00000000..82bb94dc Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.p.16.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.p.20.png b/website/images/mapicons/transport_roundabout_clockwise.p.20.png new file mode 100644 index 00000000..014704f6 Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.p.20.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.p.24.png b/website/images/mapicons/transport_roundabout_clockwise.p.24.png new file mode 100644 index 00000000..ec0e44fe Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.p.24.png differ diff --git a/website/images/mapicons/transport_roundabout_clockwise.p.32.png b/website/images/mapicons/transport_roundabout_clockwise.p.32.png new file mode 100644 index 00000000..9251cbba Binary files /dev/null and b/website/images/mapicons/transport_roundabout_clockwise.p.32.png differ diff --git a/website/images/mapicons/transport_taxi_rank.glow.12.png b/website/images/mapicons/transport_taxi_rank.glow.12.png new file mode 100644 index 00000000..c5972b50 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.glow.12.png differ diff --git a/website/images/mapicons/transport_taxi_rank.glow.16.png b/website/images/mapicons/transport_taxi_rank.glow.16.png new file mode 100644 index 00000000..c2089edb Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.glow.16.png differ diff --git a/website/images/mapicons/transport_taxi_rank.glow.20.png b/website/images/mapicons/transport_taxi_rank.glow.20.png new file mode 100644 index 00000000..b7991ad9 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.glow.20.png differ diff --git a/website/images/mapicons/transport_taxi_rank.glow.24.png b/website/images/mapicons/transport_taxi_rank.glow.24.png new file mode 100644 index 00000000..24ed1b11 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.glow.24.png differ diff --git a/website/images/mapicons/transport_taxi_rank.glow.32.png b/website/images/mapicons/transport_taxi_rank.glow.32.png new file mode 100644 index 00000000..1b38b5f6 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.glow.32.png differ diff --git a/website/images/mapicons/transport_taxi_rank.n.12.png b/website/images/mapicons/transport_taxi_rank.n.12.png new file mode 100644 index 00000000..1c297b07 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.n.12.png differ diff --git a/website/images/mapicons/transport_taxi_rank.n.16.png b/website/images/mapicons/transport_taxi_rank.n.16.png new file mode 100644 index 00000000..23e6f1b1 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.n.16.png differ diff --git a/website/images/mapicons/transport_taxi_rank.n.20.png b/website/images/mapicons/transport_taxi_rank.n.20.png new file mode 100644 index 00000000..d9d9033b Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.n.20.png differ diff --git a/website/images/mapicons/transport_taxi_rank.n.24.png b/website/images/mapicons/transport_taxi_rank.n.24.png new file mode 100644 index 00000000..8fd30734 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.n.24.png differ diff --git a/website/images/mapicons/transport_taxi_rank.n.32.png b/website/images/mapicons/transport_taxi_rank.n.32.png new file mode 100644 index 00000000..9c4d791e Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.n.32.png differ diff --git a/website/images/mapicons/transport_taxi_rank.p.12.png b/website/images/mapicons/transport_taxi_rank.p.12.png new file mode 100644 index 00000000..79f9bfd4 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.p.12.png differ diff --git a/website/images/mapicons/transport_taxi_rank.p.16.png b/website/images/mapicons/transport_taxi_rank.p.16.png new file mode 100644 index 00000000..728419d5 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.p.16.png differ diff --git a/website/images/mapicons/transport_taxi_rank.p.20.png b/website/images/mapicons/transport_taxi_rank.p.20.png new file mode 100644 index 00000000..f242241b Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.p.20.png differ diff --git a/website/images/mapicons/transport_taxi_rank.p.24.png b/website/images/mapicons/transport_taxi_rank.p.24.png new file mode 100644 index 00000000..a45c07e8 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.p.24.png differ diff --git a/website/images/mapicons/transport_taxi_rank.p.32.png b/website/images/mapicons/transport_taxi_rank.p.32.png new file mode 100644 index 00000000..365a2e25 Binary files /dev/null and b/website/images/mapicons/transport_taxi_rank.p.32.png differ diff --git a/website/images/mapicons/transport_traffic_lights.glow.12.png b/website/images/mapicons/transport_traffic_lights.glow.12.png new file mode 100644 index 00000000..f7178de0 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.glow.12.png differ diff --git a/website/images/mapicons/transport_traffic_lights.glow.16.png b/website/images/mapicons/transport_traffic_lights.glow.16.png new file mode 100644 index 00000000..d3b5d9cb Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.glow.16.png differ diff --git a/website/images/mapicons/transport_traffic_lights.glow.20.png b/website/images/mapicons/transport_traffic_lights.glow.20.png new file mode 100644 index 00000000..64e99097 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.glow.20.png differ diff --git a/website/images/mapicons/transport_traffic_lights.glow.24.png b/website/images/mapicons/transport_traffic_lights.glow.24.png new file mode 100644 index 00000000..52fc19de Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.glow.24.png differ diff --git a/website/images/mapicons/transport_traffic_lights.glow.32.png b/website/images/mapicons/transport_traffic_lights.glow.32.png new file mode 100644 index 00000000..bc3a7311 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.glow.32.png differ diff --git a/website/images/mapicons/transport_traffic_lights.n.12.png b/website/images/mapicons/transport_traffic_lights.n.12.png new file mode 100644 index 00000000..270b3b0f Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.n.12.png differ diff --git a/website/images/mapicons/transport_traffic_lights.n.16.png b/website/images/mapicons/transport_traffic_lights.n.16.png new file mode 100644 index 00000000..94c1ad0a Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.n.16.png differ diff --git a/website/images/mapicons/transport_traffic_lights.n.20.png b/website/images/mapicons/transport_traffic_lights.n.20.png new file mode 100644 index 00000000..9ef23595 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.n.20.png differ diff --git a/website/images/mapicons/transport_traffic_lights.n.24.png b/website/images/mapicons/transport_traffic_lights.n.24.png new file mode 100644 index 00000000..2034ff06 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.n.24.png differ diff --git a/website/images/mapicons/transport_traffic_lights.n.32.png b/website/images/mapicons/transport_traffic_lights.n.32.png new file mode 100644 index 00000000..91fb213c Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.n.32.png differ diff --git a/website/images/mapicons/transport_traffic_lights.p.12.png b/website/images/mapicons/transport_traffic_lights.p.12.png new file mode 100644 index 00000000..e3e338db Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.p.12.png differ diff --git a/website/images/mapicons/transport_traffic_lights.p.16.png b/website/images/mapicons/transport_traffic_lights.p.16.png new file mode 100644 index 00000000..c4229e16 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.p.16.png differ diff --git a/website/images/mapicons/transport_traffic_lights.p.20.png b/website/images/mapicons/transport_traffic_lights.p.20.png new file mode 100644 index 00000000..a3bb3f81 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.p.20.png differ diff --git a/website/images/mapicons/transport_traffic_lights.p.24.png b/website/images/mapicons/transport_traffic_lights.p.24.png new file mode 100644 index 00000000..800cad1b Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.p.24.png differ diff --git a/website/images/mapicons/transport_traffic_lights.p.32.png b/website/images/mapicons/transport_traffic_lights.p.32.png new file mode 100644 index 00000000..811fac22 Binary files /dev/null and b/website/images/mapicons/transport_traffic_lights.p.32.png differ diff --git a/website/images/mapicons/transport_train_station.glow.12.png b/website/images/mapicons/transport_train_station.glow.12.png new file mode 100644 index 00000000..63ee3343 Binary files /dev/null and b/website/images/mapicons/transport_train_station.glow.12.png differ diff --git a/website/images/mapicons/transport_train_station.glow.16.png b/website/images/mapicons/transport_train_station.glow.16.png new file mode 100644 index 00000000..2e03f485 Binary files /dev/null and b/website/images/mapicons/transport_train_station.glow.16.png differ diff --git a/website/images/mapicons/transport_train_station.glow.20.png b/website/images/mapicons/transport_train_station.glow.20.png new file mode 100644 index 00000000..0fda9fca Binary files /dev/null and b/website/images/mapicons/transport_train_station.glow.20.png differ diff --git a/website/images/mapicons/transport_train_station.glow.24.png b/website/images/mapicons/transport_train_station.glow.24.png new file mode 100644 index 00000000..a7dc5780 Binary files /dev/null and b/website/images/mapicons/transport_train_station.glow.24.png differ diff --git a/website/images/mapicons/transport_train_station.glow.32.png b/website/images/mapicons/transport_train_station.glow.32.png new file mode 100644 index 00000000..61bc218e Binary files /dev/null and b/website/images/mapicons/transport_train_station.glow.32.png differ diff --git a/website/images/mapicons/transport_train_station.n.12.png b/website/images/mapicons/transport_train_station.n.12.png new file mode 100644 index 00000000..e3dfa72b Binary files /dev/null and b/website/images/mapicons/transport_train_station.n.12.png differ diff --git a/website/images/mapicons/transport_train_station.n.16.png b/website/images/mapicons/transport_train_station.n.16.png new file mode 100644 index 00000000..29ddcc12 Binary files /dev/null and b/website/images/mapicons/transport_train_station.n.16.png differ diff --git a/website/images/mapicons/transport_train_station.n.20.png b/website/images/mapicons/transport_train_station.n.20.png new file mode 100644 index 00000000..79d11f08 Binary files /dev/null and b/website/images/mapicons/transport_train_station.n.20.png differ diff --git a/website/images/mapicons/transport_train_station.n.24.png b/website/images/mapicons/transport_train_station.n.24.png new file mode 100644 index 00000000..6e1cb10a Binary files /dev/null and b/website/images/mapicons/transport_train_station.n.24.png differ diff --git a/website/images/mapicons/transport_train_station.n.32.png b/website/images/mapicons/transport_train_station.n.32.png new file mode 100644 index 00000000..379aec9f Binary files /dev/null and b/website/images/mapicons/transport_train_station.n.32.png differ diff --git a/website/images/mapicons/transport_train_station.p.12.png b/website/images/mapicons/transport_train_station.p.12.png new file mode 100644 index 00000000..fa3bd9ae Binary files /dev/null and b/website/images/mapicons/transport_train_station.p.12.png differ diff --git a/website/images/mapicons/transport_train_station.p.16.png b/website/images/mapicons/transport_train_station.p.16.png new file mode 100644 index 00000000..623ff0bc Binary files /dev/null and b/website/images/mapicons/transport_train_station.p.16.png differ diff --git a/website/images/mapicons/transport_train_station.p.20.png b/website/images/mapicons/transport_train_station.p.20.png new file mode 100644 index 00000000..e4868098 Binary files /dev/null and b/website/images/mapicons/transport_train_station.p.20.png differ diff --git a/website/images/mapicons/transport_train_station.p.24.png b/website/images/mapicons/transport_train_station.p.24.png new file mode 100644 index 00000000..97ae2532 Binary files /dev/null and b/website/images/mapicons/transport_train_station.p.24.png differ diff --git a/website/images/mapicons/transport_train_station.p.32.png b/website/images/mapicons/transport_train_station.p.32.png new file mode 100644 index 00000000..abc6be63 Binary files /dev/null and b/website/images/mapicons/transport_train_station.p.32.png differ diff --git a/website/images/mapicons/transport_train_station2.glow.12.png b/website/images/mapicons/transport_train_station2.glow.12.png new file mode 100644 index 00000000..601d0da3 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.glow.12.png differ diff --git a/website/images/mapicons/transport_train_station2.glow.16.png b/website/images/mapicons/transport_train_station2.glow.16.png new file mode 100644 index 00000000..0d2f2f48 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.glow.16.png differ diff --git a/website/images/mapicons/transport_train_station2.glow.20.png b/website/images/mapicons/transport_train_station2.glow.20.png new file mode 100644 index 00000000..27023015 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.glow.20.png differ diff --git a/website/images/mapicons/transport_train_station2.glow.24.png b/website/images/mapicons/transport_train_station2.glow.24.png new file mode 100644 index 00000000..61feb2f6 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.glow.24.png differ diff --git a/website/images/mapicons/transport_train_station2.glow.32.png b/website/images/mapicons/transport_train_station2.glow.32.png new file mode 100644 index 00000000..b468adee Binary files /dev/null and b/website/images/mapicons/transport_train_station2.glow.32.png differ diff --git a/website/images/mapicons/transport_train_station2.n.12.png b/website/images/mapicons/transport_train_station2.n.12.png new file mode 100644 index 00000000..ee46f2a0 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.n.12.png differ diff --git a/website/images/mapicons/transport_train_station2.n.16.png b/website/images/mapicons/transport_train_station2.n.16.png new file mode 100644 index 00000000..6f2f5dc8 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.n.16.png differ diff --git a/website/images/mapicons/transport_train_station2.n.20.png b/website/images/mapicons/transport_train_station2.n.20.png new file mode 100644 index 00000000..a1b021d3 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.n.20.png differ diff --git a/website/images/mapicons/transport_train_station2.n.24.png b/website/images/mapicons/transport_train_station2.n.24.png new file mode 100644 index 00000000..2363bdff Binary files /dev/null and b/website/images/mapicons/transport_train_station2.n.24.png differ diff --git a/website/images/mapicons/transport_train_station2.n.32.png b/website/images/mapicons/transport_train_station2.n.32.png new file mode 100644 index 00000000..19e8514a Binary files /dev/null and b/website/images/mapicons/transport_train_station2.n.32.png differ diff --git a/website/images/mapicons/transport_train_station2.p.12.png b/website/images/mapicons/transport_train_station2.p.12.png new file mode 100644 index 00000000..c619f31e Binary files /dev/null and b/website/images/mapicons/transport_train_station2.p.12.png differ diff --git a/website/images/mapicons/transport_train_station2.p.16.png b/website/images/mapicons/transport_train_station2.p.16.png new file mode 100644 index 00000000..eff00b7f Binary files /dev/null and b/website/images/mapicons/transport_train_station2.p.16.png differ diff --git a/website/images/mapicons/transport_train_station2.p.20.png b/website/images/mapicons/transport_train_station2.p.20.png new file mode 100644 index 00000000..c16fe5df Binary files /dev/null and b/website/images/mapicons/transport_train_station2.p.20.png differ diff --git a/website/images/mapicons/transport_train_station2.p.24.png b/website/images/mapicons/transport_train_station2.p.24.png new file mode 100644 index 00000000..c11df32b Binary files /dev/null and b/website/images/mapicons/transport_train_station2.p.24.png differ diff --git a/website/images/mapicons/transport_train_station2.p.32.png b/website/images/mapicons/transport_train_station2.p.32.png new file mode 100644 index 00000000..eb340d50 Binary files /dev/null and b/website/images/mapicons/transport_train_station2.p.32.png differ diff --git a/website/images/mapicons/transport_tram_stop.glow.12.png b/website/images/mapicons/transport_tram_stop.glow.12.png new file mode 100644 index 00000000..71a33882 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.glow.12.png differ diff --git a/website/images/mapicons/transport_tram_stop.glow.16.png b/website/images/mapicons/transport_tram_stop.glow.16.png new file mode 100644 index 00000000..de063b86 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.glow.16.png differ diff --git a/website/images/mapicons/transport_tram_stop.glow.20.png b/website/images/mapicons/transport_tram_stop.glow.20.png new file mode 100644 index 00000000..fe1a8298 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.glow.20.png differ diff --git a/website/images/mapicons/transport_tram_stop.glow.24.png b/website/images/mapicons/transport_tram_stop.glow.24.png new file mode 100644 index 00000000..f8307ede Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.glow.24.png differ diff --git a/website/images/mapicons/transport_tram_stop.glow.32.png b/website/images/mapicons/transport_tram_stop.glow.32.png new file mode 100644 index 00000000..4b58108f Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.glow.32.png differ diff --git a/website/images/mapicons/transport_tram_stop.n.12.png b/website/images/mapicons/transport_tram_stop.n.12.png new file mode 100644 index 00000000..d4ef519b Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.n.12.png differ diff --git a/website/images/mapicons/transport_tram_stop.n.16.png b/website/images/mapicons/transport_tram_stop.n.16.png new file mode 100644 index 00000000..ddbbc4c5 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.n.16.png differ diff --git a/website/images/mapicons/transport_tram_stop.n.20.png b/website/images/mapicons/transport_tram_stop.n.20.png new file mode 100644 index 00000000..7647fa87 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.n.20.png differ diff --git a/website/images/mapicons/transport_tram_stop.n.24.png b/website/images/mapicons/transport_tram_stop.n.24.png new file mode 100644 index 00000000..edf53484 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.n.24.png differ diff --git a/website/images/mapicons/transport_tram_stop.n.32.png b/website/images/mapicons/transport_tram_stop.n.32.png new file mode 100644 index 00000000..0a710839 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.n.32.png differ diff --git a/website/images/mapicons/transport_tram_stop.p.12.png b/website/images/mapicons/transport_tram_stop.p.12.png new file mode 100644 index 00000000..ae99dd22 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.p.12.png differ diff --git a/website/images/mapicons/transport_tram_stop.p.16.png b/website/images/mapicons/transport_tram_stop.p.16.png new file mode 100644 index 00000000..f693941a Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.p.16.png differ diff --git a/website/images/mapicons/transport_tram_stop.p.20.png b/website/images/mapicons/transport_tram_stop.p.20.png new file mode 100644 index 00000000..12ec646b Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.p.20.png differ diff --git a/website/images/mapicons/transport_tram_stop.p.24.png b/website/images/mapicons/transport_tram_stop.p.24.png new file mode 100644 index 00000000..e1fbf482 Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.p.24.png differ diff --git a/website/images/mapicons/transport_tram_stop.p.32.png b/website/images/mapicons/transport_tram_stop.p.32.png new file mode 100644 index 00000000..e6c0991f Binary files /dev/null and b/website/images/mapicons/transport_tram_stop.p.32.png differ