From cb76b7df8626d56d863be9f2f38650f6e8bcc29c Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Fri, 13 Dec 2024 14:29:28 +0100 Subject: [PATCH 01/19] added MtbRating and cycleway| easy to hard --- data/classificator.txt | 4 + data/mapcss-mapping.csv | 9 +- data/strings/types_strings.txt | 16 ++++ .../include/priorities_4_overlays.prio.txt | 4 + .../include/priorities_4_overlays.prio.txt | 4 + docs/STYLES.md | 21 ++--- generator/generator_tool/generator_tool.cpp | 76 +++++++++++++---- generator/osm2type.cpp | 84 +++++++++++++++++++ 8 files changed, 188 insertions(+), 30 deletions(-) diff --git a/data/classificator.txt b/data/classificator.txt index 483eccfb7d..08d9363c36 100644 --- a/data/classificator.txt +++ b/data/classificator.txt @@ -414,6 +414,10 @@ world + cycleway + bridge - tunnel - + easy - + intermediate - + difficult - + expert - {} elevator - footway + diff --git a/data/mapcss-mapping.csv b/data/mapcss-mapping.csv index 02d97f000f..9bf8830a84 100644 --- a/data/mapcss-mapping.csv +++ b/data/mapcss-mapping.csv @@ -730,10 +730,11 @@ piste:type|snow_park;616; deprecated|deprecated;617;x deprecated|deprecated;618;x aerialway|j-bar;619; -deprecated|deprecated;620;x -deprecated|deprecated;621;x -deprecated|deprecated;622;x -deprecated|deprecated;623;x +# _mtb_rating is a mix of mtb:scale, surface smoothness and imba rating, see osm2type +highway|cycleway|easy;[highway=cycleway][_mtb_rating=easy];;name;int_name;620; +highway|cycleway|intermediate;[highway=cycleway][_mtb_rating=intermediate];;name;int_name;621; +highway|cycleway|difficult;[highway=cycleway][_mtb_rating=difficult];;name;int_name;622; +highway|cycleway|expert;[highway=cycleway][_mtb_rating=expert];;name;int_name;623; deprecated|deprecated;624;x deprecated|deprecated;625;x deprecated:railway|siding|bridge:06.2023;626;x diff --git a/data/strings/types_strings.txt b/data/strings/types_strings.txt index a13e5d5cff..4914127ba1 100644 --- a/data/strings/types_strings.txt +++ b/data/strings/types_strings.txt @@ -12401,6 +12401,22 @@ pl = Most drogowy dla rowerów pt-BR = Ponte para ciclistas + [type.highway.cycleway.easy] + en = easy mountainbike trail + de = leichter Mountainbike Trail + + [type.highway.cycleway.intermediate] + en = intermediate mountainbike trail + de = mittelschwerer Mountainbike Trail + + [type.highway.cycleway.difficult] + en = difficult mountainbike trail + de = schwerer Mountainbike Trail + + [type.highway.cycleway.expert] + en = expert mountainbike trail + de = Sehr schwerer Mountainbike Trail + [type.highway.cycleway.permissive] ref = type.highway.cycleway et = Piiratud jalgrattatee diff --git a/data/styles/default/include/priorities_4_overlays.prio.txt b/data/styles/default/include/priorities_4_overlays.prio.txt index a71c6891ad..b0078a5848 100644 --- a/data/styles/default/include/priorities_4_overlays.prio.txt +++ b/data/styles/default/include/priorities_4_overlays.prio.txt @@ -657,6 +657,10 @@ highway-residential-tunnel::shield # shield::shield z15- (also highway-cycleway # pathtext z15- (also has line z13-) highway-cycleway-bridge # pathtext z15- (also has line z13-, line::bridgeblack z17-, line::bridgewhite z15-) highway-cycleway-tunnel # pathtext z15- (also has line z13-, line::tunnelBackground z17-, line::tunnelCasing z17-) +highway-cycleway-easy # pathtext z15 +highway-cycleway-intermediate # pathtext z15 +highway-cycleway-difficult # pathtext z15 +highway-cycleway-expert # pathtext z15 === 2953 area:highway-footway # caption z15- (also has area z14-) diff --git a/data/styles/outdoors/include/priorities_4_overlays.prio.txt b/data/styles/outdoors/include/priorities_4_overlays.prio.txt index e6b6234fcd..67f7a6c23b 100644 --- a/data/styles/outdoors/include/priorities_4_overlays.prio.txt +++ b/data/styles/outdoors/include/priorities_4_overlays.prio.txt @@ -657,6 +657,10 @@ highway-residential-tunnel::shield # shield::shield z15- (also highway-cycleway # pathtext z13- (also has line z11-) highway-cycleway-bridge # pathtext z13- (also has line z11-, line::bridgeblack z17-, line::bridgewhite z15-) highway-cycleway-tunnel # pathtext z13- (also has line z11-, line::tunnelBackground z17-, line::tunnelCasing z17-) +highway-cycleway-easy # pathtext z13 +highway-cycleway-intermediate # pathtext z13 +highway-cycleway-difficult # pathtext z13 +highway-cycleway-expert # pathtext z13 === 2953 area:highway-footway # caption z15- (also has area z14-) diff --git a/docs/STYLES.md b/docs/STYLES.md index e024b283b4..a72ca93b79 100644 --- a/docs/STYLES.md +++ b/docs/STYLES.md @@ -65,16 +65,17 @@ preferably look for icons in [collections OM uses already](../data/copyright.htm ## How to add a new map feature / POI type 1. Add it into `data/mapcss-mapping.csv` (or better replace existing `deprecated` line) to make OM import it from OSM -2. If necessary merge similar tags in via `data/replaced_tags.txt` -3. Define a priority for the new feature type in e.g. [`priorities_4_overlays.prio.txt`](../data/styles/default/include/priorities_4_overlays.prio.txt) and/or other priorities files -4. Add a new icon (see [above](#how-to-add-a-new-icon)) and/or other styling (area, line..) -5. If a new POI should be OSM-addable/editable then add it to `data/editor.config` -6. Add new type translation into `data/strings/types_strings.txt` -7. Add search keywords into `data/categories.txt` -8. Run `tools/unix/generate_localizations.sh` to validate and distribute translations into iOS and Android -9. Add new or fix current classifier tests at `/generator/generator_tests/osm_type_tests.cpp` if you can -10. [Test](#testing-your-changes) your changes -11. Relax and wait for the next maps update :) +2. If necessary merge similar tags in via `data/replaced_tags.txt` +3. Add new classification to `classificator.txt`, e.g. world + highway + path + expert +4. Define a priority for the new feature type in e.g. [`priorities_4_overlays.prio.txt`](../data/styles/default/include/priorities_4_overlays.prio.txt) and/or other priorities files +5. Add a new icon (see [above](#how-to-add-a-new-icon)) and/or other styling (area, line..) +6. If a new POI should be OSM-addable/editable then add it to `data/editor.config` +7. Add new type translation into `data/strings/types_strings.txt` +8. Add search keywords into `data/categories.txt` +9. Run `tools/unix/generate_localizations.sh` to validate and distribute translations into iOS and Android +10. Add new or fix current classifier tests at `/generator/generator_tests/osm_type_tests.cpp` if you can +11. [Test](#testing-your-changes) your changes +12. Relax and wait for the next maps update :) ## Testing your changes diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp index 52e1add391..ec9819728a 100644 --- a/generator/generator_tool/generator_tool.cpp +++ b/generator/generator_tool/generator_tool.cpp @@ -72,32 +72,65 @@ DEFINE_bool(fail_on_coasts, false, DEFINE_bool(emit_coasts, false, "Push coasts features from intermediate file to out files/countries."); +#define DEBUG_GENERATOR true + +#if DEBUG_GENERATOR +#define Debug_data_path std::string("/home/emanuel/Documents/work/organicmaps/../maps_build/2024_12_09__15_14_26/intermediate_data") +#define Debug_intermediate_data_path std::string("/home/emanuel/Documents/work/organicmaps/../maps_build/2024_12_09__15_14_26/intermediate_data") +#define Debug_cache_path std::string("/home/emanuel/Documents/work/organicmaps/../maps_build/2024_12_09__15_14_26/intermediate_data") +#define Debug_osm_file_type std::string("o5m") +#define Debug_osm_file_name std::string("/home/emanuel/Documents/work/organicmaps/../maps_build/2024_12_09__15_14_26/planet.o5m") +#define Debug_node_storage std::string("map") +#define Debug_user_resource_path std::string("/home/emanuel/Documents/work/organicmaps/data") +#define Debug_dump_cities_boundaries true +#define Debug_cities_boundaries_data std::string("/home/emanuel/Documents/work/organicmaps/../maps_build/2024_11_08__21_21_43/intermediate_data/cities_boundaries.bin") +#define Debug_generate_features true +#define Debug_isolines_path "" +#define Debug_addresses_path "" +#define Debug_generate_packed_borders true +#define Debug_Preprocess false +#else +#define Debug_data_path "" +#define Debug_intermediate_data_path "" +#define Debug_cache_path "" +#define Debug_osm_file_type "" +#define Debug_osm_file_name "" +#define Debug_node_storage "map" +#define Debug_user_resource_path "" +#define Debug_dump_cities_boundaries false +#define Debug_cities_boundaries_data "" +#define Debug_generate_features false +#define Debug_isolines_path "" +#define Debug_addresses_path "" +#define Debug_generate_packed_borders false +#define Debug_Preprocess false +#endif // Generator settings and paths. -DEFINE_string(osm_file_name, "", "Input osm area file."); -DEFINE_string(osm_file_type, "xml", "Input osm area file type [xml, o5m]."); -DEFINE_string(data_path, "", GetDataPathHelp()); -DEFINE_string(user_resource_path, "", "User defined resource path for classificator.txt and etc."); -DEFINE_string(intermediate_data_path, "", "Path to stored intermediate data."); -DEFINE_string(cache_path, "", +DEFINE_string(osm_file_name, Debug_osm_file_name, "Input osm area file."); +DEFINE_string(osm_file_type, Debug_osm_file_type, "Input osm area file type [xml, o5m]."); +DEFINE_string(data_path, Debug_data_path, GetDataPathHelp()); +DEFINE_string(user_resource_path, Debug_user_resource_path, "User defined resource path for classificator.txt and etc."); +DEFINE_string(intermediate_data_path, Debug_intermediate_data_path, "Path to stored intermediate data."); +DEFINE_string(cache_path, Debug_cache_path, "Path to stored caches for nodes, ways, relations. " "If 'cache_path' is empty, caches are stored to 'intermediate_data_path'."); DEFINE_string(output, "", "File name for process (without 'mwm' ext)."); DEFINE_bool(preload_cache, false, "Preload all ways and relations cache."); -DEFINE_string(node_storage, "map", +DEFINE_string(node_storage, Debug_node_storage, "Type of storage for intermediate points representation. Available: raw, map, mem."); DEFINE_uint64(planet_version, base::SecondsSinceEpoch(), "Version as seconds since epoch, by default - now."); // Preprocessing and feature generator. -DEFINE_bool(preprocess, false, "1st pass - create nodes/ways/relations data."); -DEFINE_bool(generate_features, false, "2nd pass - generate intermediate features."); +DEFINE_bool(preprocess, Debug_Preprocess, "1st pass - create nodes/ways/relations data."); +DEFINE_bool(generate_features, Debug_generate_features, "2nd pass - generate intermediate features."); DEFINE_bool(generate_geometry, false, "3rd pass - split and simplify geometry and triangles for features."); DEFINE_bool(generate_index, false, "4rd pass - generate index."); DEFINE_bool(generate_search_index, false, "5th pass - generate search index."); -DEFINE_bool(dump_cities_boundaries, false, "Dump cities boundaries to a file"); +DEFINE_bool(dump_cities_boundaries, Debug_dump_cities_boundaries, "Dump cities boundaries to a file"); DEFINE_bool(generate_cities_boundaries, false, "Generate the cities boundaries section"); -DEFINE_string(cities_boundaries_data, "", "File with cities boundaries"); +DEFINE_string(cities_boundaries_data, Debug_cities_boundaries_data, "File with cities boundaries"); DEFINE_bool(generate_cities_ids, false, "Generate the cities ids section"); @@ -111,8 +144,8 @@ DEFINE_string( "Path to file containing list of node ids we need to add to locality index. May be empty."); DEFINE_bool(generate_isolines_info, false, "Generate the isolines info section"); -DEFINE_string(isolines_path, "", "Path to isolines directory. If set, adds isolines linear features."); -DEFINE_string(addresses_path, "", "Path to addresses directory. If set, adds addr:interpolation features."); +DEFINE_string(isolines_path, Debug_isolines_path, "Path to isolines directory. If set, adds isolines linear features."); +DEFINE_string(addresses_path, Debug_addresses_path, "Path to addresses directory. If set, adds addr:interpolation features."); // Routing. DEFINE_bool(make_routing_index, false, "Make sections with the routing information."); @@ -172,7 +205,7 @@ DEFINE_string(dump_feature_names, "", "Print all feature names by 2-letter local // Service functions. DEFINE_bool(generate_classif, false, "Generate classificator."); -DEFINE_bool(generate_packed_borders, false, "Generate packed file with country polygons."); +DEFINE_bool(generate_packed_borders, Debug_generate_packed_borders, "Generate packed file with country polygons."); DEFINE_string(unpack_borders, "", "Convert packed_polygons to a directory of polygon files (specify folder)."); DEFINE_bool(unpack_mwm, false, @@ -189,7 +222,18 @@ DEFINE_uint64(threads_count, 0, "Desired count of threads. If count equals zero, "threads is set automatically."); DEFINE_bool(verbose, false, "Provide more detailed output."); -MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) + + +//MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) +int main2(int argc, char ** argv); +int main(int argc, char ** argv) +{ + std::signal(SIGABRT, generator::ErrorHandler); + std::signal(SIGSEGV, generator::ErrorHandler); + return main2(argc, argv); +} + +int main2(int argc, char ** argv) { using namespace generator; using std::string; @@ -630,4 +674,4 @@ MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) check_model::ReadFeatures(dataFile); return EXIT_SUCCESS; -}) +} diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 84fb9992ec..6a02d812aa 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -818,6 +818,88 @@ string DeterminePathGrade(OsmElement * p) return {}; } +string DetermineMtbRating(OsmElement * p) +{ + if (!p->HasTag("highway", "cycleway")) + return {}; + + enum eMtbRating : int + { + none = 0, + easy, + intermediate, + difficult, + expert + }; + + int test = 10; + if (p->HasTag("mtb:scale:imba")) + { + test = 0; + } + + string mtbscale = p->GetTag("mtb:scale"); + string imbascale = p->GetTag("mtb:scale:imba"); + string SmoothnessType = p->GetTag("smoothness"); + + static std::map mtbscaleToRatingConversion = { + {"0", eMtbRating::easy}, + {"S0", eMtbRating::easy}, + {"1", eMtbRating::intermediate}, + {"S1", eMtbRating::intermediate}, + {"2", eMtbRating::intermediate}, + {"S2", eMtbRating::intermediate}, + {"3", eMtbRating::difficult}, + {"S3", eMtbRating::difficult}, + {"4", eMtbRating::expert}, + {"S4", eMtbRating::expert}, + {"5", eMtbRating::expert}, + {"S5", eMtbRating::expert}, + }; + + static std::map imbabscaleToRatingConversion = { + {"1", eMtbRating::easy}, + {"2", eMtbRating::intermediate}, + {"3", eMtbRating::difficult}, + {"4", eMtbRating::expert}, + }; + + static std::map SmoothnessToRatingConversion = { + {"bad", eMtbRating::easy}, + {"very_bad", eMtbRating::easy}, + {"horrible", eMtbRating::intermediate}, + {"very_horrible", eMtbRating::difficult}, + }; + + int tmpRatingFromMtbScale = 0; + int tmpRatingFromImbaScale = 0; + int tmpRatingFromSmoothness = 0; + if (!mtbscale.empty() && mtbscaleToRatingConversion.count(mtbscale)) + tmpRatingFromMtbScale = mtbscaleToRatingConversion[mtbscale]; + + if (!imbascale.empty() && imbabscaleToRatingConversion.count(imbascale)) + tmpRatingFromImbaScale = imbabscaleToRatingConversion[imbascale]; + + if (!SmoothnessType.empty() && SmoothnessToRatingConversion.count(SmoothnessType)) + tmpRatingFromSmoothness = SmoothnessToRatingConversion[SmoothnessType]; + + int overallRating = std::max({tmpRatingFromMtbScale, tmpRatingFromImbaScale, tmpRatingFromSmoothness}); + switch (overallRating) + { + case eMtbRating::easy: + return "easy"; + case eMtbRating::intermediate: + return "intermediate"; + case eMtbRating::difficult: + return "difficult"; + case eMtbRating::expert: + return "expert"; + default: + return {}; + } + +} + void PreprocessElement(OsmElement * p, CalculateOriginFnT const & calcOrg) { bool hasLayer = false; @@ -902,6 +984,8 @@ void PreprocessElement(OsmElement * p, CalculateOriginFnT const & calcOrg) p->AddTag("_path_grade", DeterminePathGrade(p)); + p->AddTag("_mtb_rating", DetermineMtbRating(p)); + string const kCuisineKey = "cuisine"; auto cuisines = p->GetTag(kCuisineKey); if (!cuisines.empty()) -- 2.45.3 From b369c575e69e9abfe323770eddcfa5c30ebcff37 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Fri, 13 Dec 2024 14:33:16 +0100 Subject: [PATCH 02/19] some repairs so that the map generation works for me --- base/file_name_utils.hpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/base/file_name_utils.hpp b/base/file_name_utils.hpp index 71107f7407..6d30b19a57 100644 --- a/base/file_name_utils.hpp +++ b/base/file_name_utils.hpp @@ -40,7 +40,12 @@ template std::string JoinPath(std::string const & folder, Args &&... args) { if (folder.empty()) - return {}; + { + if (sizeof...(args) == 0) + {return {};} + else + {return impl::JoinPath(std::forward(args)...);} + } return AddSlashIfNeeded(folder) + impl::JoinPath(std::forward(args)...); } @@ -50,8 +55,8 @@ std::string JoinPath(std::string const & folder, Args &&... args) template std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args) { - ASSERT(!dir.empty(), ("JoinPath dir is empty")); - ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty")); + //ASSERT(!dir.empty(), ("JoinPath dir is empty: " + dir)); + ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty" + fileOrDir)); return impl::JoinPath(dir, fileOrDir, std::forward(args)...); } } // namespace base -- 2.45.3 From ddbf1d9c892e324461208dc8919e5b336023d37c Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Fri, 13 Dec 2024 22:57:51 +0100 Subject: [PATCH 03/19] regenerated prios and protos --- data/classificator.txt | 8 +- data/drules_proto_default_dark.bin | Bin 407491 -> 409522 bytes data/drules_proto_default_dark.txt | 3828 +++++++------ data/drules_proto_default_light.bin | Bin 408849 -> 410880 bytes data/drules_proto_default_light.txt | 3828 +++++++------ data/drules_proto_outdoors_dark.bin | Bin 424180 -> 426567 bytes data/drules_proto_outdoors_dark.txt | 4714 ++++++++++------- data/drules_proto_outdoors_light.bin | Bin 425649 -> 428036 bytes data/drules_proto_outdoors_light.txt | 4714 ++++++++++------- data/drules_proto_vehicle_dark.bin | Bin 275258 -> 275661 bytes data/drules_proto_vehicle_dark.txt | 2582 ++++----- data/drules_proto_vehicle_light.bin | Bin 275048 -> 275451 bytes data/drules_proto_vehicle_light.txt | 2582 ++++----- data/patterns.txt | 3 +- data/styles/default/include/Roads.mapcss | 10 +- .../default/include/priorities_3_FG.prio.txt | 4 + .../include/priorities_4_overlays.prio.txt | 8 +- .../outdoors/include/priorities_3_FG.prio.txt | 4 + .../include/priorities_4_overlays.prio.txt | 8 +- .../vehicle/include/priorities_3_FG.prio.txt | 4 + data/types.txt | 8 +- data/visibility.txt | 4 + generator/generator_tool/generator_tool.cpp | 39 +- generator/osm2type.cpp | 6 - 24 files changed, 12654 insertions(+), 9700 deletions(-) diff --git a/data/classificator.txt b/data/classificator.txt index 08d9363c36..73a9095f1d 100644 --- a/data/classificator.txt +++ b/data/classificator.txt @@ -413,11 +413,11 @@ world + construction - cycleway + bridge - + difficult - + easy - + expert - + intermediate - tunnel - - easy - - intermediate - - difficult - - expert - {} elevator - footway + diff --git a/data/drules_proto_default_dark.bin b/data/drules_proto_default_dark.bin index 2affa658c06b607aac37117ad26e5b314d8e5fdf..d650977593ca7249f51c0ee36476a3036fca2cd3 100644 GIT binary patch delta 1275 zcmX^7USiXKiH0qVZBoX+n7O1fGSf546DxI-E0c3lL5!5lw6x6R(wq_@9S&Y04bHP? zK;VtN!0}%@W^+%Mk7N{;JjGzdBJAl#N{CAU z5?zcAFj@g;GQzDIl&VzFlNC1Q)1$;0r8KamGOVikBpD@usxcECPSx^u9GGbkN%eHQ zrHpb)I8q{Zb(rZ9U7aN`=>IZv$zlY3W?o5ZQEqBVW@1U|$WEQ@%~Fg&%ml>DK+FQf LtlOKV*c@a5)Ns-e delta 37 mcmdn=U*hn4iH0qVZBp%}N{m3v1jNih%mT!$+e?+$Y-Ir)P7J&N diff --git a/data/drules_proto_default_dark.txt b/data/drules_proto_default_dark.txt index 7763644496..1e35d90f04 100644 --- a/data/drules_proto_default_dark.txt +++ b/data/drules_proto_default_dark.txt @@ -7,7 +7,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2571847235 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -14731,7 +14731,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296187970 priority: 320 cap: BUTTCAP @@ -14752,10 +14752,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 320 } @@ -14766,10 +14766,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 320 } @@ -14780,10 +14780,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 320 } @@ -14791,13 +14791,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -14805,13 +14805,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15051,7 +15051,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2151957572 priority: 320 } @@ -15193,7 +15193,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1293431320 priority: 320 } @@ -15201,7 +15201,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 857223704 priority: 320 } @@ -15209,7 +15209,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 857223704 priority: 320 } @@ -15397,7 +15397,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1.0 + dd: 1 } priority: 100 } @@ -15408,9 +15408,9 @@ cont { width: 3.2 color: 1296319556 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.2 } priority: 100 @@ -15422,9 +15422,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15436,9 +15436,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15450,9 +15450,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15847,7 +15847,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2151957572 priority: 320 } @@ -16048,7 +16048,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1297438037 priority: 90 join: BEVELJOIN @@ -16251,7 +16251,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1298556518 dashdot { dd: 1.8 @@ -17423,7 +17423,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -17446,7 +17446,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17469,7 +17469,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17492,7 +17492,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17515,7 +17515,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17633,7 +17633,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -17656,7 +17656,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17679,7 +17679,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17702,7 +17702,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17725,7 +17725,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17765,7 +17765,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -17788,7 +17788,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17811,7 +17811,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17834,7 +17834,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17857,7 +17857,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17897,7 +17897,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -17920,7 +17920,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17943,7 +17943,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17966,7 +17966,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -17989,7 +17989,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18015,7 +18015,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 110 @@ -18026,7 +18026,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18037,7 +18037,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18048,7 +18048,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18059,7 +18059,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -20571,7 +20571,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1714104359 dashdot { dd: 4.5 @@ -20591,7 +20591,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1714104359 dashdot { dd: 7.2 @@ -20611,10 +20611,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20631,10 +20631,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20720,19 +20720,19 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1714104359 dashdot { dd: 4.5 @@ -20752,19 +20752,19 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1714104359 dashdot { dd: 7.2 @@ -20784,22 +20784,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20816,22 +20816,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20905,7 +20905,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1714104359 dashdot { dd: 4.5 @@ -20914,17 +20914,17 @@ cont { priority: 180 } lines { - width: 5.0 + width: 5 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -20941,7 +20941,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1714104359 dashdot { dd: 7.2 @@ -20950,17 +20950,17 @@ cont { priority: 180 } lines { - width: 7.0 + width: 7 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -20977,26 +20977,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21013,26 +21013,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1714104359 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21183,7 +21183,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -21199,7 +21199,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -21215,7 +21215,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21231,7 +21231,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21275,7 +21275,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -21291,7 +21291,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -21307,7 +21307,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21323,7 +21323,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21367,7 +21367,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -21383,7 +21383,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -21399,7 +21399,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21415,7 +21415,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21460,7 +21460,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1295200045 dashdot { dd: 7.2 @@ -21484,7 +21484,7 @@ cont { width: 2.6 color: 1295200045 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 160 @@ -21501,7 +21501,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1295200045 dashdot { dd: 10.8 @@ -21521,7 +21521,7 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1295200045 dashdot { dd: 13.5 @@ -21541,10 +21541,10 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 1295200045 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -21561,10 +21561,10 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 1295200045 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -21875,6 +21875,606 @@ cont { } } } +cont { + name: "highway-cycleway-difficult" + element { + scale: 13 + lines { + width: 0.9 + color: 3010346311 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2574138695 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2154708295 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-easy" + element { + scale: 13 + lines { + width: 0.9 + color: 3010346311 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2574138695 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2154708295 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-expert" + element { + scale: 13 + lines { + width: 0.9 + color: 3010346311 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2574138695 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2154708295 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1718500679 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1718500679 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 862862663 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-intermediate" + element { + scale: 13 + lines { + width: 0.9 + color: 3010346311 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2574138695 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2154708295 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1718500679 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} cont { name: "highway-cycleway-tunnel" element { @@ -21945,8 +22545,8 @@ cont { width: 5.8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21977,8 +22577,8 @@ cont { width: 8.2 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22009,8 +22609,8 @@ cont { width: 9.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22041,8 +22641,8 @@ cont { width: 9.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22096,8 +22696,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 cap: BUTTCAP @@ -22114,11 +22714,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 } @@ -22137,7 +22737,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -22157,8 +22757,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 180 } @@ -22177,7 +22777,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22197,7 +22797,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22227,8 +22827,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 cap: BUTTCAP @@ -22249,11 +22849,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 } @@ -22276,7 +22876,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -22300,8 +22900,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 180 } @@ -22324,7 +22924,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22348,7 +22948,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22381,8 +22981,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5.0 - dd: 3.0 + dd: 5 + dd: 3 } priority: 180 cap: BUTTCAP @@ -22404,11 +23004,11 @@ cont { priority: 170 } lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 3.0 + dd: 5 + dd: 3 } priority: 180 } @@ -22432,7 +23032,7 @@ cont { width: 2.4 color: 441140803 dashdot { - dd: 6.0 + dd: 6 dd: 4.2 } priority: 180 @@ -22457,7 +23057,7 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 5.5 } priority: 180 @@ -22482,7 +23082,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 6.7 } priority: 180 @@ -22507,7 +23107,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 6.7 } priority: 180 @@ -22527,7 +23127,7 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -22536,8 +23136,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 cap: BUTTCAP @@ -22554,17 +23154,17 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22595,7 +23195,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22627,8 +23227,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22659,7 +23259,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22691,7 +23291,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22711,11 +23311,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 330 } @@ -22726,7 +23326,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 330 @@ -22738,8 +23338,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 330 } @@ -22750,7 +23350,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 330 @@ -22762,7 +23362,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 330 @@ -22774,11 +23374,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22789,7 +23389,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22801,8 +23401,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22813,7 +23413,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22825,7 +23425,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22840,8 +23440,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 cap: BUTTCAP @@ -22858,11 +23458,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1078675011 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22881,7 +23481,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22896,8 +23496,8 @@ cont { width: 6.8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22917,8 +23517,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22932,8 +23532,8 @@ cont { width: 8.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22953,7 +23553,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22968,8 +23568,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22989,7 +23589,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -23004,8 +23604,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -23025,11 +23625,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -23051,10 +23651,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -23088,11 +23688,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -23112,11 +23712,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -23136,7 +23736,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -23160,7 +23760,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -23197,7 +23797,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -23333,7 +23933,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -23469,7 +24069,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -23515,8 +24115,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23541,8 +24141,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23567,8 +24167,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23593,8 +24193,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23619,8 +24219,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23832,7 +24432,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -23878,7 +24478,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -24071,7 +24671,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -24179,13 +24779,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -24214,7 +24814,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 858532890 priority: 150 cap: BUTTCAP @@ -24243,19 +24843,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -24278,13 +24878,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -24313,13 +24913,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -24444,8 +25044,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -24479,8 +25079,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -24513,8 +25113,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -24547,8 +25147,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24578,17 +25178,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1295523604 priority: 310 } @@ -24614,8 +25214,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24644,17 +25244,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 1295523604 priority: 310 } @@ -24680,8 +25280,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24713,8 +25313,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24834,7 +25434,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -24956,7 +25556,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -25099,7 +25699,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -25173,7 +25773,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -25209,7 +25809,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -25251,13 +25851,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -25448,7 +26048,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -25501,8 +26101,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -25535,8 +26135,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -25569,8 +26169,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25600,17 +26200,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1295523604 priority: 228 } @@ -25636,8 +26236,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25669,8 +26269,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25702,8 +26302,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25735,8 +26335,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25772,7 +26372,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 cap: BUTTCAP @@ -25785,7 +26385,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 cap: BUTTCAP @@ -25805,7 +26405,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -25822,10 +26422,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -25845,7 +26445,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -25865,7 +26465,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -25885,7 +26485,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -25959,7 +26559,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 3.2 } priority: 180 @@ -25981,10 +26581,10 @@ cont { priority: 170 } lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 3.2 } priority: 180 @@ -26009,7 +26609,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 4.7 } priority: 180 @@ -26034,7 +26634,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 6.2 } priority: 180 @@ -26059,7 +26659,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 6.2 } priority: 180 @@ -26083,7 +26683,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26102,7 +26702,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26119,7 +26719,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -26128,7 +26728,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26145,22 +26745,22 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26192,7 +26792,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26224,7 +26824,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26256,7 +26856,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26279,8 +26879,8 @@ cont { width: 0.9 color: 1720994322 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 cap: BUTTCAP @@ -26292,8 +26892,8 @@ cont { width: 1.1 color: 1720994322 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 cap: BUTTCAP @@ -26330,7 +26930,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { dd: 1.8 @@ -26416,8 +27016,8 @@ cont { width: 0.9 color: 1716665907 dashdot { - dd: 1.0 - dd: 4.0 + dd: 1 + dd: 4 } priority: 180 cap: BUTTCAP @@ -26429,8 +27029,8 @@ cont { width: 1.1 color: 1716665907 dashdot { - dd: 1.0 - dd: 4.0 + dd: 1 + dd: 4 } priority: 180 cap: BUTTCAP @@ -26451,7 +27051,7 @@ cont { color: 1716665907 dashdot { dd: 1.6 - dd: 6.0 + dd: 6 } priority: 180 } @@ -26467,11 +27067,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1716665907 dashdot { dd: 1.6 - dd: 6.0 + dd: 6 } priority: 180 } @@ -26491,7 +27091,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26511,7 +27111,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26531,7 +27131,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26554,7 +27154,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26567,7 +27167,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26587,7 +27187,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26604,10 +27204,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26627,7 +27227,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26647,7 +27247,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26667,7 +27267,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26691,7 +27291,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26704,7 +27304,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26724,7 +27324,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26741,26 +27341,26 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1720994322 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 } lines { - width: 5.0 + width: 5 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26780,7 +27380,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26795,8 +27395,8 @@ cont { width: 7.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26816,7 +27416,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26831,8 +27431,8 @@ cont { width: 9.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26852,7 +27452,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26867,8 +27467,8 @@ cont { width: 9.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26888,11 +27488,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -26922,10 +27522,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -26963,11 +27563,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -26983,11 +27583,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27003,7 +27603,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27023,7 +27623,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27046,11 +27646,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27084,10 +27684,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27133,11 +27733,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27157,11 +27757,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27181,7 +27781,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27205,7 +27805,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27238,11 +27838,11 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27290,16 +27890,16 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27317,7 +27917,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -27361,11 +27961,11 @@ cont { cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27393,11 +27993,11 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27425,7 +28025,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27457,7 +28057,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -27480,11 +28080,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27514,10 +28114,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27538,8 +28138,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP @@ -27565,21 +28165,21 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1294673959 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27595,21 +28195,21 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1294673959 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27625,17 +28225,17 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 dashdot { dd: 16.2 @@ -27655,17 +28255,17 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 dashdot { dd: 16.2 @@ -27855,7 +28455,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 290 } @@ -28170,13 +28770,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 290 } @@ -28464,8 +29064,8 @@ cont { width: 4.8 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 289 cap: BUTTCAP @@ -28498,8 +29098,8 @@ cont { width: 5.8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28529,17 +29129,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1296837147 priority: 290 } @@ -28565,8 +29165,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28598,8 +29198,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28631,8 +29231,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28664,8 +29264,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28722,7 +29322,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 226 join: BEVELJOIN @@ -28962,7 +29562,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 226 join: BEVELJOIN @@ -29053,7 +29653,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -29124,7 +29724,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -29286,7 +29886,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 226 join: BEVELJOIN @@ -29338,8 +29938,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 225 cap: BUTTCAP @@ -29372,8 +29972,8 @@ cont { width: 4.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29406,8 +30006,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29439,8 +30039,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29472,8 +30072,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29505,8 +30105,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29538,8 +30138,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29571,7 +30171,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1298092845 priority: 180 cap: BUTTCAP @@ -29605,7 +30205,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 861885229 priority: 180 } @@ -29621,7 +30221,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 861885229 priority: 180 } @@ -29637,7 +30237,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 861885229 priority: 180 } @@ -29653,7 +30253,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 861885229 priority: 180 } @@ -29682,7 +30282,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -29868,7 +30468,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30054,7 +30654,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30071,7 +30671,7 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1297109072 priority: 140 cap: BUTTCAP @@ -30177,7 +30777,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -30324,7 +30924,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30385,8 +30985,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30418,8 +31018,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30451,8 +31051,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30484,8 +31084,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30517,8 +31117,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30660,7 +31260,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30796,7 +31396,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30992,7 +31592,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1296778819 priority: 230 cap: BUTTCAP @@ -31251,7 +31851,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5717555 priority: 270 } @@ -31532,13 +32132,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5717555 priority: 270 } @@ -31837,17 +32437,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1297563187 priority: 270 } @@ -31873,8 +32473,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31906,8 +32506,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31939,8 +32539,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31972,8 +32572,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -32151,7 +32751,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -32200,7 +32800,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -32339,8 +32939,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32365,8 +32965,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32391,8 +32991,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32417,8 +33017,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32443,8 +33043,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32494,7 +33094,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -32510,7 +33110,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -32526,7 +33126,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32542,7 +33142,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32586,7 +33186,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -32602,7 +33202,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -32618,7 +33218,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32634,7 +33234,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32696,13 +33296,13 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -32724,13 +33324,13 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -32752,13 +33352,13 @@ cont { cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32780,13 +33380,13 @@ cont { cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32821,7 +33421,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -32837,7 +33437,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -32853,7 +33453,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32869,7 +33469,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32913,7 +33513,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -32929,7 +33529,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -32945,7 +33545,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -32961,7 +33561,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -33005,7 +33605,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -33021,7 +33621,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -33037,7 +33637,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -33053,7 +33653,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -33202,7 +33802,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 659244611 dashdot { dd: 1.8 @@ -33222,7 +33822,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -33242,7 +33842,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -33262,10 +33862,10 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33282,10 +33882,10 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33324,13 +33924,13 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 659244611 dashdot { dd: 1.8 @@ -33350,19 +33950,19 @@ cont { element { scale: 17 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -33382,19 +33982,19 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -33414,22 +34014,22 @@ cont { element { scale: 19 lines { - width: 14.0 + width: 14 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33446,22 +34046,22 @@ cont { element { scale: 20 lines { - width: 14.0 + width: 14 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33494,7 +34094,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 659244611 dashdot { dd: 1.8 @@ -33514,7 +34114,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -33523,17 +34123,17 @@ cont { priority: 330 } lines { - width: 7.0 + width: 7 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33550,7 +34150,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -33559,17 +34159,17 @@ cont { priority: 330 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33586,26 +34186,26 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33622,26 +34222,26 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33761,7 +34361,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -34009,13 +34609,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -34281,17 +34881,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 priority: 250 } @@ -34317,8 +34917,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34350,8 +34950,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34383,8 +34983,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34416,8 +35016,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34561,7 +35161,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -34602,7 +35202,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -34724,8 +35324,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34742,8 +35342,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34760,8 +35360,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34786,8 +35386,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34812,8 +35412,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34841,7 +35441,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34854,7 +35454,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34875,8 +35475,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34895,8 +35495,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34915,7 +35515,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -34935,7 +35535,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34955,7 +35555,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34978,7 +35578,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34991,7 +35591,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35012,8 +35612,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35032,8 +35632,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35052,7 +35652,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35072,7 +35672,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35092,7 +35692,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35115,7 +35715,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35134,7 +35734,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35161,8 +35761,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35178,13 +35778,13 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -35193,8 +35793,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35225,7 +35825,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35257,7 +35857,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35289,7 +35889,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35312,7 +35912,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35325,7 +35925,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35346,8 +35946,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35366,8 +35966,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35386,7 +35986,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35406,7 +36006,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35426,7 +36026,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35449,7 +36049,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35462,7 +36062,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35483,8 +36083,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35503,23 +36103,23 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } lines { - width: 6.0 + width: 6 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35539,7 +36139,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35554,8 +36154,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35575,7 +36175,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35590,8 +36190,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35611,7 +36211,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35626,8 +36226,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35834,7 +36434,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -35880,7 +36480,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -36073,7 +36673,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -36181,13 +36781,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -36216,7 +36816,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 858532890 priority: 150 cap: BUTTCAP @@ -36245,19 +36845,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -36280,13 +36880,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -36315,13 +36915,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -36446,8 +37046,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -36481,8 +37081,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -36515,8 +37115,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -36549,8 +37149,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36580,17 +37180,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1295523604 priority: 310 } @@ -36616,8 +37216,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36646,17 +37246,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 1295523604 priority: 310 } @@ -36682,8 +37282,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36715,8 +37315,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36773,7 +37373,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -36895,7 +37495,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -37038,7 +37638,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -37112,7 +37712,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -37148,7 +37748,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -37190,13 +37790,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -37387,7 +37987,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297691427 priority: 228 join: BEVELJOIN @@ -37440,8 +38040,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -37474,8 +38074,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -37508,8 +38108,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37539,17 +38139,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1295523604 priority: 228 } @@ -37575,8 +38175,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37608,8 +38208,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37641,8 +38241,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37674,8 +38274,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37778,7 +38378,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -37932,7 +38532,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -38116,13 +38716,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -38324,17 +38924,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 priority: 250 } @@ -38353,8 +38953,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38379,8 +38979,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38405,8 +39005,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38431,8 +39031,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40808,7 +41408,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296187970 priority: 360 cap: BUTTCAP @@ -40829,10 +41429,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 360 } @@ -40843,10 +41443,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 360 } @@ -40857,10 +41457,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 360 } @@ -40868,13 +41468,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -40882,13 +41482,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -42796,8 +43396,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44.0 - offset: 30.0 + step: 44 + offset: 30 } } } @@ -42807,8 +43407,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54.0 - offset: 50.0 + step: 54 + offset: 50 } } } @@ -42818,8 +43418,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64.0 - offset: 70.0 + step: 64 + offset: 70 } } } @@ -42829,8 +43429,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42840,8 +43440,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42851,8 +43451,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42993,7 +43593,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43008,7 +43608,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43023,7 +43623,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43038,7 +43638,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43053,7 +43653,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43088,7 +43688,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 join: BEVELJOIN @@ -43105,7 +43705,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43279,7 +43879,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43294,7 +43894,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43309,7 +43909,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -43370,7 +43970,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43386,7 +43986,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -51661,7 +52261,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 858401316 priority: 160 } @@ -51678,7 +52278,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 858401316 priority: 160 } @@ -51695,7 +52295,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 858401316 priority: 160 } @@ -51712,7 +52312,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 858401316 priority: 160 } @@ -51933,7 +52533,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1291845632 priority: 30 cap: BUTTCAP @@ -51945,7 +52545,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291845632 priority: 30 } @@ -51974,7 +52574,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 priority: 30 } @@ -51992,7 +52592,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -52010,7 +52610,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -52183,7 +52783,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2567902208 priority: 80 cap: BUTTCAP @@ -52201,7 +52801,7 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 2567902208 priority: 80 } @@ -52209,7 +52809,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 2567902208 priority: 80 } @@ -52225,7 +52825,7 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 2567902208 priority: 80 } @@ -52233,7 +52833,7 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 2567902208 priority: 80 } @@ -52247,9 +52847,9 @@ cont { width: 3.5 color: 1296187970 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.5 } priority: 100 @@ -52258,13 +52858,13 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1296187970 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 - dd: 2.0 + dd: 6 + dd: 3 + dd: 3 + dd: 2 } priority: 100 } @@ -52272,13 +52872,13 @@ cont { element { scale: 18 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52286,13 +52886,13 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52300,13 +52900,13 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52540,7 +53140,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1291845632 priority: 30 cap: BUTTCAP @@ -52552,7 +53152,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291845632 priority: 30 } @@ -52581,7 +53181,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 priority: 30 } @@ -52599,7 +53199,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -52617,7 +53217,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -54170,7 +54770,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 2575126307 dashdot { dd: 1.4 @@ -54183,7 +54783,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 2575126307 dashdot { dd: 1.5 @@ -54199,7 +54799,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -54214,8 +54814,8 @@ cont { color: 2575126307 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -54227,9 +54827,9 @@ cont { width: 9.5 color: 2155695907 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -54241,9 +54841,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54255,9 +54855,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54604,7 +55204,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 2575126307 dashdot { dd: 1.4 @@ -54617,7 +55217,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 2575126307 dashdot { dd: 1.5 @@ -54633,7 +55233,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -54648,8 +55248,8 @@ cont { color: 2575126307 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -54661,9 +55261,9 @@ cont { width: 9.5 color: 2155695907 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -54675,9 +55275,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54689,9 +55289,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -56099,7 +56699,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 cap: BUTTCAP @@ -60710,7 +61310,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2573352319 priority: 120 cap: BUTTCAP @@ -60819,7 +61419,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2569151010 priority: 120 cap: BUTTCAP @@ -60928,7 +61528,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2567645179 priority: 120 cap: BUTTCAP @@ -61037,7 +61637,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2570269491 priority: 120 cap: BUTTCAP @@ -61146,7 +61746,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2582553856 priority: 120 cap: BUTTCAP @@ -61255,7 +61855,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2583432731 priority: 120 cap: BUTTCAP @@ -61364,7 +61964,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2573200174 priority: 120 cap: BUTTCAP @@ -61477,7 +62077,7 @@ cont { color: 2573352319 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 cap: BUTTCAP @@ -61490,7 +62090,7 @@ cont { color: 2573352319 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 cap: BUTTCAP @@ -61510,7 +62110,7 @@ cont { width: 1.5 color: 2573352319 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61527,10 +62127,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 2573352319 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61547,10 +62147,10 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 2573352319 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61567,10 +62167,10 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 2573352319 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61587,10 +62187,10 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 2573352319 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61828,7 +62428,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2573352319 priority: 120 cap: BUTTCAP @@ -68150,16 +68750,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 2150839091 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2570269491 priority: 350 } @@ -68167,16 +68767,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 2150839091 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2570269491 priority: 350 } @@ -68728,7 +69328,7 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -68752,7 +69352,7 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -68776,7 +69376,7 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -68866,7 +69466,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68879,7 +69479,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68891,7 +69491,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68903,7 +69503,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68915,7 +69515,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68927,7 +69527,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68942,7 +69542,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68954,7 +69554,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68966,7 +69566,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68978,7 +69578,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -68990,7 +69590,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1296316234 dashdot { dd: 1.8 @@ -69015,7 +69615,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69024,7 +69624,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69033,7 +69633,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69042,7 +69642,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -69050,7 +69650,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69058,7 +69658,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69066,7 +69666,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69074,7 +69674,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69095,7 +69695,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69104,7 +69704,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69113,7 +69713,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69122,7 +69722,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -69130,7 +69730,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69138,7 +69738,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69146,7 +69746,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69154,7 +69754,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69175,7 +69775,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69184,7 +69784,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69193,7 +69793,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69202,7 +69802,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -69210,7 +69810,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69218,7 +69818,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69226,7 +69826,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69234,7 +69834,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -69480,7 +70080,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -69515,7 +70115,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -69532,7 +70132,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69549,7 +70149,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69566,7 +70166,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69586,7 +70186,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 858532890 priority: 50 cap: BUTTCAP @@ -69607,7 +70207,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -69631,7 +70231,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 40 cap: BUTTCAP @@ -69660,7 +70260,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 40 cap: BUTTCAP @@ -69672,7 +70272,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -69695,13 +70295,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69724,13 +70324,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69753,13 +70353,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -69779,7 +70379,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -69805,7 +70405,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69813,7 +70413,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69821,7 +70421,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69829,7 +70429,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69840,7 +70440,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -69866,7 +70466,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69874,7 +70474,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69882,7 +70482,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69890,7 +70490,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69901,7 +70501,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -69927,7 +70527,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69935,7 +70535,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69943,7 +70543,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69951,7 +70551,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69979,7 +70579,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69987,7 +70587,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -69995,7 +70595,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70003,7 +70603,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70031,7 +70631,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70039,7 +70639,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70047,7 +70647,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70055,7 +70655,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70083,7 +70683,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70091,7 +70691,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70099,7 +70699,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70107,7 +70707,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -70334,7 +70934,7 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -70358,7 +70958,7 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -70382,7 +70982,7 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP @@ -70514,7 +71114,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -70549,7 +71149,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -70558,7 +71158,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -70566,7 +71166,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70575,7 +71175,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -70583,7 +71183,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70592,7 +71192,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -70600,7 +71200,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70609,7 +71209,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -70620,7 +71220,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -70701,7 +71301,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70718,7 +71318,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70735,7 +71335,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70755,7 +71355,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -70790,7 +71390,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -70826,7 +71426,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -70884,13 +71484,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70913,13 +71513,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70942,13 +71542,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -70968,7 +71568,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -71000,8 +71600,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71019,8 +71619,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71047,8 +71647,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71074,8 +71674,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71089,7 +71689,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71101,8 +71701,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71116,7 +71716,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71128,8 +71728,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71143,7 +71743,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71155,8 +71755,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71193,7 +71793,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -71214,7 +71814,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -71238,7 +71838,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71267,7 +71867,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71279,7 +71879,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -71288,7 +71888,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -71302,13 +71902,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71317,7 +71917,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -71331,13 +71931,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71346,7 +71946,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -71360,13 +71960,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -71375,7 +71975,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -71434,7 +72034,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 280 cap: BUTTCAP @@ -71446,8 +72046,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71463,8 +72063,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71480,8 +72080,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71497,8 +72097,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71514,8 +72114,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71576,7 +72176,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -71597,7 +72197,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1296316234 priority: 280 cap: BUTTCAP @@ -71621,8 +72221,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71635,7 +72235,7 @@ cont { element { scale: 17 lines { - width: 9.0 + width: 9 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71650,8 +72250,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71679,8 +72279,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71708,8 +72308,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71737,8 +72337,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71796,8 +72396,8 @@ cont { width: 3.8 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71812,17 +72412,17 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1296316234 priority: 280 cap: BUTTCAP @@ -71834,8 +72434,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71843,8 +72443,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71861,8 +72461,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71870,8 +72470,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71888,8 +72488,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71897,8 +72497,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71915,8 +72515,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71924,8 +72524,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71942,8 +72542,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71951,8 +72551,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71969,7 +72569,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -71979,7 +72579,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72060,7 +72660,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72077,7 +72677,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72094,7 +72694,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72114,7 +72714,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72124,7 +72724,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72159,7 +72759,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -72195,7 +72795,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -72253,13 +72853,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72282,13 +72882,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72311,13 +72911,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72337,7 +72937,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72347,7 +72947,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72379,8 +72979,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72398,8 +72998,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72426,8 +73026,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72453,8 +73053,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72468,7 +73068,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72480,8 +73080,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72495,7 +73095,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72507,8 +73107,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72522,7 +73122,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -72534,8 +73134,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72577,7 +73177,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72594,7 +73194,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72611,7 +73211,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72631,7 +73231,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -72686,13 +73286,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72715,13 +73315,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72744,13 +73344,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72773,8 +73373,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72800,8 +73400,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72815,7 +73415,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72827,8 +73427,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72842,7 +73442,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72854,8 +73454,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72869,7 +73469,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72881,8 +73481,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72933,7 +73533,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72950,7 +73550,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -72967,7 +73567,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73002,7 +73602,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -73057,13 +73657,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73086,13 +73686,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73115,13 +73715,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73144,8 +73744,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73163,8 +73763,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73190,8 +73790,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73205,7 +73805,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73217,8 +73817,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73232,7 +73832,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73244,8 +73844,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73259,7 +73859,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -73271,8 +73871,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73289,7 +73889,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73299,7 +73899,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73412,7 +74012,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73437,7 +74037,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73462,7 +74062,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73490,7 +74090,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73500,7 +74100,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73535,7 +74135,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -73587,7 +74187,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -73661,13 +74261,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73698,13 +74298,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73735,13 +74335,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73769,7 +74369,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73779,7 +74379,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73811,8 +74411,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73838,8 +74438,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73874,8 +74474,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73909,8 +74509,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73932,7 +74532,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73944,8 +74544,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73967,7 +74567,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73979,8 +74579,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -74002,7 +74602,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74014,8 +74614,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -74069,17 +74669,17 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74091,8 +74691,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74119,8 +74719,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74134,7 +74734,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -74143,17 +74743,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -74161,7 +74761,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74170,17 +74770,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -74188,7 +74788,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74197,17 +74797,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -74215,7 +74815,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74224,17 +74824,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 3682365 priority: 210 } @@ -74245,7 +74845,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74297,7 +74897,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74314,7 +74914,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74331,7 +74931,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74357,7 +74957,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74396,7 +74996,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -74451,13 +75051,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74480,13 +75080,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74509,13 +75109,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74535,7 +75135,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74547,8 +75147,8 @@ cont { width: 3.1 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74566,8 +75166,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74585,8 +75185,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74612,8 +75212,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74627,7 +75227,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74639,8 +75239,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74654,7 +75254,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74666,8 +75266,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74681,7 +75281,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 1643545 dashdot { dd: 8.1 @@ -74693,8 +75293,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -95811,7 +96411,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -95846,7 +96446,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -95863,7 +96463,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -95880,7 +96480,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -95897,7 +96497,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -95917,7 +96517,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -95938,7 +96538,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -95962,7 +96562,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -95991,7 +96591,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP @@ -96003,7 +96603,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -96026,13 +96626,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -96055,13 +96655,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -96084,13 +96684,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -108188,7 +108788,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108196,7 +108796,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108204,7 +108804,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108212,7 +108812,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108258,7 +108858,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108266,7 +108866,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108274,7 +108874,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108282,7 +108882,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108328,7 +108928,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108336,7 +108936,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108344,7 +108944,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108352,7 +108952,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -108483,7 +109083,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108497,7 +109097,7 @@ cont { element { scale: 8 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108511,7 +109111,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108525,7 +109125,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108546,7 +109146,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108567,7 +109167,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108588,7 +109188,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108608,7 +109208,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108628,7 +109228,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108648,7 +109248,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108667,7 +109267,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108686,7 +109286,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108705,7 +109305,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -108724,7 +109324,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -123488,7 +124088,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 cap: BUTTCAP @@ -123611,7 +124211,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2151825986 priority: 30 cap: BUTTCAP @@ -123631,14 +124231,14 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2151825986 priority: 30 } area { color: 3881787 border { - width: 1.0 + width: 1 color: 6381921 } priority: 30 @@ -123661,7 +124261,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -123677,14 +124277,14 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -123700,14 +124300,14 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -123723,14 +124323,14 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -123788,7 +124388,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -123800,7 +124400,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -123812,7 +124412,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -123824,7 +124424,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -123836,7 +124436,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124033,7 +124633,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124045,7 +124645,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124057,7 +124657,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124069,7 +124669,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124081,7 +124681,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 1291855390 dashdot { dd: 2.7 @@ -124112,7 +124712,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 cap: BUTTCAP @@ -124260,7 +124860,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 join: BEVELJOIN @@ -124446,7 +125046,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 cap: BUTTCAP @@ -124572,7 +125172,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 priority: -990 cap: BUTTCAP @@ -124702,7 +125302,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1292247078 dashdot { dd: 2.7 @@ -124971,7 +125571,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2151825986 priority: 330 cap: BUTTCAP @@ -124987,7 +125587,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2151825986 priority: 330 } @@ -125017,7 +125617,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2151825986 priority: 330 } @@ -125032,7 +125632,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 330 } @@ -125047,7 +125647,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 330 } diff --git a/data/drules_proto_default_light.bin b/data/drules_proto_default_light.bin index b96084264b59531036461f589f1f5408cf0d6db1..1436b157b92f69a87c27b7d19fe6d95bd531a520 100644 GIT binary patch delta 1299 zcmbREOQNAmvSAD3M=9f9%v@3#nduqjiIuv^mB~4&AVx}NT3TjuX-sX)4<>xHfbTCG{glz!P2vs zA-aDqf|)N2H~$X~6(V?47J*OMp04%iD2arbi^z z)88**lv4t`0W(!%SBIH4(bZW3Bj7JHmn=pEWagEm7UiarG_-$}74D**r@VDtR| delta 37 ncmZqZlAQQUqG1c;N2&G)N{m3v1jNih%mT!$+aD;gDJTH|FsBa0 diff --git a/data/drules_proto_default_light.txt b/data/drules_proto_default_light.txt index cc017f11f4..a7d097dbb8 100644 --- a/data/drules_proto_default_light.txt +++ b/data/drules_proto_default_light.txt @@ -7,7 +7,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2583230712 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -14731,7 +14731,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1304608947 priority: 320 cap: BUTTCAP @@ -14752,10 +14752,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 320 } @@ -14766,10 +14766,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 320 } @@ -14780,10 +14780,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 320 } @@ -14791,13 +14791,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -14805,13 +14805,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15051,7 +15051,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2156431496 priority: 320 } @@ -15193,7 +15193,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1301133440 priority: 320 } @@ -15201,7 +15201,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 864925824 priority: 320 } @@ -15209,7 +15209,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 864925824 priority: 320 } @@ -15397,7 +15397,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1.0 + dd: 1 } priority: 100 } @@ -15408,9 +15408,9 @@ cont { width: 3.2 color: 1300793480 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.2 } priority: 100 @@ -15422,9 +15422,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15436,9 +15436,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15450,9 +15450,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15847,7 +15847,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2156431496 priority: 320 } @@ -16048,7 +16048,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1298359132 priority: 90 join: BEVELJOIN @@ -16251,7 +16251,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1299411563 dashdot { dd: 1.8 @@ -17423,7 +17423,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -17446,7 +17446,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17469,7 +17469,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17492,7 +17492,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17515,7 +17515,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17633,7 +17633,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -17656,7 +17656,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17679,7 +17679,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17702,7 +17702,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17725,7 +17725,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17765,7 +17765,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -17788,7 +17788,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17811,7 +17811,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17834,7 +17834,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17857,7 +17857,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17897,7 +17897,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -17920,7 +17920,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17943,7 +17943,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17966,7 +17966,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -17989,7 +17989,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18015,7 +18015,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 110 @@ -18026,7 +18026,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18037,7 +18037,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18048,7 +18048,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18059,7 +18059,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -20571,7 +20571,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1715287582 dashdot { dd: 4.5 @@ -20591,7 +20591,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1715287582 dashdot { dd: 7.2 @@ -20611,10 +20611,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20631,10 +20631,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20720,19 +20720,19 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1715287582 dashdot { dd: 4.5 @@ -20752,19 +20752,19 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1715287582 dashdot { dd: 7.2 @@ -20784,22 +20784,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20816,22 +20816,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 @@ -20905,7 +20905,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1715287582 dashdot { dd: 4.5 @@ -20914,17 +20914,17 @@ cont { priority: 180 } lines { - width: 5.0 + width: 5 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -20941,7 +20941,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1715287582 dashdot { dd: 7.2 @@ -20950,17 +20950,17 @@ cont { priority: 180 } lines { - width: 7.0 + width: 7 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -20977,26 +20977,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21013,26 +21013,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1715287582 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21183,7 +21183,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -21199,7 +21199,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -21215,7 +21215,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21231,7 +21231,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21275,7 +21275,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -21291,7 +21291,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -21307,7 +21307,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21323,7 +21323,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21367,7 +21367,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -21383,7 +21383,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -21399,7 +21399,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21415,7 +21415,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21460,7 +21460,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1304148906 dashdot { dd: 7.2 @@ -21484,7 +21484,7 @@ cont { width: 2.6 color: 1304148906 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 160 @@ -21501,7 +21501,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1304148906 dashdot { dd: 10.8 @@ -21521,7 +21521,7 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1304148906 dashdot { dd: 13.5 @@ -21541,10 +21541,10 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 1304148906 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -21561,10 +21561,10 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 1304148906 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -21875,6 +21875,606 @@ cont { } } } +cont { + name: "highway-cycleway-difficult" + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-easy" + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-expert" + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-intermediate" + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} cont { name: "highway-cycleway-tunnel" element { @@ -21945,8 +22545,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21977,8 +22577,8 @@ cont { width: 8.2 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22009,8 +22609,8 @@ cont { width: 9.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22041,8 +22641,8 @@ cont { width: 9.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22096,8 +22696,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 cap: BUTTCAP @@ -22114,11 +22714,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 } @@ -22137,7 +22737,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -22157,8 +22757,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 180 } @@ -22177,7 +22777,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22197,7 +22797,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22227,8 +22827,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 cap: BUTTCAP @@ -22249,11 +22849,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 180 } @@ -22276,7 +22876,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -22300,8 +22900,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 180 } @@ -22324,7 +22924,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22348,7 +22948,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 180 @@ -22381,8 +22981,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5.0 - dd: 3.0 + dd: 5 + dd: 3 } priority: 180 cap: BUTTCAP @@ -22404,11 +23004,11 @@ cont { priority: 170 } lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 3.0 + dd: 5 + dd: 3 } priority: 180 } @@ -22432,7 +23032,7 @@ cont { width: 2.4 color: 452524280 dashdot { - dd: 6.0 + dd: 6 dd: 4.2 } priority: 180 @@ -22457,7 +23057,7 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 5.5 } priority: 180 @@ -22482,7 +23082,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 6.7 } priority: 180 @@ -22507,7 +23107,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 6.7 } priority: 180 @@ -22527,7 +23127,7 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -22536,8 +23136,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 cap: BUTTCAP @@ -22554,17 +23154,17 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22595,7 +23195,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22627,8 +23227,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22659,7 +23259,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22691,7 +23291,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22711,11 +23311,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 330 } @@ -22726,7 +23326,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 330 @@ -22738,8 +23338,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 330 } @@ -22750,7 +23350,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 330 @@ -22762,7 +23362,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 330 @@ -22774,11 +23374,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22789,7 +23389,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22801,8 +23401,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22813,7 +23413,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22825,7 +23425,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22840,8 +23440,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 cap: BUTTCAP @@ -22858,11 +23458,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 1090058488 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 155 } @@ -22881,7 +23481,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 155 @@ -22896,8 +23496,8 @@ cont { width: 6.8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22917,8 +23517,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8.0 - dd: 3.0 + dd: 8 + dd: 3 } priority: 155 } @@ -22932,8 +23532,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22953,7 +23553,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -22968,8 +23568,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22989,7 +23589,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10.0 + dd: 10 dd: 3.5 } priority: 155 @@ -23004,8 +23604,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -23025,11 +23625,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -23051,10 +23651,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -23088,11 +23688,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -23112,11 +23712,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -23136,7 +23736,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -23160,7 +23760,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -23197,7 +23797,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -23333,7 +23933,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -23469,7 +24069,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -23515,8 +24115,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23541,8 +24141,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23567,8 +24167,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23593,8 +24193,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23619,8 +24219,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -23826,7 +24426,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -23870,7 +24470,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -24057,7 +24657,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -24162,13 +24762,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -24196,7 +24796,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 871230427 priority: 150 cap: BUTTCAP @@ -24224,19 +24824,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -24258,13 +24858,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -24292,13 +24892,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -24420,8 +25020,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -24454,8 +25054,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -24487,8 +25087,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -24520,8 +25120,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24550,17 +25150,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1308402786 priority: 310 } @@ -24585,8 +25185,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24614,17 +25214,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 1308402786 priority: 310 } @@ -24649,8 +25249,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24681,8 +25281,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -24800,7 +25400,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -24917,7 +25517,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -25054,7 +25654,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -25125,7 +25725,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -25160,7 +25760,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -25201,13 +25801,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -25392,7 +25992,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -25443,8 +26043,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -25476,8 +26076,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -25509,8 +26109,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25539,17 +26139,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308402786 priority: 228 } @@ -25574,8 +26174,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25606,8 +26206,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25638,8 +26238,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25670,8 +26270,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -25706,7 +26306,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 cap: BUTTCAP @@ -25719,7 +26319,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 cap: BUTTCAP @@ -25739,7 +26339,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -25756,10 +26356,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -25779,7 +26379,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -25799,7 +26399,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -25819,7 +26419,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -25893,7 +26493,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 3.2 } priority: 180 @@ -25915,10 +26515,10 @@ cont { priority: 170 } lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 3.2 } priority: 180 @@ -25943,7 +26543,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 4.7 } priority: 180 @@ -25968,7 +26568,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 6.2 } priority: 180 @@ -25993,7 +26593,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 6.2 } priority: 180 @@ -26017,7 +26617,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26036,7 +26636,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26053,7 +26653,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -26062,7 +26662,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26079,22 +26679,22 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26126,7 +26726,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26158,7 +26758,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26190,7 +26790,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26213,8 +26813,8 @@ cont { width: 0.9 color: 1721782290 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 cap: BUTTCAP @@ -26226,8 +26826,8 @@ cont { width: 1.1 color: 1721782290 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 cap: BUTTCAP @@ -26264,7 +26864,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { dd: 1.8 @@ -26350,8 +26950,8 @@ cont { width: 0.9 color: 1715283479 dashdot { - dd: 1.0 - dd: 4.0 + dd: 1 + dd: 4 } priority: 180 cap: BUTTCAP @@ -26363,8 +26963,8 @@ cont { width: 1.1 color: 1715283479 dashdot { - dd: 1.0 - dd: 4.0 + dd: 1 + dd: 4 } priority: 180 cap: BUTTCAP @@ -26385,7 +26985,7 @@ cont { color: 1715283479 dashdot { dd: 1.6 - dd: 6.0 + dd: 6 } priority: 180 } @@ -26401,11 +27001,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1715283479 dashdot { dd: 1.6 - dd: 6.0 + dd: 6 } priority: 180 } @@ -26425,7 +27025,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26445,7 +27045,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26465,7 +27065,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8.0 + dd: 8 } priority: 180 } @@ -26488,7 +27088,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26501,7 +27101,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26521,7 +27121,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26538,10 +27138,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26561,7 +27161,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26581,7 +27181,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26601,7 +27201,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26625,7 +27225,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26638,7 +27238,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 cap: BUTTCAP @@ -26658,7 +27258,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -26675,26 +27275,26 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 1721782290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 } lines { - width: 5.0 + width: 5 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26714,7 +27314,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -26729,8 +27329,8 @@ cont { width: 7.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26750,7 +27350,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26765,8 +27365,8 @@ cont { width: 9.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26786,7 +27386,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -26801,8 +27401,8 @@ cont { width: 9.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -26822,11 +27422,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -26856,10 +27456,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -26897,11 +27497,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -26917,11 +27517,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -26937,7 +27537,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -26957,7 +27557,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -26980,11 +27580,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27018,10 +27618,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27067,11 +27667,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27091,11 +27691,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27115,7 +27715,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -27139,7 +27739,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -27172,11 +27772,11 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27224,16 +27824,16 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27251,7 +27851,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -27295,11 +27895,11 @@ cont { cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27327,11 +27927,11 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27359,7 +27959,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -27391,7 +27991,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -27414,11 +28014,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -27448,10 +28048,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -27472,8 +28072,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP @@ -27499,21 +28099,21 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1308622847 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -27529,21 +28129,21 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1308622847 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -27559,17 +28159,17 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 dashdot { dd: 16.2 @@ -27589,17 +28189,17 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 dashdot { dd: 16.2 @@ -27783,7 +28383,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16752972 priority: 290 } @@ -28087,13 +28687,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16752972 priority: 290 } @@ -28372,8 +28972,8 @@ cont { width: 4.8 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 289 cap: BUTTCAP @@ -28405,8 +29005,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28435,17 +29035,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308402786 priority: 290 } @@ -28470,8 +29070,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28502,8 +29102,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28534,8 +29134,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28566,8 +29166,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -28622,7 +29222,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1308595264 priority: 226 join: BEVELJOIN @@ -28852,7 +29452,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1308595264 priority: 226 join: BEVELJOIN @@ -28940,7 +29540,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -29009,7 +29609,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -29166,7 +29766,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1308595264 priority: 226 join: BEVELJOIN @@ -29216,8 +29816,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 225 cap: BUTTCAP @@ -29249,8 +29849,8 @@ cont { width: 4.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29282,8 +29882,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29314,8 +29914,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29346,8 +29946,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29378,8 +29978,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29410,8 +30010,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -29442,7 +30042,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1298356016 priority: 180 cap: BUTTCAP @@ -29476,7 +30076,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 862148400 priority: 180 } @@ -29492,7 +30092,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 862148400 priority: 180 } @@ -29508,7 +30108,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 862148400 priority: 180 } @@ -29524,7 +30124,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 862148400 priority: 180 } @@ -29553,7 +30153,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -29733,7 +30333,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -29913,7 +30513,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -29930,7 +30530,7 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 priority: 140 cap: BUTTCAP @@ -30034,7 +30634,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -30177,7 +30777,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30237,8 +30837,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30269,8 +30869,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30301,8 +30901,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30333,8 +30933,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30365,8 +30965,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -30507,7 +31107,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30643,7 +31243,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30839,7 +31439,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1308162296 priority: 230 cap: BUTTCAP @@ -31094,7 +31694,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16760658 priority: 270 } @@ -31366,13 +31966,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16760658 priority: 270 } @@ -31662,17 +32262,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308606290 priority: 270 } @@ -31697,8 +32297,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31729,8 +32329,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31761,8 +32361,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31793,8 +32393,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -31971,7 +32571,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -32020,7 +32620,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -32159,8 +32759,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32185,8 +32785,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32211,8 +32811,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32237,8 +32837,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32263,8 +32863,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -32314,7 +32914,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32330,7 +32930,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32346,7 +32946,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32362,7 +32962,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32406,7 +33006,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32422,7 +33022,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32438,7 +33038,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32454,7 +33054,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32516,13 +33116,13 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32544,13 +33144,13 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32572,13 +33172,13 @@ cont { cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32600,13 +33200,13 @@ cont { cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32641,7 +33241,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32657,7 +33257,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32673,7 +33273,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32689,7 +33289,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32733,7 +33333,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32749,7 +33349,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32765,7 +33365,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32781,7 +33381,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32825,7 +33425,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -32841,7 +33441,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -32857,7 +33457,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -32873,7 +33473,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -33022,7 +33622,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 670628088 dashdot { dd: 1.8 @@ -33042,7 +33642,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -33062,7 +33662,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -33082,10 +33682,10 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33102,10 +33702,10 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33144,13 +33744,13 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 670628088 dashdot { dd: 1.8 @@ -33170,19 +33770,19 @@ cont { element { scale: 17 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -33202,19 +33802,19 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -33234,22 +33834,22 @@ cont { element { scale: 19 lines { - width: 14.0 + width: 14 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33266,22 +33866,22 @@ cont { element { scale: 20 lines { - width: 14.0 + width: 14 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -33314,7 +33914,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 670628088 dashdot { dd: 1.8 @@ -33334,7 +33934,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -33343,17 +33943,17 @@ cont { priority: 330 } lines { - width: 7.0 + width: 7 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33370,7 +33970,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -33379,17 +33979,17 @@ cont { priority: 330 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33406,26 +34006,26 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33442,26 +34042,26 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -33578,7 +34178,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -33818,13 +34418,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -34082,17 +34682,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 priority: 250 } @@ -34117,8 +34717,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34149,8 +34749,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34181,8 +34781,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34213,8 +34813,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -34357,7 +34957,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -34398,7 +34998,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -34520,8 +35120,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34538,8 +35138,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34556,8 +35156,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34582,8 +35182,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34608,8 +35208,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -34637,7 +35237,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34650,7 +35250,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34671,8 +35271,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34691,8 +35291,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34711,7 +35311,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -34731,7 +35331,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34751,7 +35351,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34774,7 +35374,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34787,7 +35387,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34808,8 +35408,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34828,8 +35428,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34848,7 +35448,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -34868,7 +35468,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34888,7 +35488,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -34911,7 +35511,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34930,7 +35530,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -34957,8 +35557,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -34974,13 +35574,13 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -34989,8 +35589,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35021,7 +35621,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35053,7 +35653,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35085,7 +35685,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35108,7 +35708,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35121,7 +35721,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35142,8 +35742,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35162,8 +35762,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35182,7 +35782,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35202,7 +35802,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35222,7 +35822,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35245,7 +35845,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35258,7 +35858,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -35279,8 +35879,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } @@ -35299,23 +35899,23 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 } lines { - width: 6.0 + width: 6 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35335,7 +35935,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -35350,8 +35950,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35371,7 +35971,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35386,8 +35986,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35407,7 +36007,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12.0 + dd: 12 dd: 3.5 } priority: 180 @@ -35422,8 +36022,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35624,7 +36224,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -35668,7 +36268,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -35855,7 +36455,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -35960,13 +36560,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -35994,7 +36594,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 871230427 priority: 150 cap: BUTTCAP @@ -36022,19 +36622,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -36056,13 +36656,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -36090,13 +36690,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -36218,8 +36818,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -36252,8 +36852,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -36285,8 +36885,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -36318,8 +36918,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36348,17 +36948,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 1308402786 priority: 310 } @@ -36383,8 +36983,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36412,17 +37012,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 1308402786 priority: 310 } @@ -36447,8 +37047,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36479,8 +37079,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -36535,7 +37135,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -36652,7 +37252,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -36789,7 +37389,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -36860,7 +37460,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -36895,7 +37495,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -36936,13 +37536,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -37127,7 +37727,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1308591910 priority: 228 join: BEVELJOIN @@ -37178,8 +37778,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -37211,8 +37811,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -37244,8 +37844,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37274,17 +37874,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308402786 priority: 228 } @@ -37309,8 +37909,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37341,8 +37941,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37373,8 +37973,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37405,8 +38005,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -37508,7 +38108,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -37662,7 +38262,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -37846,13 +38446,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -38054,17 +38654,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 priority: 250 } @@ -38083,8 +38683,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38109,8 +38709,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38135,8 +38735,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -38161,8 +38761,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40538,7 +41138,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1304608947 priority: 360 cap: BUTTCAP @@ -40559,10 +41159,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 360 } @@ -40573,10 +41173,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 360 } @@ -40587,10 +41187,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 360 } @@ -40598,13 +41198,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -40612,13 +41212,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -42526,8 +43126,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44.0 - offset: 30.0 + step: 44 + offset: 30 } } } @@ -42537,8 +43137,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54.0 - offset: 50.0 + step: 54 + offset: 50 } } } @@ -42548,8 +43148,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64.0 - offset: 70.0 + step: 64 + offset: 70 } } } @@ -42559,8 +43159,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42570,8 +43170,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42581,8 +43181,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -42723,7 +43323,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -42738,7 +43338,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -42753,7 +43353,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -42768,7 +43368,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -42783,7 +43383,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 } @@ -42818,7 +43418,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 join: BEVELJOIN @@ -42835,7 +43435,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43009,7 +43609,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2572580182 priority: 60 } @@ -43024,7 +43624,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2572580182 priority: 60 } @@ -43039,7 +43639,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2572580182 priority: 60 } @@ -43100,7 +43700,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43116,7 +43716,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 2571723081 priority: 60 cap: BUTTCAP @@ -51397,7 +51997,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 869387687 priority: 160 } @@ -51414,7 +52014,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 869387687 priority: 160 } @@ -51431,7 +52031,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 869387687 priority: 160 } @@ -51448,7 +52048,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 869387687 priority: 160 } @@ -51672,7 +52272,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1306780114 priority: 30 cap: BUTTCAP @@ -51685,7 +52285,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1306780114 priority: 30 } @@ -51716,7 +52316,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1306780114 priority: 30 } @@ -51735,7 +52335,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -51754,7 +52354,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -51928,7 +52528,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2580534696 priority: 80 cap: BUTTCAP @@ -51946,7 +52546,7 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 2580534696 priority: 80 } @@ -51954,7 +52554,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 2580534696 priority: 80 } @@ -51970,7 +52570,7 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 2580534696 priority: 80 } @@ -51978,7 +52578,7 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 2580534696 priority: 80 } @@ -51992,9 +52592,9 @@ cont { width: 3.5 color: 1304608947 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.5 } priority: 100 @@ -52003,13 +52603,13 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1304608947 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 - dd: 2.0 + dd: 6 + dd: 3 + dd: 3 + dd: 2 } priority: 100 } @@ -52017,13 +52617,13 @@ cont { element { scale: 18 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52031,13 +52631,13 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52045,13 +52645,13 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -52288,7 +52888,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1306780114 priority: 30 cap: BUTTCAP @@ -52301,7 +52901,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1306780114 priority: 30 } @@ -52332,7 +52932,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1306780114 priority: 30 } @@ -52351,7 +52951,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -52370,7 +52970,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -53924,7 +54524,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 2576111654 dashdot { dd: 1.4 @@ -53937,7 +54537,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 2576111654 dashdot { dd: 1.5 @@ -53953,7 +54553,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -53968,8 +54568,8 @@ cont { color: 2576111654 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -53981,9 +54581,9 @@ cont { width: 9.5 color: 2156681254 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -53995,9 +54595,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54009,9 +54609,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54358,7 +54958,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 2576111654 dashdot { dd: 1.4 @@ -54371,7 +54971,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 2576111654 dashdot { dd: 1.5 @@ -54387,7 +54987,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -54402,8 +55002,8 @@ cont { color: 2576111654 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -54415,9 +55015,9 @@ cont { width: 9.5 color: 2156681254 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -54429,9 +55029,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -54443,9 +55043,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -55873,7 +56473,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 cap: BUTTCAP @@ -60484,7 +61084,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2579790591 priority: 120 cap: BUTTCAP @@ -60593,7 +61193,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2567571981 priority: 120 cap: BUTTCAP @@ -60702,7 +61302,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2567645179 priority: 120 cap: BUTTCAP @@ -60811,7 +61411,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2569143845 priority: 120 cap: BUTTCAP @@ -60920,7 +61520,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2582553856 priority: 120 cap: BUTTCAP @@ -61029,7 +61629,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2583432731 priority: 120 cap: BUTTCAP @@ -61138,7 +61738,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2573200174 priority: 120 cap: BUTTCAP @@ -61251,7 +61851,7 @@ cont { color: 2579790591 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 cap: BUTTCAP @@ -61264,7 +61864,7 @@ cont { color: 2579790591 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 cap: BUTTCAP @@ -61284,7 +61884,7 @@ cont { width: 1.5 color: 2579790591 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61301,10 +61901,10 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 2579790591 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61321,10 +61921,10 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 2579790591 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61341,10 +61941,10 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 2579790591 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61361,10 +61961,10 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 2579790591 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -61602,7 +62202,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2579790591 priority: 120 cap: BUTTCAP @@ -67935,16 +68535,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 2157352326 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2576782726 priority: 350 } @@ -67952,16 +68552,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 2157352326 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2576782726 priority: 350 } @@ -68513,7 +69113,7 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -68537,7 +69137,7 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -68561,7 +69161,7 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -68651,7 +69251,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68664,7 +69264,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68676,7 +69276,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68688,7 +69288,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68700,7 +69300,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68712,7 +69312,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68727,7 +69327,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68739,7 +69339,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68751,7 +69351,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68763,7 +69363,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68775,7 +69375,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1301714310 dashdot { dd: 1.8 @@ -68800,7 +69400,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68809,7 +69409,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68818,7 +69418,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68827,7 +69427,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 } @@ -68835,7 +69435,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68843,7 +69443,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68851,7 +69451,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68859,7 +69459,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68880,7 +69480,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68889,7 +69489,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68898,7 +69498,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68907,7 +69507,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 } @@ -68915,7 +69515,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68923,7 +69523,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68931,7 +69531,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68939,7 +69539,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -68960,7 +69560,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68969,7 +69569,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68978,7 +69578,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 cap: BUTTCAP @@ -68987,7 +69587,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1301714310 priority: 320 } @@ -68995,7 +69595,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -69003,7 +69603,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -69011,7 +69611,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -69019,7 +69619,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 9868678 priority: 320 } @@ -69265,7 +69865,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -69300,7 +69900,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -69317,7 +69917,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69334,7 +69934,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69351,7 +69951,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69371,7 +69971,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 871230427 priority: 50 cap: BUTTCAP @@ -69392,7 +69992,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -69416,7 +70016,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 40 cap: BUTTCAP @@ -69445,7 +70045,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 40 cap: BUTTCAP @@ -69457,7 +70057,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -69480,13 +70080,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69509,13 +70109,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69538,13 +70138,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -69564,7 +70164,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -69590,7 +70190,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69598,7 +70198,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69606,7 +70206,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69614,7 +70214,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69625,7 +70225,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -69651,7 +70251,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69659,7 +70259,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69667,7 +70267,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69675,7 +70275,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69686,7 +70286,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -69712,7 +70312,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69720,7 +70320,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69728,7 +70328,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69736,7 +70336,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69764,7 +70364,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69772,7 +70372,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69780,7 +70380,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69788,7 +70388,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69816,7 +70416,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69824,7 +70424,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69832,7 +70432,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69840,7 +70440,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69868,7 +70468,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69876,7 +70476,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69884,7 +70484,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -69892,7 +70492,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 9868678 priority: 320 } @@ -70119,7 +70719,7 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70143,7 +70743,7 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70167,7 +70767,7 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70299,7 +70899,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -70334,7 +70934,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -70343,7 +70943,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -70351,7 +70951,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70360,7 +70960,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -70368,7 +70968,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70377,7 +70977,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -70385,7 +70985,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70394,7 +70994,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -70405,7 +71005,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -70486,7 +71086,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70503,7 +71103,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70520,7 +71120,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70540,7 +71140,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -70575,7 +71175,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -70611,7 +71211,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -70669,13 +71269,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70698,13 +71298,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70727,13 +71327,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70753,7 +71353,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -70785,8 +71385,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70804,8 +71404,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70832,8 +71432,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70859,8 +71459,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70874,7 +71474,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70886,8 +71486,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70901,7 +71501,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70913,8 +71513,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70928,7 +71528,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -70940,8 +71540,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -70978,7 +71578,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -70999,7 +71599,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -71023,7 +71623,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -71052,7 +71652,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP @@ -71064,7 +71664,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -71073,7 +71673,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -71087,13 +71687,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71102,7 +71702,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -71116,13 +71716,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71131,7 +71731,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -71145,13 +71745,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71160,7 +71760,7 @@ cont { priority: 220 } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -71219,7 +71819,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1301714310 priority: 280 cap: BUTTCAP @@ -71231,8 +71831,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71248,8 +71848,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71265,8 +71865,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71282,8 +71882,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71299,8 +71899,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71361,7 +71961,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -71382,7 +71982,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1301714310 priority: 280 cap: BUTTCAP @@ -71406,8 +72006,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71420,7 +72020,7 @@ cont { element { scale: 17 lines { - width: 9.0 + width: 9 color: 1300267136 priority: 140 cap: BUTTCAP @@ -71435,8 +72035,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71464,8 +72064,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71493,8 +72093,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71522,8 +72122,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71581,8 +72181,8 @@ cont { width: 3.8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71597,17 +72197,17 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 1301714310 priority: 280 cap: BUTTCAP @@ -71619,8 +72219,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 } @@ -71628,8 +72228,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71646,8 +72246,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -71655,8 +72255,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71673,8 +72273,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71682,8 +72282,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71700,8 +72300,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71709,8 +72309,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71727,8 +72327,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } @@ -71736,8 +72336,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -71754,7 +72354,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71764,7 +72364,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71845,7 +72445,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71862,7 +72462,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71879,7 +72479,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -71899,7 +72499,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71909,7 +72509,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71944,7 +72544,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -71980,7 +72580,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -72038,13 +72638,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72067,13 +72667,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72096,13 +72696,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72122,7 +72722,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72132,7 +72732,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72164,8 +72764,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72183,8 +72783,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72211,8 +72811,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72238,8 +72838,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72253,7 +72853,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72265,8 +72865,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72280,7 +72880,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72292,8 +72892,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72307,7 +72907,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -72319,8 +72919,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -72362,7 +72962,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72379,7 +72979,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72396,7 +72996,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72416,7 +73016,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -72471,13 +73071,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72500,13 +73100,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72529,13 +73129,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72558,8 +73158,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72585,8 +73185,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72600,7 +73200,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72612,8 +73212,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72627,7 +73227,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72639,8 +73239,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72654,7 +73254,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72666,8 +73266,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72718,7 +73318,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72735,7 +73335,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72752,7 +73352,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72787,7 +73387,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -72842,13 +73442,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72871,13 +73471,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72900,13 +73500,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -72929,8 +73529,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72948,8 +73548,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72975,8 +73575,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -72990,7 +73590,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -73002,8 +73602,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73017,7 +73617,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -73029,8 +73629,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73044,7 +73644,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -73056,8 +73656,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73074,7 +73674,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73084,7 +73684,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73197,7 +73797,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73222,7 +73822,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73247,7 +73847,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73275,7 +73875,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73285,7 +73885,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73320,7 +73920,7 @@ cont { element { scale: 14 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -73372,7 +73972,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -73446,13 +74046,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73483,13 +74083,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73520,13 +74120,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73554,7 +74154,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73564,7 +74164,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73596,8 +74196,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73623,8 +74223,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73659,8 +74259,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73694,8 +74294,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73717,7 +74317,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73729,8 +74329,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73752,7 +74352,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73764,8 +74364,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73787,7 +74387,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73799,8 +74399,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -73854,17 +74454,17 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -73876,8 +74476,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73904,8 +74504,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -73919,7 +74519,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -73928,17 +74528,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -73946,7 +74546,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73955,17 +74555,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -73973,7 +74573,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -73982,17 +74582,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -74000,7 +74600,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -74009,17 +74609,17 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 11710882 priority: 210 } @@ -74030,7 +74630,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74082,7 +74682,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74099,7 +74699,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74116,7 +74716,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74142,7 +74742,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74181,7 +74781,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -74236,13 +74836,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74265,13 +74865,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74294,13 +74894,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74320,7 +74920,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74332,8 +74932,8 @@ cont { width: 3.1 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74351,8 +74951,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74370,8 +74970,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74397,8 +74997,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74412,7 +75012,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74424,8 +75024,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74439,7 +75039,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74451,8 +75051,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -74466,7 +75066,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15000299 dashdot { dd: 8.1 @@ -74478,8 +75078,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -95596,7 +96196,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -95631,7 +96231,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -95648,7 +96248,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -95665,7 +96265,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -95682,7 +96282,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -95702,7 +96302,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -95723,7 +96323,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -95747,7 +96347,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -95776,7 +96376,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP @@ -95788,7 +96388,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 6.3 @@ -95811,13 +96411,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -95840,13 +96440,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -95869,13 +96469,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 15658734 dashdot { dd: 8.1 @@ -107973,7 +108573,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -107981,7 +108581,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -107989,7 +108589,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -107997,7 +108597,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108043,7 +108643,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108051,7 +108651,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108059,7 +108659,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108067,7 +108667,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108113,7 +108713,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108121,7 +108721,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108129,7 +108729,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108137,7 +108737,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -108268,7 +108868,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108282,7 +108882,7 @@ cont { element { scale: 8 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108296,7 +108896,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108310,7 +108910,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108331,7 +108931,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108352,7 +108952,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108373,7 +108973,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108393,7 +108993,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108413,7 +109013,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108433,7 +109033,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108452,7 +109052,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108471,7 +109071,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108490,7 +109090,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -108509,7 +109109,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -123273,7 +123873,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 cap: BUTTCAP @@ -123396,7 +123996,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2160246963 priority: 30 cap: BUTTCAP @@ -123416,14 +124016,14 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2160246963 priority: 30 } area { color: 13224123 border { - width: 1.0 + width: 1 color: 10592406 } priority: 30 @@ -123446,7 +124046,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -123462,14 +124062,14 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -123485,14 +124085,14 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -123508,14 +124108,14 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -123573,7 +124173,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123585,7 +124185,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123597,7 +124197,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123609,7 +124209,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123621,7 +124221,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123818,7 +124418,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123830,7 +124430,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123842,7 +124442,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123854,7 +124454,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123866,7 +124466,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 1302185921 dashdot { dd: 2.7 @@ -123897,7 +124497,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 cap: BUTTCAP @@ -124045,7 +124645,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 join: BEVELJOIN @@ -124231,7 +124831,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 cap: BUTTCAP @@ -124357,7 +124957,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 priority: -990 cap: BUTTCAP @@ -124487,7 +125087,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295429823 dashdot { dd: 2.7 @@ -124756,7 +125356,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2160246963 priority: 330 cap: BUTTCAP @@ -124772,7 +125372,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2160246963 priority: 330 } @@ -124802,7 +125402,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2160246963 priority: 330 } @@ -124817,7 +125417,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 330 } @@ -124832,7 +125432,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 330 } diff --git a/data/drules_proto_outdoors_dark.bin b/data/drules_proto_outdoors_dark.bin index acdd3cf5eb9207341b46739d86a3928d5213617f..a0ad6815adc5155ac8f5f744c6c8e2574929970e 100644 GIT binary patch delta 1286 zcmezJQSx|;RKpg=vnq0zS-7M!GSf546DxI-E0c3lL5!5lw6x6R(wvg%kxGn~A`Tq9 zLK>X2W`e*+dx7J>cFbm;KHrj2l<5@H^p9GMB4VB5LiQYdLh77n&w#)eup)?>>57Vs zlEU^J{6JX-F!+HXYs(=Zq{?Xw2EUPIFDf#M3)^xC0%ak385}^?LrsRt3c>X?PpZjG(rI0iI127 delta 37 mcmX@!BK75?WWyH5vnuThdW=BK1jNih%mT!$+ZFWK)I$ISAPYzU diff --git a/data/drules_proto_outdoors_dark.txt b/data/drules_proto_outdoors_dark.txt index 72c5a70cf2..6ce0e66b89 100644 --- a/data/drules_proto_outdoors_dark.txt +++ b/data/drules_proto_outdoors_dark.txt @@ -7,7 +7,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296977469 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296977469 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5131837 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296977469 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2571847235 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 3881787 border { - width: 1.0 + width: 1 color: 6908265 } priority: -1850 @@ -15145,7 +15145,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296187970 priority: 320 cap: BUTTCAP @@ -15166,10 +15166,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 320 } @@ -15180,10 +15180,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 320 } @@ -15194,10 +15194,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 320 } @@ -15205,13 +15205,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15219,13 +15219,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15478,7 +15478,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1296319556 priority: 320 cap: BUTTCAP @@ -15487,7 +15487,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1296319556 priority: 320 } @@ -15629,7 +15629,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1293431320 priority: 320 } @@ -15637,7 +15637,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 857223704 priority: 320 } @@ -15645,7 +15645,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 857223704 priority: 320 } @@ -15833,7 +15833,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1.0 + dd: 1 } priority: 100 } @@ -15844,9 +15844,9 @@ cont { width: 3.2 color: 1296319556 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.2 } priority: 100 @@ -15858,9 +15858,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15872,9 +15872,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15886,9 +15886,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -16283,7 +16283,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1296319556 priority: 320 cap: BUTTCAP @@ -16292,7 +16292,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1296319556 priority: 320 } @@ -16493,7 +16493,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1297438037 priority: 90 join: BEVELJOIN @@ -16696,7 +16696,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1298556518 dashdot { dd: 1.8 @@ -17998,7 +17998,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -18021,7 +18021,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18044,7 +18044,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18067,7 +18067,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18090,7 +18090,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18208,7 +18208,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -18231,7 +18231,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18254,7 +18254,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18277,7 +18277,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18300,7 +18300,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18340,7 +18340,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -18363,7 +18363,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18386,7 +18386,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18409,7 +18409,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18432,7 +18432,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18472,7 +18472,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 130 @@ -18495,7 +18495,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18518,7 +18518,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18541,7 +18541,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18564,7 +18564,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 130 @@ -18590,7 +18590,7 @@ cont { area { color: 859519803 border { - width: 1.0 + width: 1 color: 6381921 } priority: 110 @@ -18601,7 +18601,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18612,7 +18612,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18623,7 +18623,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -18634,7 +18634,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 110 @@ -21092,11 +21092,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21109,8 +21109,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21123,7 +21123,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21144,7 +21144,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21162,10 +21162,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21186,7 +21186,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21206,7 +21206,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21223,10 +21223,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21243,10 +21243,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21263,10 +21263,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21286,11 +21286,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21303,8 +21303,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21317,7 +21317,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21338,7 +21338,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21356,16 +21356,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21392,7 +21392,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21424,7 +21424,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21441,22 +21441,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21473,22 +21473,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21505,22 +21505,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21540,11 +21540,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21557,8 +21557,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21571,7 +21571,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21592,7 +21592,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21610,10 +21610,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21634,7 +21634,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21654,7 +21654,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21669,8 +21669,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21687,26 +21687,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21723,26 +21723,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21759,26 +21759,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21929,7 +21929,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -21945,7 +21945,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -21961,7 +21961,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -21977,7 +21977,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -22021,7 +22021,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -22037,7 +22037,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -22053,7 +22053,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -22069,7 +22069,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -22113,7 +22113,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 860571203 priority: 190 } @@ -22129,7 +22129,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 860571203 priority: 190 } @@ -22145,7 +22145,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -22161,7 +22161,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 860571203 priority: 190 } @@ -22234,7 +22234,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 3354413 dashdot { dd: 7.2 @@ -22258,7 +22258,7 @@ cont { width: 2.6 color: 3354413 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 160 @@ -22275,7 +22275,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 3354413 dashdot { dd: 10.8 @@ -22295,7 +22295,7 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 3354413 dashdot { dd: 13.5 @@ -22315,10 +22315,10 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 3354413 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -22335,10 +22335,10 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 3354413 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -22368,7 +22368,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22445,7 +22445,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 7224647 priority: 330 } @@ -22522,7 +22522,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22566,7 +22566,7 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -22611,19 +22611,19 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 7224647 priority: 330 } @@ -22721,6 +22721,750 @@ cont { } } } +cont { + name: "highway-cycleway-difficult" + element { + scale: 11 + lines { + width: 0.9 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-easy" + element { + scale: 11 + lines { + width: 0.9 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-expert" + element { + scale: 11 + lines { + width: 0.9 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 862862663 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-intermediate" + element { + scale: 11 + lines { + width: 0.9 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1299070279 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 862862663 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 6710886 + stroke_color: 856756480 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 7224647 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 7829367 + stroke_color: 856032768 + } + priority: 2953 + } + } +} cont { name: "highway-cycleway-tunnel" element { @@ -22736,7 +23480,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22813,22 +23557,22 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 7224647 priority: 330 } lines { - width: 6.0 + width: 6 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22859,8 +23603,8 @@ cont { width: 9.8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22891,8 +23635,8 @@ cont { width: 10.8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22923,8 +23667,8 @@ cont { width: 10.8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22975,11 +23719,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -22993,7 +23737,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23006,7 +23750,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23027,7 +23771,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23045,10 +23789,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23069,7 +23813,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23089,7 +23833,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23106,10 +23850,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23126,10 +23870,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23146,10 +23890,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23169,11 +23913,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23187,7 +23931,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23200,7 +23944,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23221,7 +23965,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23243,10 +23987,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23271,7 +24015,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23295,7 +24039,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23316,10 +24060,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23340,10 +24084,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23364,10 +24108,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23391,11 +24135,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23428,8 +24172,8 @@ cont { width: 1.3 color: 860571203 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -23455,8 +24199,8 @@ cont { width: 1.6 color: 860571203 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -23479,10 +24223,10 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 860571203 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -23508,7 +24252,7 @@ cont { width: 2.6 color: 860571203 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -23525,7 +24269,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 862862663 priority: 170 } @@ -23533,8 +24277,8 @@ cont { width: 3.3 color: 860571203 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23555,11 +24299,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23580,11 +24324,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23605,11 +24349,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23628,11 +24372,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -23646,7 +24390,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -23659,7 +24403,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -23680,7 +24424,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -23698,16 +24442,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23734,7 +24478,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23766,7 +24510,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23783,22 +24527,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23815,22 +24559,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23847,22 +24591,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23885,7 +24629,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 330 @@ -23897,7 +24641,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23906,10 +24650,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23918,10 +24662,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23930,10 +24674,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23948,7 +24692,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23960,7 +24704,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23969,10 +24713,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23981,10 +24725,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23993,10 +24737,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -24008,11 +24752,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -24026,7 +24770,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -24039,7 +24783,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -24060,7 +24804,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -24078,10 +24822,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -24102,7 +24846,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -24122,7 +24866,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -24137,8 +24881,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24155,26 +24899,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24191,26 +24935,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24227,26 +24971,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24266,11 +25010,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -24296,10 +25040,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -24337,11 +25081,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -24361,11 +25105,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -24385,7 +25129,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -24409,7 +25153,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -24446,7 +25190,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -24582,7 +25326,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -24718,7 +25462,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -24764,8 +25508,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24790,8 +25534,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24816,8 +25560,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24842,8 +25586,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24868,8 +25612,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -25081,7 +25825,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -25127,7 +25871,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -25320,7 +26064,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -25428,13 +26172,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -25463,7 +26207,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 858532890 priority: 150 cap: BUTTCAP @@ -25492,19 +26236,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -25527,13 +26271,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -25562,13 +26306,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -25693,8 +26437,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -25728,8 +26472,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -25762,8 +26506,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -25796,8 +26540,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25827,17 +26571,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 3677972 priority: 310 } @@ -25863,8 +26607,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25893,17 +26637,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 3677972 priority: 310 } @@ -25929,8 +26673,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25962,8 +26706,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -26083,7 +26827,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -26205,7 +26949,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -26348,7 +27092,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -26422,7 +27166,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -26458,7 +27202,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -26500,13 +27244,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -26697,7 +27441,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -26750,8 +27494,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -26784,8 +27528,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -26818,8 +27562,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26849,17 +27593,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 3677972 priority: 228 } @@ -26885,8 +27629,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26918,8 +27662,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26951,8 +27695,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26984,8 +27728,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -27017,11 +27761,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27035,7 +27779,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27048,7 +27792,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -27069,7 +27813,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -27087,10 +27831,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -27111,7 +27855,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -27131,7 +27875,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27148,10 +27892,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27168,10 +27912,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27188,10 +27932,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27211,11 +27955,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27225,7 +27969,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1299070279 priority: 170 join: BEVELJOIN @@ -27255,8 +27999,8 @@ cont { width: 1.3 color: 865356306 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -27282,8 +28026,8 @@ cont { width: 1.6 color: 865356306 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -27306,10 +28050,10 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -27335,7 +28079,7 @@ cont { width: 2.6 color: 865356306 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -27352,7 +28096,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 7224647 priority: 170 } @@ -27360,8 +28104,8 @@ cont { width: 3.3 color: 865356306 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27382,11 +28126,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27407,11 +28151,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27432,11 +28176,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27455,11 +28199,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -27473,7 +28217,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -27486,7 +28230,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -27507,7 +28251,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -27525,16 +28269,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -27561,7 +28305,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -27593,7 +28337,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27610,22 +28354,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27642,22 +28386,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27674,22 +28418,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27709,11 +28453,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1301563922 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27726,8 +28470,8 @@ cont { width: 1.1 color: 865356306 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27779,11 +28523,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { dd: 2.5 - dd: 4.0 + dd: 4 } priority: 180 cap: BUTTCAP @@ -27804,7 +28548,7 @@ cont { color: 9718290 dashdot { dd: 2.5 - dd: 4.0 + dd: 4 } priority: 180 } @@ -27824,7 +28568,7 @@ cont { color: 9718290 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27840,11 +28584,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27860,11 +28604,11 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27880,11 +28624,11 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27903,11 +28647,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1297235507 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27920,8 +28664,8 @@ cont { width: 1.1 color: 861027891 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27935,7 +28679,7 @@ cont { color: 5389875 dashdot { dd: 1.4 - dd: 5.0 + dd: 5 } priority: 180 cap: BUTTCAP @@ -27956,7 +28700,7 @@ cont { color: 5389875 dashdot { dd: 1.4 - dd: 5.0 + dd: 5 } priority: 180 cap: BUTTCAP @@ -27973,11 +28717,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 5389875 dashdot { dd: 2.3 - dd: 9.0 + dd: 9 } priority: 180 cap: BUTTCAP @@ -27998,7 +28742,7 @@ cont { color: 5389875 dashdot { dd: 2.3 - dd: 9.0 + dd: 9 } priority: 180 } @@ -28018,7 +28762,7 @@ cont { color: 5389875 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28034,11 +28778,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5389875 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28054,11 +28798,11 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 5389875 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28074,11 +28818,11 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 5389875 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28097,11 +28841,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28115,7 +28859,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28128,7 +28872,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28149,7 +28893,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28167,10 +28911,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28191,7 +28935,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28211,7 +28955,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28228,10 +28972,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28248,10 +28992,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28268,10 +29012,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28291,11 +29035,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1720994322 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28309,7 +29053,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28322,7 +29066,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28343,7 +29087,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28361,10 +29105,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28385,7 +29129,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28405,7 +29149,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28420,8 +29164,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28438,26 +29182,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28474,26 +29218,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28510,26 +29254,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 9718290 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28549,11 +29293,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28583,10 +29327,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28624,11 +29368,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -28644,11 +29388,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -28664,7 +29408,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -28684,7 +29428,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -28707,11 +29451,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28745,10 +29489,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28794,11 +29538,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -28818,11 +29562,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -28842,7 +29586,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -28866,7 +29610,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -28899,11 +29643,11 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28951,16 +29695,16 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28978,7 +29722,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -29022,11 +29766,11 @@ cont { cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 659375940 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -29054,11 +29798,11 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 5064516 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -29086,7 +29830,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -29118,7 +29862,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5064516 dashdot { dd: 16.2 @@ -29141,11 +29885,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 659375940 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -29175,10 +29919,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 659375940 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -29199,8 +29943,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP @@ -29226,21 +29970,21 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1294673959 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -29256,21 +30000,21 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1294673959 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -29286,17 +30030,17 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 dashdot { dd: 16.2 @@ -29316,17 +30060,17 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1294673959 dashdot { dd: 16.2 @@ -29516,7 +30260,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 290 } @@ -29831,13 +30575,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 290 } @@ -30125,8 +30869,8 @@ cont { width: 4.8 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 289 cap: BUTTCAP @@ -30159,8 +30903,8 @@ cont { width: 5.8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30190,17 +30934,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4991515 priority: 290 } @@ -30226,8 +30970,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30259,8 +31003,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30292,8 +31036,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30325,8 +31069,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30383,7 +31127,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 5845795 priority: 226 join: BEVELJOIN @@ -30623,7 +31367,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 5845795 priority: 226 join: BEVELJOIN @@ -30714,7 +31458,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -30785,7 +31529,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -30947,7 +31691,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 5845795 priority: 226 join: BEVELJOIN @@ -30999,8 +31743,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 225 cap: BUTTCAP @@ -31033,8 +31777,8 @@ cont { width: 4.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31067,8 +31811,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31100,8 +31844,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31133,8 +31877,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31166,8 +31910,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31199,8 +31943,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31232,7 +31976,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1298092845 priority: 180 cap: BUTTCAP @@ -31266,7 +32010,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 861885229 priority: 180 } @@ -31282,7 +32026,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 861885229 priority: 180 } @@ -31298,7 +32042,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 861885229 priority: 180 } @@ -31314,7 +32058,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 861885229 priority: 180 } @@ -31343,7 +32087,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -31529,7 +32273,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -31715,7 +32459,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -31732,7 +32476,7 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1297109072 priority: 140 cap: BUTTCAP @@ -31838,7 +32582,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -31985,7 +32729,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -32046,8 +32790,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32079,8 +32823,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32112,8 +32856,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32145,8 +32889,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32178,8 +32922,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32328,7 +33072,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -32464,7 +33208,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -32660,7 +33404,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4933187 priority: 230 cap: BUTTCAP @@ -32919,7 +33663,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5717555 priority: 270 } @@ -33200,13 +33944,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5717555 priority: 270 } @@ -33505,17 +34249,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5717555 priority: 270 } @@ -33541,8 +34285,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33574,8 +34318,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33607,8 +34351,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33640,8 +34384,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33819,7 +34563,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -33868,7 +34612,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -34007,8 +34751,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34033,8 +34777,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34059,8 +34803,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34085,8 +34829,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34111,8 +34855,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34390,7 +35134,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -34412,7 +35156,7 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -34543,7 +35287,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4933187 priority: 190 } @@ -34559,7 +35303,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4933187 priority: 190 } @@ -34575,7 +35319,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 priority: 190 } @@ -34591,7 +35335,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 priority: 190 } @@ -34635,7 +35379,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4933187 priority: 190 } @@ -34651,7 +35395,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4933187 priority: 190 } @@ -34667,7 +35411,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4933187 priority: 190 } @@ -34683,7 +35427,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4933187 priority: 190 } @@ -34933,7 +35677,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -34946,7 +35690,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -34967,7 +35711,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35006,7 +35750,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { dd: 1.8 @@ -35026,7 +35770,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -35046,7 +35790,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -35066,10 +35810,10 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35086,10 +35830,10 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35113,7 +35857,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -35126,7 +35870,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35147,7 +35891,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35192,13 +35936,13 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 4933187 dashdot { dd: 1.8 @@ -35218,19 +35962,19 @@ cont { element { scale: 17 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -35250,19 +35994,19 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -35282,22 +36026,22 @@ cont { element { scale: 19 lines { - width: 14.0 + width: 14 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35314,22 +36058,22 @@ cont { element { scale: 20 lines { - width: 14.0 + width: 14 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35353,7 +36097,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -35366,7 +36110,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35387,7 +36131,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35426,7 +36170,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 4933187 dashdot { dd: 1.8 @@ -35446,7 +36190,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 4933187 dashdot { dd: 2.5 @@ -35455,17 +36199,17 @@ cont { priority: 330 } lines { - width: 7.0 + width: 7 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35482,7 +36226,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 4933187 dashdot { dd: 3.2 @@ -35491,17 +36235,17 @@ cont { priority: 330 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35518,26 +36262,26 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35554,26 +36298,26 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 4933187 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35693,7 +36437,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -35941,13 +36685,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -36213,17 +36957,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 2828327 priority: 250 } @@ -36249,8 +36993,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36282,8 +37026,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36315,8 +37059,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36348,8 +37092,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36493,7 +37237,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 858532890 priority: 150 cap: BUTTCAP @@ -36534,7 +37278,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP @@ -36656,8 +37400,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36674,8 +37418,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36692,8 +37436,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36718,8 +37462,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36744,8 +37488,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36773,7 +37517,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36787,7 +37531,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36801,8 +37545,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36819,11 +37563,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36843,7 +37587,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36864,7 +37608,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36881,11 +37625,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36901,11 +37645,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36921,11 +37665,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36941,11 +37685,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36967,7 +37711,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36981,7 +37725,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36995,8 +37739,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37013,11 +37757,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37037,7 +37781,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37058,7 +37802,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37075,11 +37819,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37095,11 +37839,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37115,11 +37859,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37135,11 +37879,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37161,7 +37905,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37175,7 +37919,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37189,8 +37933,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37207,11 +37951,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37228,7 +37972,7 @@ cont { element { scale: 15 lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -37237,7 +37981,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37264,7 +38008,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37281,23 +38025,23 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37313,23 +38057,23 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37345,23 +38089,23 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37377,23 +38121,23 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37415,7 +38159,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37429,7 +38173,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37443,8 +38187,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37461,11 +38205,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37485,7 +38229,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37506,7 +38250,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37523,11 +38267,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37543,11 +38287,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37563,11 +38307,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37583,11 +38327,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37609,7 +38353,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37623,7 +38367,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37637,8 +38381,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37655,11 +38399,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6247213 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37679,7 +38423,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37700,7 +38444,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37717,26 +38461,26 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37753,26 +38497,26 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37789,26 +38533,26 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37825,26 +38569,26 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6247213 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1297109072 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -38051,7 +38795,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -38097,7 +38841,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -38290,7 +39034,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 858532890 priority: 150 cap: BUTTCAP @@ -38398,13 +39142,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 4794651 priority: 310 } @@ -38433,7 +39177,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 858532890 priority: 150 cap: BUTTCAP @@ -38462,19 +39206,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 4794651 priority: 310 } @@ -38497,13 +39241,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -38532,13 +39276,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 858532890 priority: 150 cap: BUTTCAP @@ -38663,8 +39407,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -38698,8 +39442,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -38732,8 +39476,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -38766,8 +39510,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38797,17 +39541,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 3677972 priority: 310 } @@ -38833,8 +39577,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38863,17 +39607,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 3677972 priority: 310 } @@ -38899,8 +39643,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38932,8 +39676,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38990,7 +39734,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -39112,7 +39856,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -39255,7 +39999,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -39329,7 +40073,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1297109072 priority: 140 cap: BUTTCAP @@ -39365,7 +40109,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -39407,13 +40151,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5845795 priority: 228 } @@ -39604,7 +40348,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 5845795 priority: 228 join: BEVELJOIN @@ -39657,8 +40401,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -39691,8 +40435,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -39725,8 +40469,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39756,17 +40500,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 3677972 priority: 228 } @@ -39792,8 +40536,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39825,8 +40569,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39858,8 +40602,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39891,8 +40635,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39995,7 +40739,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -40149,7 +40893,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -40333,13 +41077,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 5196359 priority: 250 } @@ -40541,17 +41285,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 2828327 priority: 250 } @@ -40570,8 +41314,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40596,8 +41340,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40622,8 +41366,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40648,8 +41392,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -43025,7 +43769,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296187970 priority: 360 cap: BUTTCAP @@ -43046,10 +43790,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 360 } @@ -43060,10 +43804,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 360 } @@ -43074,10 +43818,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 360 } @@ -43085,13 +43829,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -43099,13 +43843,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1295727419 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -45013,8 +45757,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44.0 - offset: 30.0 + step: 44 + offset: 30 } } } @@ -45024,8 +45768,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54.0 - offset: 50.0 + step: 54 + offset: 50 } } } @@ -45035,8 +45779,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64.0 - offset: 70.0 + step: 64 + offset: 70 } } } @@ -45046,8 +45790,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -45057,8 +45801,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -45068,8 +45812,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -45234,7 +45978,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45249,7 +45993,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45264,7 +46008,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45279,7 +46023,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45294,7 +46038,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45346,7 +46090,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 join: BEVELJOIN @@ -45363,7 +46107,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -45553,7 +46297,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45568,7 +46312,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45583,7 +46327,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45661,7 +46405,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -45677,7 +46421,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -54095,7 +54839,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 858401316 priority: 160 } @@ -54112,7 +54856,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 858401316 priority: 160 } @@ -54129,7 +54873,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 858401316 priority: 160 } @@ -54146,7 +54890,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 858401316 priority: 160 } @@ -54367,7 +55111,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1291845632 priority: 30 cap: BUTTCAP @@ -54379,7 +55123,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291845632 priority: 30 } @@ -54408,7 +55152,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 priority: 30 } @@ -54426,7 +55170,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -54444,7 +55188,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -54651,7 +55395,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1712264192 priority: 80 cap: BUTTCAP @@ -54668,7 +55412,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1712264192 priority: 80 } @@ -54676,7 +55420,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 1712264192 priority: 80 } @@ -54684,7 +55428,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1712264192 priority: 80 } @@ -54692,7 +55436,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1712264192 priority: 80 } @@ -54706,9 +55450,9 @@ cont { width: 3.5 color: 1296187970 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.5 } priority: 100 @@ -54717,13 +55461,13 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1296187970 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 - dd: 2.0 + dd: 6 + dd: 3 + dd: 3 + dd: 2 } priority: 100 } @@ -54731,13 +55475,13 @@ cont { element { scale: 18 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -54745,13 +55489,13 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -54759,13 +55503,13 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1296187970 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -55064,7 +55808,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1291845632 priority: 30 cap: BUTTCAP @@ -55076,7 +55820,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1291845632 priority: 30 } @@ -55105,7 +55849,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1291845632 priority: 30 } @@ -55123,7 +55867,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -55141,7 +55885,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1291845632 priority: 30 } @@ -57269,7 +58013,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 2155695907 dashdot { dd: 1.4 @@ -57283,7 +58027,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 2155695907 dashdot { dd: 1.4 @@ -57296,7 +58040,7 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1719488291 dashdot { dd: 1.5 @@ -57312,7 +58056,7 @@ cont { width: 6.2 color: 1719488291 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -57328,8 +58072,8 @@ cont { color: 1300057891 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -57341,9 +58085,9 @@ cont { width: 9.5 color: 863850275 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -57355,9 +58099,9 @@ cont { width: 11.9 color: 863850275 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -57369,9 +58113,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57383,9 +58127,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57732,7 +58476,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 2155695907 dashdot { dd: 1.4 @@ -57746,7 +58490,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 2155695907 dashdot { dd: 1.4 @@ -57759,7 +58503,7 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1719488291 dashdot { dd: 1.5 @@ -57775,7 +58519,7 @@ cont { width: 6.2 color: 1719488291 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -57791,8 +58535,8 @@ cont { color: 1300057891 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -57804,9 +58548,9 @@ cont { width: 9.5 color: 863850275 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -57818,9 +58562,9 @@ cont { width: 11.9 color: 863850275 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -57832,9 +58576,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57846,9 +58590,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -59454,7 +60198,7 @@ cont { element { scale: 11 lines { - width: 2.0 + width: 2 color: 1292247078 priority: -990 join: BEVELJOIN @@ -59464,7 +60208,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 1292247078 priority: -990 join: BEVELJOIN @@ -64123,7 +64867,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2573352319 priority: 120 join: BEVELJOIN @@ -64251,7 +64995,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2569151010 priority: 120 join: BEVELJOIN @@ -64497,7 +65241,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2567645179 priority: 120 join: BEVELJOIN @@ -64684,7 +65428,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2570269491 priority: 120 join: BEVELJOIN @@ -64871,7 +65615,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2582553856 priority: 120 join: BEVELJOIN @@ -64999,7 +65743,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2583432731 priority: 120 join: BEVELJOIN @@ -65186,7 +65930,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2573200174 priority: 120 join: BEVELJOIN @@ -65377,7 +66121,7 @@ cont { color: 1298283903 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 join: BEVELJOIN @@ -65390,7 +66134,7 @@ cont { width: 1.3 color: 1298283903 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -65411,7 +66155,7 @@ cont { width: 1.6 color: 1298283903 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -65429,10 +66173,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1298283903 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 120 @@ -65453,7 +66197,7 @@ cont { width: 2.6 color: 1298283903 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 120 @@ -65473,7 +66217,7 @@ cont { width: 3.3 color: 1298283903 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65490,10 +66234,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1298283903 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65510,10 +66254,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1298283903 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65530,10 +66274,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1298283903 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65563,7 +66307,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1298283903 priority: 120 cap: BUTTCAP @@ -65707,7 +66451,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1298283903 priority: 120 cap: BUTTCAP @@ -65841,7 +66585,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2573352319 priority: 120 join: BEVELJOIN @@ -72280,17 +73024,17 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 2150839091 dashdot { - dd: 1.0 - dd: 50.0 + dd: 1 + dd: 50 } priority: 340 cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 2150839091 priority: 350 cap: BUTTCAP @@ -72299,16 +73043,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 2150839091 dashdot { - dd: 1.0 - dd: 50.0 + dd: 1 + dd: 50 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2150839091 priority: 350 } @@ -72319,8 +73063,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72336,8 +73080,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72353,8 +73097,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72370,8 +73114,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72908,8 +73652,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72920,8 +73664,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72932,8 +73676,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72944,8 +73688,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72956,8 +73700,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73022,8 +73766,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73037,7 +73781,7 @@ cont { cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP @@ -73046,8 +73790,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73070,8 +73814,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73094,8 +73838,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73118,8 +73862,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73172,8 +73916,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73184,8 +73928,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73196,8 +73940,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73208,8 +73952,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73220,8 +73964,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73232,7 +73976,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73245,7 +73989,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73258,7 +74002,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73275,7 +74019,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73287,7 +74031,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73299,7 +74043,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73311,7 +74055,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73323,7 +74067,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73334,7 +74078,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73347,7 +74091,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73360,7 +74104,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 4470602 dashdot { dd: 1.8 @@ -73377,7 +74121,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73389,7 +74133,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73401,7 +74145,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73413,7 +74157,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73425,7 +74169,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73446,7 +74190,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73455,7 +74199,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73464,7 +74208,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73473,7 +74217,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -73481,7 +74225,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73489,7 +74233,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73497,7 +74241,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73505,7 +74249,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73526,7 +74270,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73535,7 +74279,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73544,7 +74288,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73553,7 +74297,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -73561,7 +74305,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73569,7 +74313,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73577,7 +74321,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73585,7 +74329,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73606,7 +74350,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73615,7 +74359,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73624,7 +74368,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 cap: BUTTCAP @@ -73633,7 +74377,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296316234 priority: 320 } @@ -73641,7 +74385,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73649,7 +74393,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73657,7 +74401,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73665,7 +74409,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 4470602 priority: 320 } @@ -73911,7 +74655,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -73946,7 +74690,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -73963,7 +74707,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73980,7 +74724,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -73997,7 +74741,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74017,7 +74761,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 858532890 priority: 50 cap: BUTTCAP @@ -74038,7 +74782,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74062,7 +74806,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 40 cap: BUTTCAP @@ -74091,7 +74835,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 40 cap: BUTTCAP @@ -74103,7 +74847,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -74126,13 +74870,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74155,13 +74899,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74184,13 +74928,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -74210,7 +74954,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -74236,7 +74980,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74244,7 +74988,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74252,7 +74996,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74260,7 +75004,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74271,7 +75015,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -74297,7 +75041,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74305,7 +75049,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74313,7 +75057,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74321,7 +75065,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74332,7 +75076,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 320 cap: BUTTCAP @@ -74358,7 +75102,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74366,7 +75110,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74374,7 +75118,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74382,7 +75126,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74410,7 +75154,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74418,7 +75162,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74426,7 +75170,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74434,7 +75178,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74462,7 +75206,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74470,7 +75214,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74478,7 +75222,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74486,7 +75230,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74514,7 +75258,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74522,7 +75266,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74530,7 +75274,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74538,7 +75282,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 4470602 priority: 320 } @@ -74664,8 +75408,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74676,8 +75420,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74688,8 +75432,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74700,8 +75444,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74712,8 +75456,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74784,8 +75528,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74799,7 +75543,7 @@ cont { cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 858532890 priority: 150 cap: BUTTCAP @@ -74808,8 +75552,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74832,8 +75576,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74856,8 +75600,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74880,8 +75624,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74934,8 +75678,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74946,8 +75690,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74958,8 +75702,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74970,8 +75714,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74982,8 +75726,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74994,7 +75738,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 210 join: BEVELJOIN @@ -75033,7 +75777,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 4470602 priority: 210 cap: BUTTCAP @@ -75087,7 +75831,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75104,7 +75848,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75121,7 +75865,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75138,7 +75882,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75149,7 +75893,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -75188,7 +75932,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -75242,7 +75986,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75259,7 +76003,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75276,7 +76020,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75293,7 +76037,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75304,7 +76048,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -75355,7 +76099,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -75389,7 +76133,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -75439,7 +76183,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75468,7 +76212,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75497,7 +76241,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75526,7 +76270,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75537,7 +76281,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -75576,17 +76320,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -75608,8 +76352,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -75636,8 +76380,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -75660,17 +76404,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75687,17 +76431,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75714,17 +76458,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75741,17 +76485,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -75762,7 +76506,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 210 join: BEVELJOIN @@ -75813,7 +76557,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 210 cap: BUTTCAP @@ -75847,7 +76591,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -75897,7 +76641,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75926,7 +76670,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75955,7 +76699,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -75984,7 +76728,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -76025,7 +76769,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -76046,8 +76790,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -76065,8 +76809,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -76082,13 +76826,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76099,13 +76843,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76116,13 +76860,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76133,13 +76877,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76186,7 +76930,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -76195,7 +76939,7 @@ cont { element { scale: 14 lines { - width: 7.0 + width: 7 color: 858532890 priority: 150 cap: BUTTCAP @@ -76219,8 +76963,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -76235,7 +76979,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -76250,8 +76994,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -76279,13 +77023,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76308,13 +77052,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76337,13 +77081,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76366,13 +77110,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76413,7 +77157,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -76425,8 +77169,8 @@ cont { width: 4.3 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76444,8 +77188,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -76454,8 +77198,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76473,8 +77217,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -76482,8 +77226,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76500,23 +77244,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76527,23 +77271,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76554,23 +77298,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76581,23 +77325,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76608,7 +77352,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -76647,7 +77391,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -76701,7 +77445,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76718,7 +77462,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76735,7 +77479,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76752,7 +77496,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76763,7 +77507,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -76814,7 +77558,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -76848,7 +77592,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -76898,7 +77642,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76927,7 +77671,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76956,7 +77700,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76985,7 +77729,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -76996,7 +77740,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 280 join: BEVELJOIN @@ -77035,17 +77779,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 280 cap: BUTTCAP @@ -77067,8 +77811,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -77095,8 +77839,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -77119,17 +77863,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -77146,17 +77890,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -77173,17 +77917,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -77200,17 +77944,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 280 } @@ -77256,7 +78000,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77273,7 +78017,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77290,7 +78034,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77307,7 +78051,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77333,7 +78077,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -77383,7 +78127,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77412,7 +78156,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77441,7 +78185,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77470,7 +78214,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77484,8 +78228,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77512,8 +78256,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77536,17 +78280,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77563,17 +78307,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77590,17 +78334,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77617,17 +78361,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77682,7 +78426,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77699,7 +78443,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77716,7 +78460,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77733,7 +78477,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77774,7 +78518,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -77824,7 +78568,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77853,7 +78597,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77882,7 +78626,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77911,7 +78655,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -77925,8 +78669,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77944,8 +78688,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77972,8 +78716,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77996,17 +78740,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -78023,17 +78767,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -78050,17 +78794,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -78077,17 +78821,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -78098,7 +78842,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4536109 priority: 280 join: BEVELJOIN @@ -78137,7 +78881,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 4536109 priority: 280 cap: BUTTCAP @@ -78215,7 +78959,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78240,7 +78984,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78265,7 +79009,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78290,7 +79034,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78309,7 +79053,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4536109 priority: 280 join: BEVELJOIN @@ -78360,7 +79104,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4536109 priority: 280 cap: BUTTCAP @@ -78410,7 +79154,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -78468,7 +79212,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78505,7 +79249,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78542,7 +79286,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78579,7 +79323,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78598,7 +79342,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4536109 priority: 280 join: BEVELJOIN @@ -78637,17 +79381,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4536109 priority: 280 cap: BUTTCAP @@ -78677,8 +79421,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -78713,8 +79457,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -78745,17 +79489,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78780,17 +79524,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78815,17 +79559,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78850,17 +79594,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4536109 priority: 280 } @@ -78879,7 +79623,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 4470602 priority: 210 join: BEVELJOIN @@ -78918,17 +79662,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 4470602 priority: 210 cap: BUTTCAP @@ -78950,8 +79694,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -78978,8 +79722,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79002,17 +79746,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -79029,17 +79773,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -79056,17 +79800,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -79083,17 +79827,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4408131 priority: 210 } @@ -79104,7 +79848,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 3682365 priority: 210 join: BEVELJOIN @@ -79167,7 +79911,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79184,7 +79928,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79201,7 +79945,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79218,7 +79962,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79229,7 +79973,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 3682365 priority: 210 join: BEVELJOIN @@ -79284,7 +80028,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1297109072 priority: 140 cap: BUTTCAP @@ -79334,7 +80078,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79363,7 +80107,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79392,7 +80136,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79421,7 +80165,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79432,7 +80176,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 3682365 priority: 210 join: BEVELJOIN @@ -79454,8 +80198,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79473,8 +80217,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79501,8 +80245,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79525,17 +80269,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79552,17 +80296,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79579,17 +80323,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -79606,17 +80350,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1294082594 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 4470602 priority: 210 } @@ -100727,7 +101471,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -100762,7 +101506,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -100779,7 +101523,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -100796,7 +101540,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -100813,7 +101557,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -100833,7 +101577,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 858532890 priority: 150 cap: BUTTCAP @@ -100854,7 +101598,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1295527997 priority: 210 cap: BUTTCAP @@ -100878,7 +101622,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1297109072 priority: 140 cap: BUTTCAP @@ -100907,7 +101651,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1297109072 priority: 140 cap: BUTTCAP @@ -100919,7 +101663,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 6.3 @@ -100942,13 +101686,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -100971,13 +101715,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -101000,13 +101744,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 328965 dashdot { dd: 8.1 @@ -113104,7 +113848,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113112,7 +113856,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113120,7 +113864,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113128,7 +113872,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113174,7 +113918,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113182,7 +113926,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113190,7 +113934,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113198,7 +113942,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113244,7 +113988,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113252,7 +113996,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113260,7 +114004,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113268,7 +114012,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 6052945 priority: 320 } @@ -113399,7 +114143,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113413,7 +114157,7 @@ cont { element { scale: 8 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113427,7 +114171,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113441,7 +114185,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113462,7 +114206,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113483,7 +114227,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113504,7 +114248,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113524,7 +114268,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113544,7 +114288,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113564,7 +114308,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113583,7 +114327,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113602,7 +114346,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113621,7 +114365,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -113640,7 +114384,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1714046273 dashdot { dd: 5.4 @@ -128784,7 +129528,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2147885094 priority: -990 join: BEVELJOIN @@ -128941,7 +129685,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2151825986 priority: 30 cap: BUTTCAP @@ -128961,14 +129705,14 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2151825986 priority: 30 } area { color: 3881787 border { - width: 1.0 + width: 1 color: 6381921 } priority: 30 @@ -128991,7 +129735,7 @@ cont { area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -129007,14 +129751,14 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -129030,14 +129774,14 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -129053,14 +129797,14 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1.0 + width: 1 color: 6908265 } priority: 30 @@ -129118,7 +129862,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129130,7 +129874,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129142,7 +129886,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129154,7 +129898,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129166,7 +129910,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129363,7 +130107,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129375,7 +130119,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129387,7 +130131,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129399,7 +130143,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129411,7 +130155,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 9758 dashdot { dd: 2.7 @@ -129608,7 +130352,7 @@ cont { element { scale: 11 lines { - width: 2.0 + width: 2 color: 1292247078 priority: -990 join: BEVELJOIN @@ -129626,7 +130370,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 1292247078 priority: -990 join: BEVELJOIN @@ -129778,7 +130522,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2147885094 priority: -990 join: BEVELJOIN @@ -129922,7 +130666,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1292247078 dashdot { dd: 2.7 @@ -129964,11 +130708,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 cap: BUTTCAP @@ -129985,11 +130729,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130005,11 +130749,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130025,11 +130769,11 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130045,11 +130789,11 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130065,11 +130809,11 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130088,7 +130832,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1292247078 dashdot { dd: 2.7 @@ -130130,11 +130874,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 cap: BUTTCAP @@ -130151,11 +130895,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130171,11 +130915,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130191,11 +130935,11 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130211,11 +130955,11 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130231,11 +130975,11 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 401446 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130436,7 +131180,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2151825986 priority: 330 cap: BUTTCAP @@ -130452,7 +131196,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2151825986 priority: 330 } @@ -130482,7 +131226,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2151825986 priority: 330 } @@ -130497,7 +131241,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 330 } @@ -130512,7 +131256,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2151825986 priority: 330 } diff --git a/data/drules_proto_outdoors_light.bin b/data/drules_proto_outdoors_light.bin index b99244d43e889a287e08b1bf8eb2ba4d58e91559..6663e8480d9486638d22fd8eaeab14f2a48b9f8b 100644 GIT binary patch delta 1291 zcmdn^SF&Y-RKpfV3st$xEL>6&>K}AMO4F?Wh zAq~!1GeO{^y};|)XJ;`>32_N9fPshuM268}x}Y+nl#o3KpO8A|*)t&U1+03yVF{zy z^d@CSX#swq6hzw(R4GXzTMhvsRZe3t_>CkvNr_QR7$_?Ul!a(zZ~(ahVk%5l2(FhI zi>xqSSrJ^a;u7arxI{66CpEEnx_~01)d&t4=?g4e;+O$bQIJ|hAkn}Q3ycOQ8g z!vsoUFhwwWdZRL?cI88m5~4n-3=cA diff --git a/data/drules_proto_outdoors_light.txt b/data/drules_proto_outdoors_light.txt index fcfdeb8975..3f97ce7255 100644 --- a/data/drules_proto_outdoors_light.txt +++ b/data/drules_proto_outdoors_light.txt @@ -7,7 +7,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15.0 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 3.0 - dd: 30.0 + dd: 3 + dd: 30 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1296319556 dashdot { - dd: 4.0 - dd: 45.0 + dd: 4 + dd: 45 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1.0 - dd: 10.0 + dd: 1 + dd: 10 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1296319556 dashdot { - dd: 1.0 - dd: 15.0 + dd: 1 + dd: 15 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4473924 dashdot { - dd: 1.0 - dd: 22.0 + dd: 1 + dd: 22 } priority: 380 } lines { - width: 1.0 + width: 1 color: 1296319556 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2583230712 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 13224123 border { - width: 1.0 + width: 1 color: 10197647 } priority: -1850 @@ -15145,7 +15145,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1304608947 priority: 320 cap: BUTTCAP @@ -15166,10 +15166,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 320 } @@ -15180,10 +15180,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 320 } @@ -15194,10 +15194,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 320 } @@ -15205,13 +15205,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15219,13 +15219,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 320 } @@ -15478,7 +15478,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1300793480 priority: 320 cap: BUTTCAP @@ -15487,7 +15487,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1300793480 priority: 320 } @@ -15629,7 +15629,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 1301133440 priority: 320 } @@ -15637,7 +15637,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 864925824 priority: 320 } @@ -15645,7 +15645,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 864925824 priority: 320 } @@ -15833,7 +15833,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1.0 + dd: 1 } priority: 100 } @@ -15844,9 +15844,9 @@ cont { width: 3.2 color: 1300793480 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.2 } priority: 100 @@ -15858,9 +15858,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15872,9 +15872,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -15886,9 +15886,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 + dd: 6 + dd: 3 + dd: 3 dd: 1.5 } priority: 100 @@ -16283,7 +16283,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1300793480 priority: 320 cap: BUTTCAP @@ -16292,7 +16292,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1300793480 priority: 320 } @@ -16493,7 +16493,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1298359132 priority: 90 join: BEVELJOIN @@ -16696,7 +16696,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1299411563 dashdot { dd: 1.8 @@ -17998,7 +17998,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -18021,7 +18021,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18044,7 +18044,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18067,7 +18067,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18090,7 +18090,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18208,7 +18208,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -18231,7 +18231,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18254,7 +18254,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18277,7 +18277,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18300,7 +18300,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18340,7 +18340,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -18363,7 +18363,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18386,7 +18386,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18409,7 +18409,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18432,7 +18432,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18472,7 +18472,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 130 @@ -18495,7 +18495,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18518,7 +18518,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18541,7 +18541,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18564,7 +18564,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 130 @@ -18590,7 +18590,7 @@ cont { area { color: 868862139 border { - width: 1.0 + width: 1 color: 10592406 } priority: 110 @@ -18601,7 +18601,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18612,7 +18612,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18623,7 +18623,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -18634,7 +18634,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 110 @@ -21092,11 +21092,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21109,8 +21109,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21123,7 +21123,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21144,7 +21144,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21162,10 +21162,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21186,7 +21186,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21206,7 +21206,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21223,10 +21223,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21243,10 +21243,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21263,10 +21263,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21286,11 +21286,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21303,8 +21303,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21317,7 +21317,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21338,7 +21338,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21356,16 +21356,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21392,7 +21392,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21424,7 +21424,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21441,22 +21441,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21473,22 +21473,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21505,22 +21505,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21540,11 +21540,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21557,8 +21557,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6.0 - dd: 1.0 + dd: 6 + dd: 1 } priority: 180 join: BEVELJOIN @@ -21571,7 +21571,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21592,7 +21592,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7.0 + dd: 7 dd: 1.2 } priority: 180 @@ -21610,10 +21610,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21634,7 +21634,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9.0 + dd: 9 dd: 1.7 } priority: 180 @@ -21654,7 +21654,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 @@ -21669,8 +21669,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21687,26 +21687,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21723,26 +21723,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21759,26 +21759,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 12.0 + dd: 12 dd: 2.2 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -21929,7 +21929,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -21945,7 +21945,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -21961,7 +21961,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -21977,7 +21977,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -22021,7 +22021,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -22037,7 +22037,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -22053,7 +22053,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -22069,7 +22069,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -22113,7 +22113,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 871954680 priority: 190 } @@ -22129,7 +22129,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 871954680 priority: 190 } @@ -22145,7 +22145,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -22161,7 +22161,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 871954680 priority: 190 } @@ -22234,7 +22234,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 11250586 dashdot { dd: 7.2 @@ -22258,7 +22258,7 @@ cont { width: 2.6 color: 11250586 dashdot { - dd: 9.0 + dd: 9 dd: 3.6 } priority: 160 @@ -22275,7 +22275,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 11250586 dashdot { dd: 10.8 @@ -22295,7 +22295,7 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 11250586 dashdot { dd: 13.5 @@ -22315,10 +22315,10 @@ cont { element { scale: 19 lines { - width: 6.0 + width: 6 color: 11250586 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -22335,10 +22335,10 @@ cont { element { scale: 20 lines { - width: 6.0 + width: 6 color: 11250586 dashdot { - dd: 18.0 + dd: 18 dd: 6.2 } priority: 160 @@ -22368,7 +22368,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22445,7 +22445,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 5459435 priority: 330 } @@ -22522,7 +22522,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22566,7 +22566,7 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -22611,19 +22611,19 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 5459435 priority: 330 } @@ -22721,6 +22721,750 @@ cont { } } } +cont { + name: "highway-cycleway-difficult" + element { + scale: 11 + lines { + width: 0.9 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 861097451 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-easy" + element { + scale: 11 + lines { + width: 0.9 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 861097451 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-expert" + element { + scale: 11 + lines { + width: 0.9 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 861097451 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-intermediate" + element { + scale: 11 + lines { + width: 0.9 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 1 + color: 1297305067 + priority: 330 + join: BEVELJOIN + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 1.1 + color: 861097451 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 10 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 14 + lines { + width: 1.3 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 15 + lines { + width: 1.5 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 11 + color: 4473924 + stroke_color: 871230427 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.7 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 2 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 2.4 + color: 5459435 + dashdot { + dd: 5 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 12 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} cont { name: "highway-cycleway-tunnel" element { @@ -22736,7 +23480,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22813,22 +23557,22 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 5459435 priority: 330 } lines { - width: 6.0 + width: 6 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22859,8 +23603,8 @@ cont { width: 9.8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22891,8 +23635,8 @@ cont { width: 10.8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22923,8 +23667,8 @@ cont { width: 10.8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -22975,11 +23719,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -22993,7 +23737,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23006,7 +23750,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23027,7 +23771,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23045,10 +23789,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23069,7 +23813,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23089,7 +23833,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23106,10 +23850,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23126,10 +23870,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23146,10 +23890,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23169,11 +23913,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23187,7 +23931,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23200,7 +23944,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23221,7 +23965,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -23243,10 +23987,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23271,7 +24015,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -23295,7 +24039,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23316,10 +24060,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23340,10 +24084,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23364,10 +24108,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -23391,11 +24135,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -23428,8 +24172,8 @@ cont { width: 1.3 color: 871954680 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -23455,8 +24199,8 @@ cont { width: 1.6 color: 871954680 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -23479,10 +24223,10 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 871954680 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -23508,7 +24252,7 @@ cont { width: 2.6 color: 871954680 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -23525,7 +24269,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 861097451 priority: 170 } @@ -23533,8 +24277,8 @@ cont { width: 3.3 color: 871954680 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23555,11 +24299,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23580,11 +24324,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23605,11 +24349,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -23628,11 +24372,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -23646,7 +24390,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -23659,7 +24403,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -23680,7 +24424,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -23698,16 +24442,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23734,7 +24478,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23766,7 +24510,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23783,22 +24527,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23815,22 +24559,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23847,22 +24591,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23885,7 +24629,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 330 @@ -23897,7 +24641,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23906,10 +24650,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23918,10 +24662,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23930,10 +24674,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 330 @@ -23948,7 +24692,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -23960,7 +24704,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23969,10 +24713,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23981,10 +24725,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -23993,10 +24737,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -24008,11 +24752,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -24026,7 +24770,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -24039,7 +24783,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -24060,7 +24804,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -24078,10 +24822,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -24102,7 +24846,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -24122,7 +24866,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -24137,8 +24881,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24155,26 +24899,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24191,26 +24935,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24227,26 +24971,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -24266,11 +25010,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -24296,10 +25040,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -24337,11 +25081,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -24361,11 +25105,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -24385,7 +25129,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -24409,7 +25153,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -24446,7 +25190,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -24582,7 +25326,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -24718,7 +25462,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -24764,8 +25508,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24790,8 +25534,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24816,8 +25560,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24842,8 +25586,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -24868,8 +25612,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -25075,7 +25819,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -25119,7 +25863,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -25306,7 +26050,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -25411,13 +26155,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -25445,7 +26189,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 871230427 priority: 150 cap: BUTTCAP @@ -25473,19 +26217,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -25507,13 +26251,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -25541,13 +26285,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -25669,8 +26413,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -25703,8 +26447,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -25736,8 +26480,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -25769,8 +26513,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25799,17 +26543,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16557154 priority: 310 } @@ -25834,8 +26578,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25863,17 +26607,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16557154 priority: 310 } @@ -25898,8 +26642,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -25930,8 +26674,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -26049,7 +26793,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -26166,7 +26910,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -26303,7 +27047,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -26374,7 +27118,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -26409,7 +27153,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -26450,13 +27194,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -26641,7 +27385,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -26692,8 +27436,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -26725,8 +27469,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -26758,8 +27502,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26788,17 +27532,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16557154 priority: 228 } @@ -26823,8 +27567,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26855,8 +27599,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26887,8 +27631,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26919,8 +27663,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -26951,11 +27695,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -26969,7 +27713,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -26982,7 +27726,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -27003,7 +27747,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 180 @@ -27021,10 +27765,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -27045,7 +27789,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 180 @@ -27065,7 +27809,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27082,10 +27826,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27102,10 +27846,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27122,10 +27866,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 180 @@ -27145,11 +27889,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27159,7 +27903,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1297305067 priority: 170 join: BEVELJOIN @@ -27189,8 +27933,8 @@ cont { width: 1.3 color: 866144274 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -27216,8 +27960,8 @@ cont { width: 1.6 color: 866144274 dashdot { - dd: 4.0 - dd: 3.0 + dd: 4 + dd: 3 } priority: 180 cap: BUTTCAP @@ -27240,10 +27984,10 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -27269,7 +28013,7 @@ cont { width: 2.6 color: 866144274 dashdot { - dd: 6.0 + dd: 6 dd: 4.5 } priority: 180 @@ -27286,7 +28030,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 5459435 priority: 170 } @@ -27294,8 +28038,8 @@ cont { width: 3.3 color: 866144274 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27316,11 +28060,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27341,11 +28085,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27366,11 +28110,11 @@ cont { priority: 170 } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 - dd: 6.0 + dd: 8 + dd: 6 } priority: 180 } @@ -27389,11 +28133,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -27407,7 +28151,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -27420,7 +28164,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -27441,7 +28185,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -27459,16 +28203,16 @@ cont { element { scale: 15 lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -27495,7 +28239,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -27527,7 +28271,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27544,22 +28288,22 @@ cont { element { scale: 18 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27576,22 +28320,22 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27608,22 +28352,22 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -27643,11 +28387,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1302351890 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27660,8 +28404,8 @@ cont { width: 1.1 color: 866144274 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27713,11 +28457,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { dd: 2.5 - dd: 4.0 + dd: 4 } priority: 180 cap: BUTTCAP @@ -27738,7 +28482,7 @@ cont { color: 10506258 dashdot { dd: 2.5 - dd: 4.0 + dd: 4 } priority: 180 } @@ -27758,7 +28502,7 @@ cont { color: 10506258 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27774,11 +28518,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27794,11 +28538,11 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27814,11 +28558,11 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { dd: 3.6 - dd: 5.0 + dd: 5 } priority: 180 } @@ -27837,11 +28581,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1295853079 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27854,8 +28598,8 @@ cont { width: 1.1 color: 859645463 dashdot { - dd: 1.0 - dd: 2.0 + dd: 1 + dd: 2 } priority: 180 join: BEVELJOIN @@ -27869,7 +28613,7 @@ cont { color: 4007447 dashdot { dd: 1.4 - dd: 5.0 + dd: 5 } priority: 180 cap: BUTTCAP @@ -27890,7 +28634,7 @@ cont { color: 4007447 dashdot { dd: 1.4 - dd: 5.0 + dd: 5 } priority: 180 cap: BUTTCAP @@ -27907,11 +28651,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 4007447 dashdot { dd: 2.3 - dd: 9.0 + dd: 9 } priority: 180 cap: BUTTCAP @@ -27932,7 +28676,7 @@ cont { color: 4007447 dashdot { dd: 2.3 - dd: 9.0 + dd: 9 } priority: 180 } @@ -27952,7 +28696,7 @@ cont { color: 4007447 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -27968,11 +28712,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 4007447 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -27988,11 +28732,11 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 4007447 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28008,11 +28752,11 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 4007447 dashdot { dd: 3.5 - dd: 11.0 + dd: 11 } priority: 180 } @@ -28031,11 +28775,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28049,7 +28793,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28062,7 +28806,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28083,7 +28827,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28101,10 +28845,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28125,7 +28869,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28145,7 +28889,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28162,10 +28906,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28182,10 +28926,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28202,10 +28946,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28225,11 +28969,11 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1721782290 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28243,7 +28987,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 155 join: BEVELJOIN @@ -28256,7 +29000,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28277,7 +29021,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 155 @@ -28295,10 +29039,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28319,7 +29063,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 155 @@ -28339,7 +29083,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 @@ -28354,8 +29098,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28372,26 +29116,26 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28408,26 +29152,26 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28444,26 +29188,26 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 10506258 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 155 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -28483,11 +29227,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28517,10 +29261,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28558,11 +29302,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -28578,11 +29322,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -28598,7 +29342,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -28618,7 +29362,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -28641,11 +29385,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28679,10 +29423,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28728,11 +29472,11 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -28752,11 +29496,11 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -28776,7 +29520,7 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -28800,7 +29544,7 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -28833,11 +29577,11 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -28885,16 +29629,16 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -28912,7 +29656,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -28956,11 +29700,11 @@ cont { cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 670628088 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -28988,11 +29732,11 @@ cont { cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -29020,7 +29764,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -29052,7 +29796,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16316664 dashdot { dd: 16.2 @@ -29075,11 +29819,11 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 670628088 dashdot { - dd: 2.0 - dd: 1.0 + dd: 2 + dd: 1 } priority: 200 cap: BUTTCAP @@ -29109,10 +29853,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 670628088 dashdot { - dd: 5.0 + dd: 5 dd: 2.2 } priority: 200 @@ -29133,8 +29877,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP @@ -29160,21 +29904,21 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 3.0 + width: 3 color: 1308622847 dashdot { - dd: 5.0 - dd: 2.0 + dd: 5 + dd: 2 } priority: 200 } @@ -29190,21 +29934,21 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 1308622847 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 200 } @@ -29220,17 +29964,17 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 dashdot { dd: 16.2 @@ -29250,17 +29994,17 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 199 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 1308622847 dashdot { dd: 16.2 @@ -29444,7 +30188,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16752972 priority: 290 } @@ -29748,13 +30492,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16752972 priority: 290 } @@ -30033,8 +30777,8 @@ cont { width: 4.8 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 289 cap: BUTTCAP @@ -30066,8 +30810,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30096,17 +30840,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16557154 priority: 290 } @@ -30131,8 +30875,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30163,8 +30907,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30195,8 +30939,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30227,8 +30971,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 289 cap: BUTTCAP @@ -30283,7 +31027,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 16749632 priority: 226 join: BEVELJOIN @@ -30513,7 +31257,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 16749632 priority: 226 join: BEVELJOIN @@ -30601,7 +31345,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -30670,7 +31414,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -30827,7 +31571,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 16749632 priority: 226 join: BEVELJOIN @@ -30877,8 +31621,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 225 cap: BUTTCAP @@ -30910,8 +31654,8 @@ cont { width: 4.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -30943,8 +31687,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -30975,8 +31719,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31007,8 +31751,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31039,8 +31783,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31071,8 +31815,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 225 cap: BUTTCAP @@ -31103,7 +31847,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1298356016 priority: 180 cap: BUTTCAP @@ -31137,7 +31881,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 862148400 priority: 180 } @@ -31153,7 +31897,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 862148400 priority: 180 } @@ -31169,7 +31913,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 862148400 priority: 180 } @@ -31185,7 +31929,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 862148400 priority: 180 } @@ -31214,7 +31958,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -31394,7 +32138,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -31574,7 +32318,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -31591,7 +32335,7 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 priority: 140 cap: BUTTCAP @@ -31695,7 +32439,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -31838,7 +32582,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -31898,8 +32642,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -31930,8 +32674,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -31962,8 +32706,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -31994,8 +32738,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32026,8 +32770,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 229 cap: BUTTCAP @@ -32175,7 +32919,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -32311,7 +33055,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -32507,7 +33251,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 16316664 priority: 230 cap: BUTTCAP @@ -32762,7 +33506,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16760658 priority: 270 } @@ -33034,13 +33778,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16760658 priority: 270 } @@ -33330,17 +34074,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16760658 priority: 270 } @@ -33365,8 +34109,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33397,8 +34141,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33429,8 +34173,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33461,8 +34205,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 269 cap: BUTTCAP @@ -33639,7 +34383,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -33688,7 +34432,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -33827,8 +34571,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -33853,8 +34597,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -33879,8 +34623,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -33905,8 +34649,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -33931,8 +34675,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 223 cap: BUTTCAP @@ -34210,7 +34954,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -34232,7 +34976,7 @@ cont { element { scale: 17 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -34363,7 +35107,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 16316664 priority: 190 } @@ -34379,7 +35123,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 16316664 priority: 190 } @@ -34395,7 +35139,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 priority: 190 } @@ -34411,7 +35155,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 priority: 190 } @@ -34455,7 +35199,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 16316664 priority: 190 } @@ -34471,7 +35215,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 16316664 priority: 190 } @@ -34487,7 +35231,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 16316664 priority: 190 } @@ -34503,7 +35247,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 16316664 priority: 190 } @@ -34753,7 +35497,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -34766,7 +35510,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -34787,7 +35531,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -34826,7 +35570,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { dd: 1.8 @@ -34846,7 +35590,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -34866,7 +35610,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -34886,10 +35630,10 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -34906,10 +35650,10 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -34933,7 +35677,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -34946,7 +35690,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -34967,7 +35711,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35012,13 +35756,13 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 16316664 dashdot { dd: 1.8 @@ -35038,19 +35782,19 @@ cont { element { scale: 17 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7.0 + width: 7 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -35070,19 +35814,19 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -35102,22 +35846,22 @@ cont { element { scale: 19 lines { - width: 14.0 + width: 14 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35134,22 +35878,22 @@ cont { element { scale: 20 lines { - width: 14.0 + width: 14 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13.0 + width: 13 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 @@ -35173,7 +35917,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 330 join: BEVELJOIN @@ -35186,7 +35930,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35207,7 +35951,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 330 @@ -35246,7 +35990,7 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 16316664 dashdot { dd: 1.8 @@ -35266,7 +36010,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 16316664 dashdot { dd: 2.5 @@ -35275,17 +36019,17 @@ cont { priority: 330 } lines { - width: 7.0 + width: 7 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35302,7 +36046,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 16316664 dashdot { dd: 3.2 @@ -35311,17 +36055,17 @@ cont { priority: 330 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35338,26 +36082,26 @@ cont { element { scale: 19 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35374,26 +36118,26 @@ cont { element { scale: 20 lines { - width: 10.0 + width: 10 color: 16316664 dashdot { - dd: 4.0 + dd: 4 dd: 3.5 } priority: 330 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -35510,7 +36254,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -35750,13 +36494,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -36014,17 +36758,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -36049,8 +36793,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36081,8 +36825,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36113,8 +36857,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36145,8 +36889,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -36289,7 +37033,7 @@ cont { cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 871230427 priority: 150 cap: BUTTCAP @@ -36330,7 +37074,7 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP @@ -36452,8 +37196,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36470,8 +37214,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36488,8 +37232,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36514,8 +37258,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36540,8 +37284,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 221 cap: BUTTCAP @@ -36569,7 +37313,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36583,7 +37327,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36597,8 +37341,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36615,11 +37359,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36639,7 +37383,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36660,7 +37404,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36677,11 +37421,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36697,11 +37441,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36717,11 +37461,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36737,11 +37481,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36763,7 +37507,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36777,7 +37521,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36791,8 +37535,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36809,11 +37553,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -36833,7 +37577,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36854,7 +37598,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -36871,11 +37615,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36891,11 +37635,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36911,11 +37655,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36931,11 +37675,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -36957,7 +37701,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36971,7 +37715,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -36985,8 +37729,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37003,11 +37747,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37024,7 +37768,7 @@ cont { element { scale: 15 lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -37033,7 +37777,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37060,7 +37804,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37077,23 +37821,23 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4.0 + width: 4 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37109,23 +37853,23 @@ cont { element { scale: 18 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37141,23 +37885,23 @@ cont { element { scale: 19 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37173,23 +37917,23 @@ cont { element { scale: 20 lines { - width: 12.0 + width: 12 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37211,7 +37955,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37225,7 +37969,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37239,8 +37983,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37257,11 +38001,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37281,7 +38025,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37302,7 +38046,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37319,11 +38063,11 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37339,11 +38083,11 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37359,11 +38103,11 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37379,11 +38123,11 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } @@ -37405,7 +38149,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37419,7 +38163,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6.0 + dd: 6 dd: 2.5 } priority: 180 @@ -37433,8 +38177,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37451,11 +38195,11 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 6510384 dashdot { - dd: 7.0 - dd: 3.0 + dd: 7 + dd: 3 } priority: 180 cap: BUTTCAP @@ -37475,7 +38219,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37496,7 +38240,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9.0 + dd: 9 dd: 3.5 } priority: 180 @@ -37513,26 +38257,26 @@ cont { element { scale: 17 lines { - width: 4.0 + width: 4 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 9.0 + width: 9 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37549,26 +38293,26 @@ cont { element { scale: 18 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37585,26 +38329,26 @@ cont { element { scale: 19 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37621,26 +38365,26 @@ cont { element { scale: 20 lines { - width: 5.0 + width: 5 color: 6510384 dashdot { - dd: 12.0 - dd: 4.0 + dd: 12 + dd: 4 } priority: 180 } lines { - width: 11.0 + width: 11 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 40 cap: BUTTCAP @@ -37841,7 +38585,7 @@ cont { element { scale: 16 lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -37885,7 +38629,7 @@ cont { element { scale: 18 lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -38072,7 +38816,7 @@ cont { cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 871230427 priority: 150 cap: BUTTCAP @@ -38177,13 +38921,13 @@ cont { cap: BUTTCAP } lines { - width: 12.0 + width: 12 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16742950 priority: 310 } @@ -38211,7 +38955,7 @@ cont { cap: BUTTCAP } lines { - width: 18.0 + width: 18 color: 871230427 priority: 150 cap: BUTTCAP @@ -38239,19 +38983,19 @@ cont { element { scale: 18 lines { - width: 26.0 + width: 26 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24.0 + width: 24 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16742950 priority: 310 } @@ -38273,13 +39017,13 @@ cont { element { scale: 19 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -38307,13 +39051,13 @@ cont { element { scale: 20 lines { - width: 31.0 + width: 31 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29.0 + width: 29 color: 871230427 priority: 150 cap: BUTTCAP @@ -38435,8 +39179,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2.0 - dd: 2.0 + dd: 2 + dd: 2 } priority: 309 cap: BUTTCAP @@ -38469,8 +39213,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -38502,8 +39246,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 309 cap: BUTTCAP @@ -38535,8 +39279,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38565,17 +39309,17 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 6.0 + width: 6 color: 16557154 priority: 310 } @@ -38600,8 +39344,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38629,17 +39373,17 @@ cont { element { scale: 18 lines { - width: 13.0 + width: 13 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 16557154 priority: 310 } @@ -38664,8 +39408,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38696,8 +39440,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 309 cap: BUTTCAP @@ -38752,7 +39496,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -38869,7 +39613,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -39006,7 +39750,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -39077,7 +39821,7 @@ cont { element { scale: 14 lines { - width: 6.0 + width: 6 color: 1300267136 priority: 140 cap: BUTTCAP @@ -39112,7 +39856,7 @@ cont { element { scale: 15 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -39153,13 +39897,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16746278 priority: 228 } @@ -39344,7 +40088,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 16746278 priority: 228 join: BEVELJOIN @@ -39395,8 +40139,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -39428,8 +40172,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 } priority: 227 cap: BUTTCAP @@ -39461,8 +40205,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39491,17 +40235,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16557154 priority: 228 } @@ -39526,8 +40270,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39558,8 +40302,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39590,8 +40334,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39622,8 +40366,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 227 cap: BUTTCAP @@ -39725,7 +40469,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -39879,7 +40623,7 @@ cont { element { scale: 16 lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -40063,13 +40807,13 @@ cont { cap: BUTTCAP } lines { - width: 10.0 + width: 10 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -40271,17 +41015,17 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 16777215 priority: 250 } @@ -40300,8 +41044,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40326,8 +41070,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40352,8 +41096,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -40378,8 +41122,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 249 cap: BUTTCAP @@ -42755,7 +43499,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1304608947 priority: 360 cap: BUTTCAP @@ -42776,10 +43520,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3.0 - dd: 3.0 + dd: 3 + dd: 3 dd: 1.5 - dd: 3.0 + dd: 3 } priority: 360 } @@ -42790,10 +43534,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4.0 - dd: 4.0 + dd: 4 + dd: 4 dd: 1.9 - dd: 4.0 + dd: 4 } priority: 360 } @@ -42804,10 +43548,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6.0 - dd: 6.0 + dd: 6 + dd: 6 dd: 2.5 - dd: 6.0 + dd: 6 } priority: 360 } @@ -42815,13 +43559,13 @@ cont { element { scale: 19 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -42829,13 +43573,13 @@ cont { element { scale: 20 lines { - width: 11.0 + width: 11 color: 1305069755 dashdot { - dd: 8.0 - dd: 8.0 - dd: 3.0 - dd: 8.0 + dd: 8 + dd: 8 + dd: 3 + dd: 8 } priority: 360 } @@ -44743,8 +45487,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44.0 - offset: 30.0 + step: 44 + offset: 30 } } } @@ -44754,8 +45498,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54.0 - offset: 50.0 + step: 54 + offset: 50 } } } @@ -44765,8 +45509,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64.0 - offset: 70.0 + step: 64 + offset: 70 } } } @@ -44776,8 +45520,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -44787,8 +45531,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -44798,8 +45542,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74.0 - offset: 90.0 + step: 74 + offset: 90 } } } @@ -44964,7 +45708,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -44979,7 +45723,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -44994,7 +45738,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45009,7 +45753,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45024,7 +45768,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 } @@ -45076,7 +45820,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 join: BEVELJOIN @@ -45093,7 +45837,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -45283,7 +46027,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 2371253590 priority: 60 } @@ -45298,7 +46042,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 2371253590 priority: 60 } @@ -45313,7 +46057,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 2371253590 priority: 60 } @@ -45391,7 +46135,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -45407,7 +46151,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 2370396489 priority: 60 cap: BUTTCAP @@ -53831,7 +54575,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 869387687 priority: 160 } @@ -53848,7 +54592,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 869387687 priority: 160 } @@ -53865,7 +54609,7 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 869387687 priority: 160 } @@ -53882,7 +54626,7 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 869387687 priority: 160 } @@ -54106,7 +54850,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1306780114 priority: 30 cap: BUTTCAP @@ -54119,7 +54863,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1306780114 priority: 30 } @@ -54150,7 +54894,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1306780114 priority: 30 } @@ -54169,7 +54913,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -54188,7 +54932,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -54396,7 +55140,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1724896680 priority: 80 cap: BUTTCAP @@ -54413,7 +55157,7 @@ cont { element { scale: 17 lines { - width: 6.0 + width: 6 color: 1724896680 priority: 80 } @@ -54421,7 +55165,7 @@ cont { element { scale: 18 lines { - width: 8.0 + width: 8 color: 1724896680 priority: 80 } @@ -54429,7 +55173,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1724896680 priority: 80 } @@ -54437,7 +55181,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1724896680 priority: 80 } @@ -54451,9 +55195,9 @@ cont { width: 3.5 color: 1304608947 dashdot { - dd: 4.0 - dd: 2.0 - dd: 2.0 + dd: 4 + dd: 2 + dd: 2 dd: 1.5 } priority: 100 @@ -54462,13 +55206,13 @@ cont { element { scale: 17 lines { - width: 5.0 + width: 5 color: 1304608947 dashdot { - dd: 6.0 - dd: 3.0 - dd: 3.0 - dd: 2.0 + dd: 6 + dd: 3 + dd: 3 + dd: 2 } priority: 100 } @@ -54476,13 +55220,13 @@ cont { element { scale: 18 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -54490,13 +55234,13 @@ cont { element { scale: 19 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -54504,13 +55248,13 @@ cont { element { scale: 20 lines { - width: 7.0 + width: 7 color: 1304608947 dashdot { - dd: 8.0 - dd: 4.0 - dd: 4.0 - dd: 3.0 + dd: 8 + dd: 4 + dd: 4 + dd: 3 } priority: 100 } @@ -54812,7 +55556,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1306780114 priority: 30 cap: BUTTCAP @@ -54825,7 +55569,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1306780114 priority: 30 } @@ -54856,7 +55600,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 1306780114 priority: 30 } @@ -54875,7 +55619,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -54894,7 +55638,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 1306780114 priority: 30 } @@ -57023,7 +57767,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 2156681254 dashdot { dd: 1.4 @@ -57037,7 +57781,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 2156681254 dashdot { dd: 1.4 @@ -57050,7 +57794,7 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1720473638 dashdot { dd: 1.5 @@ -57066,7 +57810,7 @@ cont { width: 6.2 color: 1720473638 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -57082,8 +57826,8 @@ cont { color: 1301043238 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -57095,9 +57839,9 @@ cont { width: 9.5 color: 864835622 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -57109,9 +57853,9 @@ cont { width: 11.9 color: 864835622 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -57123,9 +57867,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57137,9 +57881,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57486,7 +58230,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 2156681254 dashdot { dd: 1.4 @@ -57500,7 +58244,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 2156681254 dashdot { dd: 1.4 @@ -57513,7 +58257,7 @@ cont { element { scale: 14 lines { - width: 3.0 + width: 3 color: 1720473638 dashdot { dd: 1.5 @@ -57529,7 +58273,7 @@ cont { width: 6.2 color: 1720473638 dashdot { - dd: 3.0 + dd: 3 dd: 3.5 dd: 4.5 dd: 1.2 @@ -57545,8 +58289,8 @@ cont { color: 1301043238 dashdot { dd: 3.5 - dd: 5.0 - dd: 6.0 + dd: 5 + dd: 6 dd: 1.4 } priority: 100 @@ -57558,9 +58302,9 @@ cont { width: 9.5 color: 864835622 dashdot { - dd: 4.0 - dd: 6.0 - dd: 8.0 + dd: 4 + dd: 6 + dd: 8 dd: 1.5 } priority: 100 @@ -57572,9 +58316,9 @@ cont { width: 11.9 color: 864835622 dashdot { - dd: 5.0 - dd: 7.0 - dd: 10.0 + dd: 5 + dd: 7 + dd: 10 dd: 1.9 } priority: 100 @@ -57586,9 +58330,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -57600,9 +58344,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6.0 + dd: 6 dd: 8.5 - dd: 12.0 + dd: 12 dd: 2.3 } priority: 100 @@ -59228,7 +59972,7 @@ cont { element { scale: 11 lines { - width: 2.0 + width: 2 color: 1295429823 priority: -990 join: BEVELJOIN @@ -59238,7 +59982,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 1295429823 priority: -990 join: BEVELJOIN @@ -63897,7 +64641,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2579790591 priority: 120 join: BEVELJOIN @@ -64025,7 +64769,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2567571981 priority: 120 join: BEVELJOIN @@ -64271,7 +65015,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2567645179 priority: 120 join: BEVELJOIN @@ -64458,7 +65202,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2569143845 priority: 120 join: BEVELJOIN @@ -64645,7 +65389,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2582553856 priority: 120 join: BEVELJOIN @@ -64773,7 +65517,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2583432731 priority: 120 join: BEVELJOIN @@ -64960,7 +65704,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2573200174 priority: 120 join: BEVELJOIN @@ -65151,7 +65895,7 @@ cont { color: 1304722175 dashdot { dd: 3.5 - dd: 2.0 + dd: 2 } priority: 120 join: BEVELJOIN @@ -65164,7 +65908,7 @@ cont { width: 1.3 color: 1304722175 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -65185,7 +65929,7 @@ cont { width: 1.6 color: 1304722175 dashdot { - dd: 4.0 + dd: 4 dd: 2.5 } priority: 120 @@ -65203,10 +65947,10 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 1304722175 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 120 @@ -65227,7 +65971,7 @@ cont { width: 2.6 color: 1304722175 dashdot { - dd: 6.0 + dd: 6 dd: 3.5 } priority: 120 @@ -65247,7 +65991,7 @@ cont { width: 3.3 color: 1304722175 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65264,10 +66008,10 @@ cont { element { scale: 18 lines { - width: 4.0 + width: 4 color: 1304722175 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65284,10 +66028,10 @@ cont { element { scale: 19 lines { - width: 4.0 + width: 4 color: 1304722175 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65304,10 +66048,10 @@ cont { element { scale: 20 lines { - width: 4.0 + width: 4 color: 1304722175 dashdot { - dd: 8.0 + dd: 8 dd: 4.5 } priority: 120 @@ -65337,7 +66081,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1304722175 priority: 120 cap: BUTTCAP @@ -65481,7 +66225,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1304722175 priority: 120 cap: BUTTCAP @@ -65615,7 +66359,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2579790591 priority: 120 join: BEVELJOIN @@ -72065,17 +72809,17 @@ cont { element { scale: 15 lines { - width: 4.0 + width: 4 color: 2157352326 dashdot { - dd: 1.0 - dd: 50.0 + dd: 1 + dd: 50 } priority: 340 cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 2157352326 priority: 350 cap: BUTTCAP @@ -72084,16 +72828,16 @@ cont { element { scale: 16 lines { - width: 4.0 + width: 4 color: 2157352326 dashdot { - dd: 1.0 - dd: 50.0 + dd: 1 + dd: 50 } priority: 340 } lines { - width: 1.0 + width: 1 color: 2157352326 priority: 350 } @@ -72104,8 +72848,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72121,8 +72865,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72138,8 +72882,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72155,8 +72899,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1.0 - dd: 80.0 + dd: 1 + dd: 80 } priority: 340 } @@ -72693,8 +73437,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72705,8 +73449,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72717,8 +73461,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72729,8 +73473,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72741,8 +73485,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72807,8 +73551,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72822,7 +73566,7 @@ cont { cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP @@ -72831,8 +73575,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72855,8 +73599,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72879,8 +73623,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72903,8 +73647,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72957,8 +73701,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72969,8 +73713,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72981,8 +73725,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -72993,8 +73737,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73005,8 +73749,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -73017,7 +73761,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73030,7 +73774,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73043,7 +73787,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73060,7 +73804,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73072,7 +73816,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73084,7 +73828,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73096,7 +73840,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73108,7 +73852,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73119,7 +73863,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73132,7 +73876,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73145,7 +73889,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 8487025 dashdot { dd: 1.8 @@ -73162,7 +73906,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73174,7 +73918,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73186,7 +73930,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73198,7 +73942,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73210,7 +73954,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7.0 + dd: 7 } priority: 160 } @@ -73231,7 +73975,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73240,7 +73984,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73249,7 +73993,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73258,7 +74002,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 } @@ -73266,7 +74010,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73274,7 +74018,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73282,7 +74026,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73290,7 +74034,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73311,7 +74055,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73320,7 +74064,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73329,7 +74073,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73338,7 +74082,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 } @@ -73346,7 +74090,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73354,7 +74098,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73362,7 +74106,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73370,7 +74114,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73391,7 +74135,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73400,7 +74144,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73409,7 +74153,7 @@ cont { element { scale: 15 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73418,7 +74162,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 1300332657 priority: 320 } @@ -73426,7 +74170,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73434,7 +74178,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73442,7 +74186,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73450,7 +74194,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 8487025 priority: 320 } @@ -73696,7 +74440,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -73731,7 +74475,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 6.3 @@ -73748,7 +74492,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73765,7 +74509,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73782,7 +74526,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73802,7 +74546,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 871230427 priority: 50 cap: BUTTCAP @@ -73823,7 +74567,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -73847,7 +74591,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 40 cap: BUTTCAP @@ -73876,7 +74620,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 40 cap: BUTTCAP @@ -73888,7 +74632,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 6.3 @@ -73911,13 +74655,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73940,13 +74684,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73969,13 +74713,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -73995,7 +74739,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74021,7 +74765,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74029,7 +74773,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74037,7 +74781,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74045,7 +74789,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74056,7 +74800,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74082,7 +74826,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74090,7 +74834,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74098,7 +74842,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74106,7 +74850,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74117,7 +74861,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74143,7 +74887,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74151,7 +74895,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74159,7 +74903,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74167,7 +74911,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74195,7 +74939,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74203,7 +74947,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74211,7 +74955,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74219,7 +74963,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74247,7 +74991,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74255,7 +74999,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74263,7 +75007,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74271,7 +75015,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74299,7 +75043,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74307,7 +75051,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74315,7 +75059,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74323,7 +75067,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 8487025 priority: 320 } @@ -74449,8 +75193,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74461,8 +75205,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74473,8 +75217,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74485,8 +75229,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74497,8 +75241,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74569,8 +75313,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74584,7 +75328,7 @@ cont { cap: BUTTCAP } lines { - width: 9.0 + width: 9 color: 871230427 priority: 150 cap: BUTTCAP @@ -74593,8 +75337,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74617,8 +75361,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74641,8 +75385,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74665,8 +75409,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74719,8 +75463,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74731,8 +75475,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74743,8 +75487,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74755,8 +75499,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74767,8 +75511,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8.0 - dd: 8.0 + dd: 8 + dd: 8 } priority: 160 } @@ -74779,7 +75523,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 210 join: BEVELJOIN @@ -74818,7 +75562,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 8487025 priority: 210 cap: BUTTCAP @@ -74872,7 +75616,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -74889,7 +75633,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -74906,7 +75650,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -74923,7 +75667,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -74934,7 +75678,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -74973,7 +75717,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -75027,7 +75771,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75044,7 +75788,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75061,7 +75805,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75078,7 +75822,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75089,7 +75833,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -75140,7 +75884,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -75174,7 +75918,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -75224,7 +75968,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75253,7 +75997,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75282,7 +76026,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75311,7 +76055,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75322,7 +76066,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -75361,17 +76105,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -75393,8 +76137,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -75421,8 +76165,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -75445,17 +76189,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75472,17 +76216,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75499,17 +76243,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75526,17 +76270,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75547,7 +76291,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 210 join: BEVELJOIN @@ -75598,7 +76342,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 210 cap: BUTTCAP @@ -75632,7 +76376,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -75682,7 +76426,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -75711,7 +76455,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -75740,7 +76484,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -75769,7 +76513,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -75810,7 +76554,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -75831,8 +76575,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -75850,8 +76594,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -75867,13 +76611,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75884,13 +76628,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75901,13 +76645,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75918,13 +76662,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -75971,7 +76715,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -75980,7 +76724,7 @@ cont { element { scale: 14 lines { - width: 7.0 + width: 7 color: 871230427 priority: 150 cap: BUTTCAP @@ -76004,8 +76748,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -76020,7 +76764,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -76035,8 +76779,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -76064,13 +76808,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76093,13 +76837,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76122,13 +76866,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76151,13 +76895,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76198,7 +76942,7 @@ cont { element { scale: 13 lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -76210,8 +76954,8 @@ cont { width: 4.3 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76229,8 +76973,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10.0 - dd: 10.0 + dd: 10 + dd: 10 } priority: 290 cap: BUTTCAP @@ -76239,8 +76983,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76258,8 +77002,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13.0 - dd: 13.0 + dd: 13 + dd: 13 } priority: 290 } @@ -76267,8 +77011,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76285,23 +77029,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76312,23 +77056,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76339,23 +77083,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76366,23 +77110,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16.0 - dd: 16.0 + dd: 16 + dd: 16 } priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76393,7 +77137,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -76432,7 +77176,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -76486,7 +77230,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76503,7 +77247,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76520,7 +77264,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76537,7 +77281,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76548,7 +77292,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -76599,7 +77343,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -76633,7 +77377,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -76683,7 +77427,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76712,7 +77456,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76741,7 +77485,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76770,7 +77514,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76781,7 +77525,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 280 join: BEVELJOIN @@ -76820,17 +77564,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 280 cap: BUTTCAP @@ -76852,8 +77596,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76880,8 +77624,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -76904,17 +77648,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76931,17 +77675,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76958,17 +77702,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -76985,17 +77729,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 280 } @@ -77041,7 +77785,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77058,7 +77802,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77075,7 +77819,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77092,7 +77836,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77118,7 +77862,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -77168,7 +77912,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77197,7 +77941,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77226,7 +77970,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77255,7 +77999,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77269,8 +78013,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77297,8 +78041,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77321,17 +78065,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77348,17 +78092,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77375,17 +78119,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77402,17 +78146,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77467,7 +78211,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77484,7 +78228,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77501,7 +78245,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77518,7 +78262,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77559,7 +78303,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -77609,7 +78353,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77638,7 +78382,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77667,7 +78411,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77696,7 +78440,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77710,8 +78454,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77729,8 +78473,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77757,8 +78501,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -77781,17 +78525,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77808,17 +78552,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77835,17 +78579,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77862,17 +78606,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -77883,7 +78627,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 10255717 priority: 280 join: BEVELJOIN @@ -77922,7 +78666,7 @@ cont { element { scale: 14 lines { - width: 2.0 + width: 2 color: 10255717 priority: 280 cap: BUTTCAP @@ -78000,7 +78744,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78025,7 +78769,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78050,7 +78794,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78075,7 +78819,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78094,7 +78838,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 10255717 priority: 280 join: BEVELJOIN @@ -78145,7 +78889,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 10255717 priority: 280 cap: BUTTCAP @@ -78195,7 +78939,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -78253,7 +78997,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78290,7 +79034,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78327,7 +79071,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78364,7 +79108,7 @@ cont { priority: 290 } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78383,7 +79127,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 10255717 priority: 280 join: BEVELJOIN @@ -78422,17 +79166,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 10255717 priority: 280 cap: BUTTCAP @@ -78462,8 +79206,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -78498,8 +79242,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP @@ -78530,17 +79274,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78565,17 +79309,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78600,17 +79344,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78635,17 +79379,17 @@ cont { priority: 290 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 279 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 10255717 priority: 280 } @@ -78664,7 +79408,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 8487025 priority: 210 join: BEVELJOIN @@ -78703,17 +79447,17 @@ cont { element { scale: 14 lines { - width: 4.0 + width: 4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 8487025 priority: 210 cap: BUTTCAP @@ -78735,8 +79479,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -78763,8 +79507,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -78787,17 +79531,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -78814,17 +79558,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -78841,17 +79585,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -78868,17 +79612,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 7763302 priority: 210 } @@ -78889,7 +79633,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 11710882 priority: 210 join: BEVELJOIN @@ -78952,7 +79696,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -78969,7 +79713,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -78986,7 +79730,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79003,7 +79747,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79014,7 +79758,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 11710882 priority: 210 join: BEVELJOIN @@ -79069,7 +79813,7 @@ cont { element { scale: 16 lines { - width: 8.0 + width: 8 color: 1300267136 priority: 140 cap: BUTTCAP @@ -79119,7 +79863,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79148,7 +79892,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79177,7 +79921,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79206,7 +79950,7 @@ cont { priority: 220 } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79217,7 +79961,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 11710882 priority: 210 join: BEVELJOIN @@ -79239,8 +79983,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79258,8 +80002,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79286,8 +80030,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP @@ -79310,17 +80054,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79337,17 +80081,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79364,17 +80108,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -79391,17 +80135,17 @@ cont { priority: 220 } lines { - width: 7.0 + width: 7 color: 1300267136 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: 209 cap: BUTTCAP } lines { - width: 5.0 + width: 5 color: 8487025 priority: 210 } @@ -100512,7 +101256,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -100547,7 +101291,7 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 6.3 @@ -100564,7 +101308,7 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -100581,7 +101325,7 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -100598,7 +101342,7 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -100618,7 +101362,7 @@ cont { element { scale: 13 lines { - width: 4.0 + width: 4 color: 871230427 priority: 150 cap: BUTTCAP @@ -100639,7 +101383,7 @@ cont { cap: BUTTCAP } lines { - width: 1.0 + width: 1 color: 1303556514 priority: 210 cap: BUTTCAP @@ -100663,7 +101407,7 @@ cont { element { scale: 16 lines { - width: 7.0 + width: 7 color: 1300267136 priority: 140 cap: BUTTCAP @@ -100692,7 +101436,7 @@ cont { element { scale: 17 lines { - width: 10.0 + width: 10 color: 1300267136 priority: 140 cap: BUTTCAP @@ -100704,7 +101448,7 @@ cont { cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 6.3 @@ -100727,13 +101471,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -100756,13 +101500,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -100785,13 +101529,13 @@ cont { cap: BUTTCAP } lines { - width: 11.0 + width: 11 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2.0 + width: 2 color: 16119285 dashdot { dd: 8.1 @@ -112889,7 +113633,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112897,7 +113641,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112905,7 +113649,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112913,7 +113657,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112959,7 +113703,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112967,7 +113711,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112975,7 +113719,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -112983,7 +113727,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -113029,7 +113773,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -113037,7 +113781,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -113045,7 +113789,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -113053,7 +113797,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 8026746 priority: 320 } @@ -113184,7 +113928,7 @@ cont { element { scale: 7 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113198,7 +113942,7 @@ cont { element { scale: 8 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113212,7 +113956,7 @@ cont { element { scale: 9 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113226,7 +113970,7 @@ cont { element { scale: 10 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113247,7 +113991,7 @@ cont { element { scale: 11 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113268,7 +114012,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113289,7 +114033,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113309,7 +114053,7 @@ cont { element { scale: 14 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113329,7 +114073,7 @@ cont { element { scale: 15 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113349,7 +114093,7 @@ cont { element { scale: 16 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113368,7 +114112,7 @@ cont { element { scale: 17 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113387,7 +114131,7 @@ cont { element { scale: 18 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113406,7 +114150,7 @@ cont { element { scale: 19 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -113425,7 +114169,7 @@ cont { element { scale: 20 lines { - width: 1.0 + width: 1 color: 1715771835 dashdot { dd: 5.4 @@ -128569,7 +129313,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2151067839 priority: -990 join: BEVELJOIN @@ -128726,7 +129470,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2160246963 priority: 30 cap: BUTTCAP @@ -128746,14 +129490,14 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2160246963 priority: 30 } area { color: 13224123 border { - width: 1.0 + width: 1 color: 10592406 } priority: 30 @@ -128776,7 +129520,7 @@ cont { area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -128792,14 +129536,14 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -128815,14 +129559,14 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -128838,14 +129582,14 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1.0 + width: 1 color: 10197647 } priority: 30 @@ -128903,7 +129647,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -128915,7 +129659,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -128927,7 +129671,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -128939,7 +129683,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -128951,7 +129695,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129148,7 +129892,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129160,7 +129904,7 @@ cont { element { scale: 17 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129172,7 +129916,7 @@ cont { element { scale: 18 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129184,7 +129928,7 @@ cont { element { scale: 19 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129196,7 +129940,7 @@ cont { element { scale: 20 lines { - width: 3.0 + width: 3 color: 10340289 dashdot { dd: 2.7 @@ -129393,7 +130137,7 @@ cont { element { scale: 11 lines { - width: 2.0 + width: 2 color: 1295429823 priority: -990 join: BEVELJOIN @@ -129411,7 +130155,7 @@ cont { element { scale: 12 lines { - width: 2.0 + width: 2 color: 1295429823 priority: -990 join: BEVELJOIN @@ -129563,7 +130307,7 @@ cont { element { scale: 12 lines { - width: 1.0 + width: 1 color: 2151067839 priority: -990 join: BEVELJOIN @@ -129707,7 +130451,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1295429823 dashdot { dd: 2.7 @@ -129749,11 +130493,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 cap: BUTTCAP @@ -129770,11 +130514,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129790,11 +130534,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129810,11 +130554,11 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129830,11 +130574,11 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129850,11 +130594,11 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129873,7 +130617,7 @@ cont { element { scale: 13 lines { - width: 1.0 + width: 1 color: 1295429823 dashdot { dd: 2.7 @@ -129915,11 +130659,11 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 cap: BUTTCAP @@ -129936,11 +130680,11 @@ cont { element { scale: 16 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129956,11 +130700,11 @@ cont { element { scale: 17 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129976,11 +130720,11 @@ cont { element { scale: 18 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -129996,11 +130740,11 @@ cont { element { scale: 19 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130016,11 +130760,11 @@ cont { element { scale: 20 lines { - width: 2.0 + width: 2 color: 3584191 dashdot { - dd: 5.0 - dd: 5.0 + dd: 5 + dd: 5 } priority: -990 } @@ -130221,7 +130965,7 @@ cont { element { scale: 15 lines { - width: 2.0 + width: 2 color: 2160246963 priority: 330 cap: BUTTCAP @@ -130237,7 +130981,7 @@ cont { element { scale: 16 lines { - width: 3.0 + width: 3 color: 2160246963 priority: 330 } @@ -130267,7 +131011,7 @@ cont { element { scale: 18 lines { - width: 6.0 + width: 6 color: 2160246963 priority: 330 } @@ -130282,7 +131026,7 @@ cont { element { scale: 19 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 330 } @@ -130297,7 +131041,7 @@ cont { element { scale: 20 lines { - width: 8.0 + width: 8 color: 2160246963 priority: 330 } diff --git a/data/drules_proto_vehicle_dark.bin b/data/drules_proto_vehicle_dark.bin index 948d509018b65b44289ebf0efc27a6636868b719..6dc4b1502bfb10ad15169340efb3075453b9e44a 100644 GIT binary patch delta 169 zcmdn>OyKNGferJ^6;rsRGBVRM$`dPflPi;RQbCNA%(S%3E) z$;5MsVyH|_EUrXSHasTag("mtb:scale:imba")) - { - test = 0; - } - string mtbscale = p->GetTag("mtb:scale"); string imbascale = p->GetTag("mtb:scale:imba"); string SmoothnessType = p->GetTag("smoothness"); -- 2.45.3 From c0ad06e6a352d91954b76d5957aa40758ba2e5f0 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Tue, 17 Dec 2024 11:54:51 +0100 Subject: [PATCH 04/19] ran generator tool, added debug commands --- base/file_name_utils.hpp | 1 - drape_frontend/rule_drawer.cpp | 21 +++++++++++++++++++++ generator/generator_tool/generator_tool.cpp | 18 +++++++++++------- 3 files changed, 32 insertions(+), 8 deletions(-) diff --git a/base/file_name_utils.hpp b/base/file_name_utils.hpp index 6d30b19a57..42a687b55f 100644 --- a/base/file_name_utils.hpp +++ b/base/file_name_utils.hpp @@ -55,7 +55,6 @@ std::string JoinPath(std::string const & folder, Args &&... args) template std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args) { - //ASSERT(!dir.empty(), ("JoinPath dir is empty: " + dir)); ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty" + fileOrDir)); return impl::JoinPath(dir, fileOrDir, std::forward(args)...); } diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index 2146dd0c18..e20f20b340 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -321,6 +321,27 @@ void RuleDrawer::ProcessLineStyle(FeatureType & f, Stylist const & s, TInsertSha ApplyLineFeatureGeometry applyGeom(m_context->GetTileKey(), insertShape, f, m_currentScaleGtoP); f.ForEachPoint(applyGeom, m_zoomLevel); + int a = 10; + if(f.DebugString().find("cycleway") != std::string::npos && f.DebugString().find("nocycleway") == std::string::npos) + { + if(f.DebugString().find("easy") != std::string::npos) + { + std::cout< Date: Tue, 17 Dec 2024 13:50:12 +0100 Subject: [PATCH 05/19] added test --- generator/generator_tests/osm_type_test.cpp | 32 +++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/generator/generator_tests/osm_type_test.cpp b/generator/generator_tests/osm_type_test.cpp index 55dfcee87c..3ea2b33085 100644 --- a/generator/generator_tests/osm_type_test.cpp +++ b/generator/generator_tests/osm_type_test.cpp @@ -3166,4 +3166,36 @@ UNIT_CLASS_TEST(TestWithClassificator, OsmType_MultipleComplexTypesSmoke) } } +UNIT_CLASS_TEST(TestWithClassificator, OsmType_Mtb_Rating) +{ + using Type = std::vector; + std::vector> const conversions = { + {{"highway", "cycleway", "easy"}, {{"highway", "cycleway"}, {"mtb:scale", "0"}, {"smoothness", "good"}}}, + {{"highway", "cycleway", "easy"}, {{"highway", "cycleway"}, {"mtb:scale", "S0"}}}, + {{"highway", "cycleway", "easy"}, {{"highway", "cycleway"}, {"mtb:scale:imba", "1"}}}, + {{"highway", "cycleway", "easy"}, {{"highway", "cycleway"}, {"smoothness", "bad"}}}, + + {{"highway", "cycleway", "intermediate"}, {{"highway", "cycleway"}, {"mtb:scale", "1"}, {"smoothness", "good"}}}, + {{"highway", "cycleway", "intermediate"}, {{"highway", "cycleway"}, {"mtb:scale", "S2"}}}, + {{"highway", "cycleway", "intermediate"}, {{"highway", "cycleway"}, {"mtb:scale:imba", "2"}}}, + {{"highway", "cycleway", "intermediate"}, {{"highway", "cycleway"}, {"smoothness", "horrible"}}}, + + {{"highway", "cycleway", "difficult"}, {{"highway", "cycleway"}, {"mtb:scale", "3"}, {"smoothness", "very_bad"}}}, + {{"highway", "cycleway", "difficult"}, {{"highway", "cycleway"}, {"mtb:scale", "S3"}}}, + {{"highway", "cycleway", "difficult"}, {{"highway", "cycleway"}, {"mtb:scale:imba", "3"}, {"smoothness", "bad"}}}, + {{"highway", "cycleway", "difficult"}, {{"highway", "cycleway"}, {"smoothness", "very_horrible"}}}, + + {{"highway", "cycleway", "expert"}, {{"highway", "cycleway"}, {"mtb:scale", "4"}, {"smoothness", "very_bad"}}}, + {{"highway", "cycleway", "expert"}, {{"highway", "cycleway"}, {"mtb:scale", "S5"}}}, + {{"highway", "cycleway", "expert"}, {{"highway", "cycleway"}, {"mtb:scale:imba", "4"}, {"smoothness", "bad"}}} + + }; + + for (auto const & type : conversions) + { + auto const params = GetFeatureBuilderParams(type.second); + TEST(params.IsTypeExist(GetType(type.first)), (type, params)); + } +} + } // namespace osm_type_test -- 2.45.3 From a977c4633947f989f75db47d851501937e3c2a2a Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Tue, 17 Dec 2024 14:53:07 +0100 Subject: [PATCH 06/19] regenerated the drules (had an error before...) --- data/drules_proto.bin | Bin 422800 -> 425199 bytes data/drules_proto.txt | 704 +++++ data/drules_proto_default_dark.txt | 3276 ++++++++++----------- data/drules_proto_default_light.txt | 3276 ++++++++++----------- data/drules_proto_outdoors_dark.txt | 4034 +++++++++++++------------- data/drules_proto_outdoors_light.txt | 4034 +++++++++++++------------- data/drules_proto_vehicle_dark.txt | 2498 ++++++++-------- data/drules_proto_vehicle_light.txt | 2498 ++++++++-------- generator/osm2type.cpp | 2 +- 9 files changed, 10513 insertions(+), 9809 deletions(-) diff --git a/data/drules_proto.bin b/data/drules_proto.bin index 774dbb8fd051b6b6946b92fc99c17f0f09036401..498098164f930908e0bf534fa3e4c13fdfbd9201 100644 GIT binary patch delta 1524 zcmbR6T=M--$%ZYAKHA3DSh%DzGSf546DxI-E0c3lL5!5lw6x6R(wq_@9S&|G4bHP? zK;VtN!2gvuXK_!fVic7;#bm(awS(&N{ZNV2neY`UG)VlyNL}ftE|cZv(yaR|c=|ASqD2yO+2o#I>Yn*Q&Tb%OHxO(3#r+q-BX(ph?#(x8Hibcn033SHk-Q#0JR)M+5i9m delta 37 ncmaF=Q*y#{$%ZYAKHBZ8O&Ecg35c12m<5Pgx34x~bMXKGF-#6~ diff --git a/data/drules_proto.txt b/data/drules_proto.txt index e2940133e3..edbf48e1ee 100644 --- a/data/drules_proto.txt +++ b/data/drules_proto.txt @@ -23132,6 +23132,710 @@ cont { } } } +cont { + name: "highway-cycleway-difficult" + element { + scale: 11 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-easy" + element { + scale: 11 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-expert" + element { + scale: 11 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 2.2 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} +cont { + name: "highway-cycleway-intermediate" + element { + scale: 11 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 12 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 13 + lines { + width: 0.9 + color: 3008779519 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 14 + lines { + width: 1.1 + color: 2572571903 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + } + element { + scale: 15 + lines { + width: 1.2 + color: 2153141503 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + cap: BUTTCAP + } + path_text { + primary { + height: 8 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 16 + lines { + width: 1.3 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 17 + lines { + width: 1.4 + color: 1716933887 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 9 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 18 + lines { + width: 1.6 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 19 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } + element { + scale: 20 + lines { + width: 1.8 + color: 861295871 + dashdot { + dd: 5.0 + dd: 2.2 + } + priority: 330 + } + path_text { + primary { + height: 10 + color: 3355443 + stroke_color: 872415231 + } + priority: 2953 + } + } +} cont { name: "highway-cycleway-tunnel" element { diff --git a/data/drules_proto_default_dark.txt b/data/drules_proto_default_dark.txt index 1e35d90f04..4d70ed21ef 100644 --- a/data/drules_proto_default_dark.txt +++ b/data/drules_proto_default_dark.txt @@ -7,7 +7,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2571847235 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -14731,7 +14731,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296187970 priority: 320 cap: BUTTCAP @@ -14752,10 +14752,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 320 } @@ -14766,10 +14766,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 320 } @@ -14780,10 +14780,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 320 } @@ -14791,13 +14791,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -14805,13 +14805,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15051,7 +15051,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2151957572 priority: 320 } @@ -15193,7 +15193,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1293431320 priority: 320 } @@ -15201,7 +15201,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 857223704 priority: 320 } @@ -15209,7 +15209,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 857223704 priority: 320 } @@ -15397,7 +15397,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 100 } @@ -15408,9 +15408,9 @@ cont { width: 3.2 color: 1296319556 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 100 @@ -15422,9 +15422,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15436,9 +15436,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15450,9 +15450,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15847,7 +15847,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2151957572 priority: 320 } @@ -16048,7 +16048,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1297438037 priority: 90 join: BEVELJOIN @@ -16251,7 +16251,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1298556518 dashdot { dd: 1.8 @@ -17423,7 +17423,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -17446,7 +17446,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17469,7 +17469,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17492,7 +17492,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17515,7 +17515,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17633,7 +17633,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -17656,7 +17656,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17679,7 +17679,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17702,7 +17702,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17725,7 +17725,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17765,7 +17765,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -17788,7 +17788,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17811,7 +17811,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17834,7 +17834,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17857,7 +17857,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17897,7 +17897,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -17920,7 +17920,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17943,7 +17943,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17966,7 +17966,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -17989,7 +17989,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18015,7 +18015,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 110 @@ -18026,7 +18026,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18037,7 +18037,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18048,7 +18048,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18059,7 +18059,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -20571,7 +20571,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1714104359 dashdot { dd: 4.5 @@ -20591,7 +20591,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1714104359 dashdot { dd: 7.2 @@ -20611,10 +20611,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20631,10 +20631,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20720,19 +20720,19 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1714104359 dashdot { dd: 4.5 @@ -20752,19 +20752,19 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1714104359 dashdot { dd: 7.2 @@ -20784,22 +20784,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20816,22 +20816,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20905,7 +20905,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1714104359 dashdot { dd: 4.5 @@ -20914,17 +20914,17 @@ cont { priority: 180 } lines { - width: 5 + width: 5.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -20941,7 +20941,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1714104359 dashdot { dd: 7.2 @@ -20950,17 +20950,17 @@ cont { priority: 180 } lines { - width: 7 + width: 7.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -20977,26 +20977,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21013,26 +21013,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1714104359 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21183,7 +21183,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -21199,7 +21199,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -21215,7 +21215,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21231,7 +21231,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21275,7 +21275,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -21291,7 +21291,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -21307,7 +21307,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21323,7 +21323,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21367,7 +21367,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -21383,7 +21383,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -21399,7 +21399,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21415,7 +21415,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21460,7 +21460,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1295200045 dashdot { dd: 7.2 @@ -21484,7 +21484,7 @@ cont { width: 2.6 color: 1295200045 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 160 @@ -21501,7 +21501,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1295200045 dashdot { dd: 10.8 @@ -21521,7 +21521,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1295200045 dashdot { dd: 13.5 @@ -21541,10 +21541,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 1295200045 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -21561,10 +21561,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 1295200045 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -21883,7 +21883,7 @@ cont { width: 0.9 color: 3010346311 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21896,7 +21896,7 @@ cont { width: 1.1 color: 2574138695 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21909,7 +21909,7 @@ cont { width: 1.2 color: 2154708295 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21930,7 +21930,7 @@ cont { width: 1.3 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21950,7 +21950,7 @@ cont { width: 1.4 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21970,7 +21970,7 @@ cont { width: 1.6 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21990,7 +21990,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22010,7 +22010,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22033,7 +22033,7 @@ cont { width: 0.9 color: 3010346311 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22046,7 +22046,7 @@ cont { width: 1.1 color: 2574138695 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22059,7 +22059,7 @@ cont { width: 1.2 color: 2154708295 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22080,7 +22080,7 @@ cont { width: 1.3 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22100,7 +22100,7 @@ cont { width: 1.4 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22120,7 +22120,7 @@ cont { width: 1.6 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22140,7 +22140,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22160,7 +22160,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22333,7 +22333,7 @@ cont { width: 0.9 color: 3010346311 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22346,7 +22346,7 @@ cont { width: 1.1 color: 2574138695 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22359,7 +22359,7 @@ cont { width: 1.2 color: 2154708295 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22380,7 +22380,7 @@ cont { width: 1.3 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22400,7 +22400,7 @@ cont { width: 1.4 color: 1718500679 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22420,7 +22420,7 @@ cont { width: 1.6 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22440,7 +22440,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22460,7 +22460,7 @@ cont { width: 1.8 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22545,8 +22545,8 @@ cont { width: 5.8 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22577,8 +22577,8 @@ cont { width: 8.2 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22609,8 +22609,8 @@ cont { width: 9.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22641,8 +22641,8 @@ cont { width: 9.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22696,8 +22696,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -22714,11 +22714,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 } @@ -22737,7 +22737,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -22757,8 +22757,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 180 } @@ -22777,7 +22777,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22797,7 +22797,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22827,8 +22827,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -22849,11 +22849,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 } @@ -22876,7 +22876,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -22900,8 +22900,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 180 } @@ -22924,7 +22924,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22948,7 +22948,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22981,8 +22981,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5 - dd: 3 + dd: 5.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -23004,11 +23004,11 @@ cont { priority: 170 } lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 3 + dd: 5.0 + dd: 3.0 } priority: 180 } @@ -23032,7 +23032,7 @@ cont { width: 2.4 color: 441140803 dashdot { - dd: 6 + dd: 6.0 dd: 4.2 } priority: 180 @@ -23057,7 +23057,7 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 5.5 } priority: 180 @@ -23082,7 +23082,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 6.7 } priority: 180 @@ -23107,7 +23107,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 6.7 } priority: 180 @@ -23127,7 +23127,7 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -23136,8 +23136,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -23154,17 +23154,17 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23195,7 +23195,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23227,8 +23227,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23259,7 +23259,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23291,7 +23291,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23311,11 +23311,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 330 } @@ -23326,7 +23326,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 330 @@ -23338,8 +23338,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 330 } @@ -23350,7 +23350,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 330 @@ -23362,7 +23362,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 330 @@ -23374,11 +23374,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23389,7 +23389,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23401,8 +23401,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23413,7 +23413,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23425,7 +23425,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23440,8 +23440,8 @@ cont { width: 1.5 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -23458,11 +23458,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1078675011 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23481,7 +23481,7 @@ cont { width: 2.4 color: 1078675011 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23496,8 +23496,8 @@ cont { width: 6.8 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23517,8 +23517,8 @@ cont { width: 3.2 color: 4933187 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23532,8 +23532,8 @@ cont { width: 8.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23553,7 +23553,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23568,8 +23568,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23589,7 +23589,7 @@ cont { width: 4.2 color: 4933187 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23604,8 +23604,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23625,11 +23625,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -23651,10 +23651,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -23688,11 +23688,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -23712,11 +23712,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -23736,7 +23736,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -23760,7 +23760,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -23797,7 +23797,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -23933,7 +23933,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -24069,7 +24069,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -24115,8 +24115,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24141,8 +24141,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24167,8 +24167,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24193,8 +24193,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24219,8 +24219,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24432,7 +24432,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -24478,7 +24478,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -24671,7 +24671,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -24779,13 +24779,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -24814,7 +24814,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -24843,19 +24843,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -24878,13 +24878,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -24913,13 +24913,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -25044,8 +25044,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -25079,8 +25079,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -25113,8 +25113,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -25147,8 +25147,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25178,17 +25178,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1295523604 priority: 310 } @@ -25214,8 +25214,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25244,17 +25244,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 1295523604 priority: 310 } @@ -25280,8 +25280,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25313,8 +25313,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25434,7 +25434,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -25556,7 +25556,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -25699,7 +25699,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -25773,7 +25773,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -25809,7 +25809,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -25851,13 +25851,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -26048,7 +26048,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -26101,8 +26101,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -26135,8 +26135,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -26169,8 +26169,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26200,17 +26200,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1295523604 priority: 228 } @@ -26236,8 +26236,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26269,8 +26269,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26302,8 +26302,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26335,8 +26335,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26372,7 +26372,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26385,7 +26385,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26405,7 +26405,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -26422,10 +26422,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -26445,7 +26445,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -26465,7 +26465,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -26485,7 +26485,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -26559,7 +26559,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 3.2 } priority: 180 @@ -26581,10 +26581,10 @@ cont { priority: 170 } lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 3.2 } priority: 180 @@ -26609,7 +26609,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 4.7 } priority: 180 @@ -26634,7 +26634,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 6.2 } priority: 180 @@ -26659,7 +26659,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 6.2 } priority: 180 @@ -26683,7 +26683,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -26702,7 +26702,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -26719,7 +26719,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -26728,7 +26728,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -26745,22 +26745,22 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -26792,7 +26792,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -26824,7 +26824,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -26856,7 +26856,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -26879,8 +26879,8 @@ cont { width: 0.9 color: 1720994322 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26892,8 +26892,8 @@ cont { width: 1.1 color: 1720994322 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26930,7 +26930,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { dd: 1.8 @@ -27016,8 +27016,8 @@ cont { width: 0.9 color: 1716665907 dashdot { - dd: 1 - dd: 4 + dd: 1.0 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -27029,8 +27029,8 @@ cont { width: 1.1 color: 1716665907 dashdot { - dd: 1 - dd: 4 + dd: 1.0 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -27051,7 +27051,7 @@ cont { color: 1716665907 dashdot { dd: 1.6 - dd: 6 + dd: 6.0 } priority: 180 } @@ -27067,11 +27067,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1716665907 dashdot { dd: 1.6 - dd: 6 + dd: 6.0 } priority: 180 } @@ -27091,7 +27091,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27111,7 +27111,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27131,7 +27131,7 @@ cont { color: 861027891 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27154,7 +27154,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27167,7 +27167,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27187,7 +27187,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27204,10 +27204,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27227,7 +27227,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -27247,7 +27247,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27267,7 +27267,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27291,7 +27291,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27304,7 +27304,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27324,7 +27324,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27341,26 +27341,26 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 } lines { - width: 5 + width: 5.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27380,7 +27380,7 @@ cont { width: 2.8 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -27395,8 +27395,8 @@ cont { width: 7.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27416,7 +27416,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27431,8 +27431,8 @@ cont { width: 9.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27452,7 +27452,7 @@ cont { width: 3.7 color: 865356306 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27467,8 +27467,8 @@ cont { width: 9.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27488,11 +27488,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27522,10 +27522,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27563,11 +27563,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27583,11 +27583,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -27603,7 +27603,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -27623,7 +27623,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -27646,11 +27646,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27684,10 +27684,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27733,11 +27733,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27757,11 +27757,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -27781,7 +27781,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -27805,7 +27805,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -27838,11 +27838,11 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27890,16 +27890,16 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27917,7 +27917,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -27961,11 +27961,11 @@ cont { cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27993,11 +27993,11 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -28025,7 +28025,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -28057,7 +28057,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -28080,11 +28080,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -28114,10 +28114,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -28138,8 +28138,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP @@ -28165,21 +28165,21 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -28195,21 +28195,21 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1294673959 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -28225,17 +28225,17 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 dashdot { dd: 16.2 @@ -28255,17 +28255,17 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 dashdot { dd: 16.2 @@ -28455,7 +28455,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 290 } @@ -28770,13 +28770,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 290 } @@ -29064,8 +29064,8 @@ cont { width: 4.8 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 289 cap: BUTTCAP @@ -29098,8 +29098,8 @@ cont { width: 5.8 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29129,17 +29129,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1296837147 priority: 290 } @@ -29165,8 +29165,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29198,8 +29198,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29231,8 +29231,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29264,8 +29264,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29322,7 +29322,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 226 join: BEVELJOIN @@ -29562,7 +29562,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 226 join: BEVELJOIN @@ -29653,7 +29653,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -29724,7 +29724,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -29886,7 +29886,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 226 join: BEVELJOIN @@ -29938,8 +29938,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 225 cap: BUTTCAP @@ -29972,8 +29972,8 @@ cont { width: 4.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30006,8 +30006,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30039,8 +30039,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30072,8 +30072,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30105,8 +30105,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30138,8 +30138,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30171,7 +30171,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1298092845 priority: 180 cap: BUTTCAP @@ -30205,7 +30205,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 861885229 priority: 180 } @@ -30221,7 +30221,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 861885229 priority: 180 } @@ -30237,7 +30237,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 861885229 priority: 180 } @@ -30253,7 +30253,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 861885229 priority: 180 } @@ -30282,7 +30282,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30468,7 +30468,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30654,7 +30654,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30671,7 +30671,7 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -30777,7 +30777,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -30924,7 +30924,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -30985,8 +30985,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31018,8 +31018,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31051,8 +31051,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31084,8 +31084,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31117,8 +31117,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31260,7 +31260,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -31396,7 +31396,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -31592,7 +31592,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1296778819 priority: 230 cap: BUTTCAP @@ -31851,7 +31851,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5717555 priority: 270 } @@ -32132,13 +32132,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5717555 priority: 270 } @@ -32437,17 +32437,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1297563187 priority: 270 } @@ -32473,8 +32473,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32506,8 +32506,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32539,8 +32539,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32572,8 +32572,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32751,7 +32751,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -32800,7 +32800,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -32939,8 +32939,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32965,8 +32965,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32991,8 +32991,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -33017,8 +33017,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -33043,8 +33043,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -33094,7 +33094,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33110,7 +33110,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33126,7 +33126,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33142,7 +33142,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33186,7 +33186,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33202,7 +33202,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33218,7 +33218,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33234,7 +33234,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33296,13 +33296,13 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33324,13 +33324,13 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33352,13 +33352,13 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33380,13 +33380,13 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33421,7 +33421,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33437,7 +33437,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33453,7 +33453,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33469,7 +33469,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33513,7 +33513,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33529,7 +33529,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33545,7 +33545,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33561,7 +33561,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33605,7 +33605,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -33621,7 +33621,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -33637,7 +33637,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33653,7 +33653,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -33802,7 +33802,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 659244611 dashdot { dd: 1.8 @@ -33822,7 +33822,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -33842,7 +33842,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -33862,10 +33862,10 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33882,10 +33882,10 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33924,13 +33924,13 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 659244611 dashdot { dd: 1.8 @@ -33950,19 +33950,19 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -33982,19 +33982,19 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -34014,22 +34014,22 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -34046,22 +34046,22 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -34094,7 +34094,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 659244611 dashdot { dd: 1.8 @@ -34114,7 +34114,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -34123,17 +34123,17 @@ cont { priority: 330 } lines { - width: 7 + width: 7.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34150,7 +34150,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -34159,17 +34159,17 @@ cont { priority: 330 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34186,26 +34186,26 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34222,26 +34222,26 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34361,7 +34361,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -34609,13 +34609,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -34881,17 +34881,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 priority: 250 } @@ -34917,8 +34917,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34950,8 +34950,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34983,8 +34983,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -35016,8 +35016,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -35161,7 +35161,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -35202,7 +35202,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -35324,8 +35324,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35342,8 +35342,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35360,8 +35360,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35386,8 +35386,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35412,8 +35412,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35441,7 +35441,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35454,7 +35454,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35475,8 +35475,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35495,8 +35495,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35515,7 +35515,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35535,7 +35535,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35555,7 +35555,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35578,7 +35578,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35591,7 +35591,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35612,8 +35612,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35632,8 +35632,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35652,7 +35652,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35672,7 +35672,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35692,7 +35692,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35715,7 +35715,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35734,7 +35734,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35761,8 +35761,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35778,13 +35778,13 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -35793,8 +35793,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35825,7 +35825,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35857,7 +35857,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35889,7 +35889,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35912,7 +35912,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35925,7 +35925,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35946,8 +35946,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35966,8 +35966,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35986,7 +35986,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -36006,7 +36006,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -36026,7 +36026,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -36049,7 +36049,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -36062,7 +36062,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -36083,8 +36083,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -36103,23 +36103,23 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } lines { - width: 6 + width: 6.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36139,7 +36139,7 @@ cont { width: 3.3 color: 861885229 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -36154,8 +36154,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36175,7 +36175,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -36190,8 +36190,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36211,7 +36211,7 @@ cont { width: 4.2 color: 861885229 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -36226,8 +36226,8 @@ cont { width: 10.4 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36434,7 +36434,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -36480,7 +36480,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -36673,7 +36673,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -36781,13 +36781,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -36816,7 +36816,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -36845,19 +36845,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -36880,13 +36880,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -36915,13 +36915,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -37046,8 +37046,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -37081,8 +37081,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -37115,8 +37115,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -37149,8 +37149,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37180,17 +37180,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1295523604 priority: 310 } @@ -37216,8 +37216,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37246,17 +37246,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 1295523604 priority: 310 } @@ -37282,8 +37282,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37315,8 +37315,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37373,7 +37373,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -37495,7 +37495,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -37638,7 +37638,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -37712,7 +37712,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -37748,7 +37748,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -37790,13 +37790,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -37987,7 +37987,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297691427 priority: 228 join: BEVELJOIN @@ -38040,8 +38040,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -38074,8 +38074,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -38108,8 +38108,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38139,17 +38139,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1295523604 priority: 228 } @@ -38175,8 +38175,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38208,8 +38208,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38241,8 +38241,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38274,8 +38274,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38378,7 +38378,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -38532,7 +38532,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -38716,13 +38716,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -38924,17 +38924,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 priority: 250 } @@ -38953,8 +38953,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -38979,8 +38979,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -39005,8 +39005,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -39031,8 +39031,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41408,7 +41408,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296187970 priority: 360 cap: BUTTCAP @@ -41429,10 +41429,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 360 } @@ -41443,10 +41443,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 360 } @@ -41457,10 +41457,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 360 } @@ -41468,13 +41468,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -41482,13 +41482,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -43396,8 +43396,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -43407,8 +43407,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -43418,8 +43418,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -43429,8 +43429,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43440,8 +43440,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43451,8 +43451,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43593,7 +43593,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43608,7 +43608,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43623,7 +43623,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43638,7 +43638,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43653,7 +43653,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43688,7 +43688,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 join: BEVELJOIN @@ -43705,7 +43705,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43879,7 +43879,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43894,7 +43894,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43909,7 +43909,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43970,7 +43970,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43986,7 +43986,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -52261,7 +52261,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 858401316 priority: 160 } @@ -52278,7 +52278,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 858401316 priority: 160 } @@ -52295,7 +52295,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 858401316 priority: 160 } @@ -52312,7 +52312,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 858401316 priority: 160 } @@ -52533,7 +52533,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1291845632 priority: 30 cap: BUTTCAP @@ -52545,7 +52545,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291845632 priority: 30 } @@ -52574,7 +52574,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 priority: 30 } @@ -52592,7 +52592,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -52610,7 +52610,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -52783,7 +52783,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2567902208 priority: 80 cap: BUTTCAP @@ -52801,7 +52801,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2567902208 priority: 80 } @@ -52809,7 +52809,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2567902208 priority: 80 } @@ -52825,7 +52825,7 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 2567902208 priority: 80 } @@ -52833,7 +52833,7 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 2567902208 priority: 80 } @@ -52847,9 +52847,9 @@ cont { width: 3.5 color: 1296187970 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 100 @@ -52858,13 +52858,13 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1296187970 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 100 } @@ -52872,13 +52872,13 @@ cont { element { scale: 18 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -52886,13 +52886,13 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -52900,13 +52900,13 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -53140,7 +53140,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1291845632 priority: 30 cap: BUTTCAP @@ -53152,7 +53152,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291845632 priority: 30 } @@ -53181,7 +53181,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 priority: 30 } @@ -53199,7 +53199,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -53217,7 +53217,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -54770,7 +54770,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2575126307 dashdot { dd: 1.4 @@ -54783,7 +54783,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 2575126307 dashdot { dd: 1.5 @@ -54799,7 +54799,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -54814,8 +54814,8 @@ cont { color: 2575126307 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -54827,9 +54827,9 @@ cont { width: 9.5 color: 2155695907 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -54841,9 +54841,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -54855,9 +54855,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -55204,7 +55204,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2575126307 dashdot { dd: 1.4 @@ -55217,7 +55217,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 2575126307 dashdot { dd: 1.5 @@ -55233,7 +55233,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -55248,8 +55248,8 @@ cont { color: 2575126307 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -55261,9 +55261,9 @@ cont { width: 9.5 color: 2155695907 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -55275,9 +55275,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -55289,9 +55289,9 @@ cont { width: 11.9 color: 2155695907 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -56699,7 +56699,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 cap: BUTTCAP @@ -61310,7 +61310,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2573352319 priority: 120 cap: BUTTCAP @@ -61419,7 +61419,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2569151010 priority: 120 cap: BUTTCAP @@ -61528,7 +61528,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2567645179 priority: 120 cap: BUTTCAP @@ -61637,7 +61637,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2570269491 priority: 120 cap: BUTTCAP @@ -61746,7 +61746,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2582553856 priority: 120 cap: BUTTCAP @@ -61855,7 +61855,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2583432731 priority: 120 cap: BUTTCAP @@ -61964,7 +61964,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2573200174 priority: 120 cap: BUTTCAP @@ -62077,7 +62077,7 @@ cont { color: 2573352319 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 cap: BUTTCAP @@ -62090,7 +62090,7 @@ cont { color: 2573352319 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 cap: BUTTCAP @@ -62110,7 +62110,7 @@ cont { width: 1.5 color: 2573352319 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62127,10 +62127,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 2573352319 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62147,10 +62147,10 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 2573352319 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62167,10 +62167,10 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 2573352319 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62187,10 +62187,10 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 2573352319 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62428,7 +62428,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2573352319 priority: 120 cap: BUTTCAP @@ -68750,16 +68750,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 2150839091 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2570269491 priority: 350 } @@ -68767,16 +68767,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 2150839091 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2570269491 priority: 350 } @@ -69328,7 +69328,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -69352,7 +69352,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -69376,7 +69376,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -69466,7 +69466,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69479,7 +69479,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69491,7 +69491,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69503,7 +69503,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69515,7 +69515,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69527,7 +69527,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69542,7 +69542,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69554,7 +69554,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69566,7 +69566,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69578,7 +69578,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69590,7 +69590,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1296316234 dashdot { dd: 1.8 @@ -69615,7 +69615,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69624,7 +69624,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69633,7 +69633,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69642,7 +69642,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -69650,7 +69650,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69658,7 +69658,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69666,7 +69666,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69674,7 +69674,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69695,7 +69695,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69704,7 +69704,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69713,7 +69713,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69722,7 +69722,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -69730,7 +69730,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69738,7 +69738,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69746,7 +69746,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69754,7 +69754,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69775,7 +69775,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69784,7 +69784,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69793,7 +69793,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -69802,7 +69802,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -69810,7 +69810,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69818,7 +69818,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69826,7 +69826,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -69834,7 +69834,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -70080,7 +70080,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -70115,7 +70115,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -70132,7 +70132,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70149,7 +70149,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70166,7 +70166,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70186,7 +70186,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 858532890 priority: 50 cap: BUTTCAP @@ -70207,7 +70207,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -70231,7 +70231,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 40 cap: BUTTCAP @@ -70260,7 +70260,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 40 cap: BUTTCAP @@ -70272,7 +70272,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -70295,13 +70295,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70324,13 +70324,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70353,13 +70353,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -70379,7 +70379,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -70405,7 +70405,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70413,7 +70413,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70421,7 +70421,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70429,7 +70429,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70440,7 +70440,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -70466,7 +70466,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70474,7 +70474,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70482,7 +70482,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70490,7 +70490,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70501,7 +70501,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -70527,7 +70527,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70535,7 +70535,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70543,7 +70543,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70551,7 +70551,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70579,7 +70579,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70587,7 +70587,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70595,7 +70595,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70603,7 +70603,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70631,7 +70631,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70639,7 +70639,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70647,7 +70647,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70655,7 +70655,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70683,7 +70683,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70691,7 +70691,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70699,7 +70699,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70707,7 +70707,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -70934,7 +70934,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -70958,7 +70958,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -70982,7 +70982,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71114,7 +71114,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -71149,7 +71149,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -71158,7 +71158,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71166,7 +71166,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71175,7 +71175,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71183,7 +71183,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71192,7 +71192,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71200,7 +71200,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71209,7 +71209,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71220,7 +71220,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -71301,7 +71301,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71318,7 +71318,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71335,7 +71335,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71355,7 +71355,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -71390,7 +71390,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -71426,7 +71426,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -71484,13 +71484,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71513,13 +71513,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71542,13 +71542,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71568,7 +71568,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -71600,8 +71600,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71619,8 +71619,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71647,8 +71647,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71674,8 +71674,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71689,7 +71689,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71701,8 +71701,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71716,7 +71716,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71728,8 +71728,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71743,7 +71743,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71755,8 +71755,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71793,7 +71793,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -71814,7 +71814,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -71838,7 +71838,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71867,7 +71867,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -71879,7 +71879,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -71888,7 +71888,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71902,13 +71902,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71917,7 +71917,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71931,13 +71931,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71946,7 +71946,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -71960,13 +71960,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -71975,7 +71975,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -72034,7 +72034,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 280 cap: BUTTCAP @@ -72046,8 +72046,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -72063,8 +72063,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -72080,8 +72080,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72097,8 +72097,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72114,8 +72114,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72176,7 +72176,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -72197,7 +72197,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1296316234 priority: 280 cap: BUTTCAP @@ -72221,8 +72221,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -72235,7 +72235,7 @@ cont { element { scale: 17 lines { - width: 9 + width: 9.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -72250,8 +72250,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -72279,8 +72279,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72308,8 +72308,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72337,8 +72337,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72396,8 +72396,8 @@ cont { width: 3.8 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72412,17 +72412,17 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1296316234 priority: 280 cap: BUTTCAP @@ -72434,8 +72434,8 @@ cont { width: 1.1 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -72443,8 +72443,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72461,8 +72461,8 @@ cont { width: 1.5 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -72470,8 +72470,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72488,8 +72488,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72497,8 +72497,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72515,8 +72515,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72524,8 +72524,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72542,8 +72542,8 @@ cont { width: 1.7 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72551,8 +72551,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72569,7 +72569,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72579,7 +72579,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72660,7 +72660,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72677,7 +72677,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72694,7 +72694,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72714,7 +72714,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72724,7 +72724,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72759,7 +72759,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -72795,7 +72795,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -72853,13 +72853,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72882,13 +72882,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72911,13 +72911,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -72937,7 +72937,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72947,7 +72947,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296316234 priority: 280 join: BEVELJOIN @@ -72979,8 +72979,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72998,8 +72998,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73026,8 +73026,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73053,8 +73053,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73068,7 +73068,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -73080,8 +73080,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73095,7 +73095,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -73107,8 +73107,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73122,7 +73122,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -73134,8 +73134,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -73177,7 +73177,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73194,7 +73194,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73211,7 +73211,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73231,7 +73231,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -73286,13 +73286,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73315,13 +73315,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73344,13 +73344,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73373,8 +73373,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73400,8 +73400,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73415,7 +73415,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73427,8 +73427,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73442,7 +73442,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73454,8 +73454,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73469,7 +73469,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73481,8 +73481,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73533,7 +73533,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73550,7 +73550,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73567,7 +73567,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73602,7 +73602,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -73657,13 +73657,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73686,13 +73686,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73715,13 +73715,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73744,8 +73744,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73763,8 +73763,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73790,8 +73790,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73805,7 +73805,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73817,8 +73817,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73832,7 +73832,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73844,8 +73844,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73859,7 +73859,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -73871,8 +73871,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73889,7 +73889,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -73899,7 +73899,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -74012,7 +74012,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74037,7 +74037,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74062,7 +74062,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74090,7 +74090,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -74100,7 +74100,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -74135,7 +74135,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -74187,7 +74187,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -74261,13 +74261,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74298,13 +74298,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74335,13 +74335,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74369,7 +74369,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -74379,7 +74379,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1296381741 priority: 280 join: BEVELJOIN @@ -74411,8 +74411,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74438,8 +74438,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74474,8 +74474,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74509,8 +74509,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74532,7 +74532,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74544,8 +74544,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74567,7 +74567,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74579,8 +74579,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74602,7 +74602,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74614,8 +74614,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74669,17 +74669,17 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74691,8 +74691,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74719,8 +74719,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74734,7 +74734,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -74743,17 +74743,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -74761,7 +74761,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74770,17 +74770,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -74788,7 +74788,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74797,17 +74797,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -74815,7 +74815,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74824,17 +74824,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 3682365 priority: 210 } @@ -74845,7 +74845,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74897,7 +74897,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -74914,7 +74914,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -74931,7 +74931,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -74957,7 +74957,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74996,7 +74996,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -75051,13 +75051,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75080,13 +75080,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75109,13 +75109,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75135,7 +75135,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -75147,8 +75147,8 @@ cont { width: 3.1 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75166,8 +75166,8 @@ cont { width: 3.2 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75185,8 +75185,8 @@ cont { width: 3.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75212,8 +75212,8 @@ cont { width: 4.9 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75227,7 +75227,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75239,8 +75239,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75254,7 +75254,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75266,8 +75266,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75281,7 +75281,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1643545 dashdot { dd: 8.1 @@ -75293,8 +75293,8 @@ cont { width: 5.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -96411,7 +96411,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -96446,7 +96446,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -96463,7 +96463,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -96480,7 +96480,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -96497,7 +96497,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -96517,7 +96517,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -96538,7 +96538,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -96562,7 +96562,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -96591,7 +96591,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -96603,7 +96603,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -96626,13 +96626,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -96655,13 +96655,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -96684,13 +96684,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -108788,7 +108788,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108796,7 +108796,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108804,7 +108804,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108812,7 +108812,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108858,7 +108858,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108866,7 +108866,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108874,7 +108874,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108882,7 +108882,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108928,7 +108928,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108936,7 +108936,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108944,7 +108944,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -108952,7 +108952,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -109083,7 +109083,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109097,7 +109097,7 @@ cont { element { scale: 8 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109111,7 +109111,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109125,7 +109125,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109146,7 +109146,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109167,7 +109167,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109188,7 +109188,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109208,7 +109208,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109228,7 +109228,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109248,7 +109248,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109267,7 +109267,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109286,7 +109286,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109305,7 +109305,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -109324,7 +109324,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -124088,7 +124088,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 cap: BUTTCAP @@ -124211,7 +124211,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2151825986 priority: 30 cap: BUTTCAP @@ -124231,14 +124231,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2151825986 priority: 30 } area { color: 3881787 border { - width: 1 + width: 1.0 color: 6381921 } priority: 30 @@ -124261,7 +124261,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -124277,14 +124277,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -124300,14 +124300,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -124323,14 +124323,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -124388,7 +124388,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124400,7 +124400,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124412,7 +124412,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124424,7 +124424,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124436,7 +124436,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124633,7 +124633,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124645,7 +124645,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124657,7 +124657,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124669,7 +124669,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124681,7 +124681,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 1291855390 dashdot { dd: 2.7 @@ -124712,7 +124712,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 cap: BUTTCAP @@ -124860,7 +124860,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 join: BEVELJOIN @@ -125046,7 +125046,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 cap: BUTTCAP @@ -125172,7 +125172,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 priority: -990 cap: BUTTCAP @@ -125302,7 +125302,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1292247078 dashdot { dd: 2.7 @@ -125571,7 +125571,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2151825986 priority: 330 cap: BUTTCAP @@ -125587,7 +125587,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2151825986 priority: 330 } @@ -125617,7 +125617,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2151825986 priority: 330 } @@ -125632,7 +125632,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 330 } @@ -125647,7 +125647,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 330 } diff --git a/data/drules_proto_default_light.txt b/data/drules_proto_default_light.txt index a7d097dbb8..e289c6aef5 100644 --- a/data/drules_proto_default_light.txt +++ b/data/drules_proto_default_light.txt @@ -7,7 +7,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2583230712 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -14731,7 +14731,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1304608947 priority: 320 cap: BUTTCAP @@ -14752,10 +14752,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 320 } @@ -14766,10 +14766,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 320 } @@ -14780,10 +14780,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 320 } @@ -14791,13 +14791,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -14805,13 +14805,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15051,7 +15051,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2156431496 priority: 320 } @@ -15193,7 +15193,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1301133440 priority: 320 } @@ -15201,7 +15201,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 864925824 priority: 320 } @@ -15209,7 +15209,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 864925824 priority: 320 } @@ -15397,7 +15397,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 100 } @@ -15408,9 +15408,9 @@ cont { width: 3.2 color: 1300793480 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 100 @@ -15422,9 +15422,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15436,9 +15436,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15450,9 +15450,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15847,7 +15847,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2156431496 priority: 320 } @@ -16048,7 +16048,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1298359132 priority: 90 join: BEVELJOIN @@ -16251,7 +16251,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1299411563 dashdot { dd: 1.8 @@ -17423,7 +17423,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -17446,7 +17446,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17469,7 +17469,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17492,7 +17492,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17515,7 +17515,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17633,7 +17633,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -17656,7 +17656,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17679,7 +17679,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17702,7 +17702,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17725,7 +17725,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17765,7 +17765,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -17788,7 +17788,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17811,7 +17811,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17834,7 +17834,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17857,7 +17857,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17897,7 +17897,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -17920,7 +17920,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17943,7 +17943,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17966,7 +17966,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -17989,7 +17989,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18015,7 +18015,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 110 @@ -18026,7 +18026,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18037,7 +18037,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18048,7 +18048,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18059,7 +18059,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -20571,7 +20571,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715287582 dashdot { dd: 4.5 @@ -20591,7 +20591,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1715287582 dashdot { dd: 7.2 @@ -20611,10 +20611,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20631,10 +20631,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20720,19 +20720,19 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1715287582 dashdot { dd: 4.5 @@ -20752,19 +20752,19 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1715287582 dashdot { dd: 7.2 @@ -20784,22 +20784,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20816,22 +20816,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 @@ -20905,7 +20905,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715287582 dashdot { dd: 4.5 @@ -20914,17 +20914,17 @@ cont { priority: 180 } lines { - width: 5 + width: 5.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -20941,7 +20941,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1715287582 dashdot { dd: 7.2 @@ -20950,17 +20950,17 @@ cont { priority: 180 } lines { - width: 7 + width: 7.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -20977,26 +20977,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21013,26 +21013,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1715287582 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21183,7 +21183,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -21199,7 +21199,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -21215,7 +21215,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21231,7 +21231,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21275,7 +21275,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -21291,7 +21291,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -21307,7 +21307,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21323,7 +21323,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21367,7 +21367,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -21383,7 +21383,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -21399,7 +21399,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21415,7 +21415,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21460,7 +21460,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1304148906 dashdot { dd: 7.2 @@ -21484,7 +21484,7 @@ cont { width: 2.6 color: 1304148906 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 160 @@ -21501,7 +21501,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1304148906 dashdot { dd: 10.8 @@ -21521,7 +21521,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1304148906 dashdot { dd: 13.5 @@ -21541,10 +21541,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 1304148906 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -21561,10 +21561,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 1304148906 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -21883,7 +21883,7 @@ cont { width: 0.9 color: 3008779519 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21896,7 +21896,7 @@ cont { width: 1.1 color: 2572571903 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21909,7 +21909,7 @@ cont { width: 1.2 color: 2153141503 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21930,7 +21930,7 @@ cont { width: 1.3 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21950,7 +21950,7 @@ cont { width: 1.4 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21970,7 +21970,7 @@ cont { width: 1.6 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -21990,7 +21990,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22010,7 +22010,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22033,7 +22033,7 @@ cont { width: 0.9 color: 3008779519 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22046,7 +22046,7 @@ cont { width: 1.1 color: 2572571903 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22059,7 +22059,7 @@ cont { width: 1.2 color: 2153141503 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22080,7 +22080,7 @@ cont { width: 1.3 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22100,7 +22100,7 @@ cont { width: 1.4 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22120,7 +22120,7 @@ cont { width: 1.6 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22140,7 +22140,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22160,7 +22160,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22333,7 +22333,7 @@ cont { width: 0.9 color: 3008779519 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22346,7 +22346,7 @@ cont { width: 1.1 color: 2572571903 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22359,7 +22359,7 @@ cont { width: 1.2 color: 2153141503 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22380,7 +22380,7 @@ cont { width: 1.3 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22400,7 +22400,7 @@ cont { width: 1.4 color: 1716933887 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22420,7 +22420,7 @@ cont { width: 1.6 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22440,7 +22440,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22460,7 +22460,7 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22545,8 +22545,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22577,8 +22577,8 @@ cont { width: 8.2 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22609,8 +22609,8 @@ cont { width: 9.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22641,8 +22641,8 @@ cont { width: 9.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -22696,8 +22696,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -22714,11 +22714,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 } @@ -22737,7 +22737,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -22757,8 +22757,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 180 } @@ -22777,7 +22777,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22797,7 +22797,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22827,8 +22827,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -22849,11 +22849,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 180 } @@ -22876,7 +22876,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -22900,8 +22900,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 180 } @@ -22924,7 +22924,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22948,7 +22948,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 180 @@ -22981,8 +22981,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5 - dd: 3 + dd: 5.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -23004,11 +23004,11 @@ cont { priority: 170 } lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 3 + dd: 5.0 + dd: 3.0 } priority: 180 } @@ -23032,7 +23032,7 @@ cont { width: 2.4 color: 452524280 dashdot { - dd: 6 + dd: 6.0 dd: 4.2 } priority: 180 @@ -23057,7 +23057,7 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 5.5 } priority: 180 @@ -23082,7 +23082,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 6.7 } priority: 180 @@ -23107,7 +23107,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 6.7 } priority: 180 @@ -23127,7 +23127,7 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -23136,8 +23136,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -23154,17 +23154,17 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23195,7 +23195,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23227,8 +23227,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23259,7 +23259,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23291,7 +23291,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23311,11 +23311,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 330 } @@ -23326,7 +23326,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 330 @@ -23338,8 +23338,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 330 } @@ -23350,7 +23350,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 330 @@ -23362,7 +23362,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 330 @@ -23374,11 +23374,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23389,7 +23389,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23401,8 +23401,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23413,7 +23413,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23425,7 +23425,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23440,8 +23440,8 @@ cont { width: 1.5 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -23458,11 +23458,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 1090058488 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 155 } @@ -23481,7 +23481,7 @@ cont { width: 2.4 color: 1090058488 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 155 @@ -23496,8 +23496,8 @@ cont { width: 6.8 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23517,8 +23517,8 @@ cont { width: 3.2 color: 16316664 dashdot { - dd: 8 - dd: 3 + dd: 8.0 + dd: 3.0 } priority: 155 } @@ -23532,8 +23532,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23553,7 +23553,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23568,8 +23568,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23589,7 +23589,7 @@ cont { width: 4.2 color: 16316664 dashdot { - dd: 10 + dd: 10.0 dd: 3.5 } priority: 155 @@ -23604,8 +23604,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23625,11 +23625,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -23651,10 +23651,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -23688,11 +23688,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -23712,11 +23712,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -23736,7 +23736,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -23760,7 +23760,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -23797,7 +23797,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -23933,7 +23933,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -24069,7 +24069,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -24115,8 +24115,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24141,8 +24141,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24167,8 +24167,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24193,8 +24193,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24219,8 +24219,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -24426,7 +24426,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -24470,7 +24470,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -24657,7 +24657,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -24762,13 +24762,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -24796,7 +24796,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -24824,19 +24824,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -24858,13 +24858,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -24892,13 +24892,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -25020,8 +25020,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -25054,8 +25054,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -25087,8 +25087,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -25120,8 +25120,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25150,17 +25150,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1308402786 priority: 310 } @@ -25185,8 +25185,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25214,17 +25214,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 1308402786 priority: 310 } @@ -25249,8 +25249,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25281,8 +25281,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -25400,7 +25400,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -25517,7 +25517,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -25654,7 +25654,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -25725,7 +25725,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -25760,7 +25760,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -25801,13 +25801,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -25992,7 +25992,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -26043,8 +26043,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -26076,8 +26076,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -26109,8 +26109,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26139,17 +26139,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308402786 priority: 228 } @@ -26174,8 +26174,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26206,8 +26206,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26238,8 +26238,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26270,8 +26270,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -26306,7 +26306,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26319,7 +26319,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26339,7 +26339,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -26356,10 +26356,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -26379,7 +26379,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -26399,7 +26399,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -26419,7 +26419,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -26493,7 +26493,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 3.2 } priority: 180 @@ -26515,10 +26515,10 @@ cont { priority: 170 } lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 3.2 } priority: 180 @@ -26543,7 +26543,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 4.7 } priority: 180 @@ -26568,7 +26568,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 6.2 } priority: 180 @@ -26593,7 +26593,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 6.2 } priority: 180 @@ -26617,7 +26617,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -26636,7 +26636,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -26653,7 +26653,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -26662,7 +26662,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -26679,22 +26679,22 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -26726,7 +26726,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -26758,7 +26758,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -26790,7 +26790,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -26813,8 +26813,8 @@ cont { width: 0.9 color: 1721782290 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26826,8 +26826,8 @@ cont { width: 1.1 color: 1721782290 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 cap: BUTTCAP @@ -26864,7 +26864,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { dd: 1.8 @@ -26950,8 +26950,8 @@ cont { width: 0.9 color: 1715283479 dashdot { - dd: 1 - dd: 4 + dd: 1.0 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -26963,8 +26963,8 @@ cont { width: 1.1 color: 1715283479 dashdot { - dd: 1 - dd: 4 + dd: 1.0 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -26985,7 +26985,7 @@ cont { color: 1715283479 dashdot { dd: 1.6 - dd: 6 + dd: 6.0 } priority: 180 } @@ -27001,11 +27001,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715283479 dashdot { dd: 1.6 - dd: 6 + dd: 6.0 } priority: 180 } @@ -27025,7 +27025,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27045,7 +27045,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27065,7 +27065,7 @@ cont { color: 859645463 dashdot { dd: 2.8 - dd: 8 + dd: 8.0 } priority: 180 } @@ -27088,7 +27088,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27101,7 +27101,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27121,7 +27121,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27138,10 +27138,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27161,7 +27161,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -27181,7 +27181,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27201,7 +27201,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27225,7 +27225,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27238,7 +27238,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 cap: BUTTCAP @@ -27258,7 +27258,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -27275,26 +27275,26 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 } lines { - width: 5 + width: 5.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27314,7 +27314,7 @@ cont { width: 2.8 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -27329,8 +27329,8 @@ cont { width: 7.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27350,7 +27350,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27365,8 +27365,8 @@ cont { width: 9.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27386,7 +27386,7 @@ cont { width: 3.7 color: 866144274 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -27401,8 +27401,8 @@ cont { width: 9.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -27422,11 +27422,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27456,10 +27456,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27497,11 +27497,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27517,11 +27517,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -27537,7 +27537,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -27557,7 +27557,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -27580,11 +27580,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27618,10 +27618,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27667,11 +27667,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27691,11 +27691,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -27715,7 +27715,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -27739,7 +27739,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -27772,11 +27772,11 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -27824,16 +27824,16 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -27851,7 +27851,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -27895,11 +27895,11 @@ cont { cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -27927,11 +27927,11 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -27959,7 +27959,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -27991,7 +27991,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -28014,11 +28014,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -28048,10 +28048,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -28072,8 +28072,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP @@ -28099,21 +28099,21 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1308622847 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -28129,21 +28129,21 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1308622847 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -28159,17 +28159,17 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 dashdot { dd: 16.2 @@ -28189,17 +28189,17 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 dashdot { dd: 16.2 @@ -28383,7 +28383,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16752972 priority: 290 } @@ -28687,13 +28687,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16752972 priority: 290 } @@ -28972,8 +28972,8 @@ cont { width: 4.8 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 289 cap: BUTTCAP @@ -29005,8 +29005,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29035,17 +29035,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308402786 priority: 290 } @@ -29070,8 +29070,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29102,8 +29102,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29134,8 +29134,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29166,8 +29166,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -29222,7 +29222,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1308595264 priority: 226 join: BEVELJOIN @@ -29452,7 +29452,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1308595264 priority: 226 join: BEVELJOIN @@ -29540,7 +29540,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -29609,7 +29609,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -29766,7 +29766,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1308595264 priority: 226 join: BEVELJOIN @@ -29816,8 +29816,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 225 cap: BUTTCAP @@ -29849,8 +29849,8 @@ cont { width: 4.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -29882,8 +29882,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -29914,8 +29914,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -29946,8 +29946,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -29978,8 +29978,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30010,8 +30010,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -30042,7 +30042,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1298356016 priority: 180 cap: BUTTCAP @@ -30076,7 +30076,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 862148400 priority: 180 } @@ -30092,7 +30092,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 862148400 priority: 180 } @@ -30108,7 +30108,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 862148400 priority: 180 } @@ -30124,7 +30124,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 862148400 priority: 180 } @@ -30153,7 +30153,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30333,7 +30333,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30513,7 +30513,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30530,7 +30530,7 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -30634,7 +30634,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -30777,7 +30777,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -30837,8 +30837,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -30869,8 +30869,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -30901,8 +30901,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -30933,8 +30933,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -30965,8 +30965,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -31107,7 +31107,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -31243,7 +31243,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -31439,7 +31439,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1308162296 priority: 230 cap: BUTTCAP @@ -31694,7 +31694,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16760658 priority: 270 } @@ -31966,13 +31966,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16760658 priority: 270 } @@ -32262,17 +32262,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308606290 priority: 270 } @@ -32297,8 +32297,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32329,8 +32329,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32361,8 +32361,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32393,8 +32393,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -32571,7 +32571,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -32620,7 +32620,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -32759,8 +32759,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32785,8 +32785,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32811,8 +32811,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32837,8 +32837,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32863,8 +32863,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -32914,7 +32914,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -32930,7 +32930,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -32946,7 +32946,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -32962,7 +32962,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33006,7 +33006,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -33022,7 +33022,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -33038,7 +33038,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33054,7 +33054,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33116,13 +33116,13 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -33144,13 +33144,13 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -33172,13 +33172,13 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33200,13 +33200,13 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33241,7 +33241,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -33257,7 +33257,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -33273,7 +33273,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33289,7 +33289,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33333,7 +33333,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -33349,7 +33349,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -33365,7 +33365,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33381,7 +33381,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33425,7 +33425,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -33441,7 +33441,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -33457,7 +33457,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33473,7 +33473,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -33622,7 +33622,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 670628088 dashdot { dd: 1.8 @@ -33642,7 +33642,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -33662,7 +33662,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -33682,10 +33682,10 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33702,10 +33702,10 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33744,13 +33744,13 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 670628088 dashdot { dd: 1.8 @@ -33770,19 +33770,19 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -33802,19 +33802,19 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -33834,22 +33834,22 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33866,22 +33866,22 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -33914,7 +33914,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 670628088 dashdot { dd: 1.8 @@ -33934,7 +33934,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -33943,17 +33943,17 @@ cont { priority: 330 } lines { - width: 7 + width: 7.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -33970,7 +33970,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -33979,17 +33979,17 @@ cont { priority: 330 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34006,26 +34006,26 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34042,26 +34042,26 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -34178,7 +34178,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -34418,13 +34418,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -34682,17 +34682,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 priority: 250 } @@ -34717,8 +34717,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34749,8 +34749,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34781,8 +34781,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34813,8 +34813,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -34957,7 +34957,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -34998,7 +34998,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -35120,8 +35120,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35138,8 +35138,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35156,8 +35156,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35182,8 +35182,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35208,8 +35208,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -35237,7 +35237,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35250,7 +35250,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35271,8 +35271,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35291,8 +35291,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35311,7 +35311,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35331,7 +35331,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35351,7 +35351,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35374,7 +35374,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35387,7 +35387,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35408,8 +35408,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35428,8 +35428,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35448,7 +35448,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35468,7 +35468,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35488,7 +35488,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35511,7 +35511,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35530,7 +35530,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35557,8 +35557,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35574,13 +35574,13 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -35589,8 +35589,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35621,7 +35621,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35653,7 +35653,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35685,7 +35685,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35708,7 +35708,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35721,7 +35721,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35742,8 +35742,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35762,8 +35762,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35782,7 +35782,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35802,7 +35802,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35822,7 +35822,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35845,7 +35845,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35858,7 +35858,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -35879,8 +35879,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } @@ -35899,23 +35899,23 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 } lines { - width: 6 + width: 6.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -35935,7 +35935,7 @@ cont { width: 3.3 color: 862148400 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -35950,8 +35950,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -35971,7 +35971,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -35986,8 +35986,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36007,7 +36007,7 @@ cont { width: 4.2 color: 862148400 dashdot { - dd: 12 + dd: 12.0 dd: 3.5 } priority: 180 @@ -36022,8 +36022,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36224,7 +36224,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -36268,7 +36268,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -36455,7 +36455,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -36560,13 +36560,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -36594,7 +36594,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -36622,19 +36622,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -36656,13 +36656,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -36690,13 +36690,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -36818,8 +36818,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -36852,8 +36852,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -36885,8 +36885,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -36918,8 +36918,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -36948,17 +36948,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 1308402786 priority: 310 } @@ -36983,8 +36983,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37012,17 +37012,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 1308402786 priority: 310 } @@ -37047,8 +37047,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37079,8 +37079,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -37135,7 +37135,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -37252,7 +37252,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -37389,7 +37389,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -37460,7 +37460,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -37495,7 +37495,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -37536,13 +37536,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -37727,7 +37727,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1308591910 priority: 228 join: BEVELJOIN @@ -37778,8 +37778,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -37811,8 +37811,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -37844,8 +37844,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -37874,17 +37874,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308402786 priority: 228 } @@ -37909,8 +37909,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -37941,8 +37941,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -37973,8 +37973,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38005,8 +38005,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -38108,7 +38108,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -38262,7 +38262,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -38446,13 +38446,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -38654,17 +38654,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 priority: 250 } @@ -38683,8 +38683,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -38709,8 +38709,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -38735,8 +38735,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -38761,8 +38761,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41138,7 +41138,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1304608947 priority: 360 cap: BUTTCAP @@ -41159,10 +41159,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 360 } @@ -41173,10 +41173,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 360 } @@ -41187,10 +41187,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 360 } @@ -41198,13 +41198,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -41212,13 +41212,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -43126,8 +43126,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -43137,8 +43137,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -43148,8 +43148,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -43159,8 +43159,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43170,8 +43170,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43181,8 +43181,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -43323,7 +43323,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43338,7 +43338,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43353,7 +43353,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43368,7 +43368,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43383,7 +43383,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 } @@ -43418,7 +43418,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 join: BEVELJOIN @@ -43435,7 +43435,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43609,7 +43609,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2572580182 priority: 60 } @@ -43624,7 +43624,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2572580182 priority: 60 } @@ -43639,7 +43639,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2572580182 priority: 60 } @@ -43700,7 +43700,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -43716,7 +43716,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 2571723081 priority: 60 cap: BUTTCAP @@ -51997,7 +51997,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 869387687 priority: 160 } @@ -52014,7 +52014,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 869387687 priority: 160 } @@ -52031,7 +52031,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 869387687 priority: 160 } @@ -52048,7 +52048,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 869387687 priority: 160 } @@ -52272,7 +52272,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1306780114 priority: 30 cap: BUTTCAP @@ -52285,7 +52285,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1306780114 priority: 30 } @@ -52316,7 +52316,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1306780114 priority: 30 } @@ -52335,7 +52335,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -52354,7 +52354,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -52528,7 +52528,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2580534696 priority: 80 cap: BUTTCAP @@ -52546,7 +52546,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2580534696 priority: 80 } @@ -52554,7 +52554,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2580534696 priority: 80 } @@ -52570,7 +52570,7 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 2580534696 priority: 80 } @@ -52578,7 +52578,7 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 2580534696 priority: 80 } @@ -52592,9 +52592,9 @@ cont { width: 3.5 color: 1304608947 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 100 @@ -52603,13 +52603,13 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1304608947 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 100 } @@ -52617,13 +52617,13 @@ cont { element { scale: 18 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -52631,13 +52631,13 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -52645,13 +52645,13 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -52888,7 +52888,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1306780114 priority: 30 cap: BUTTCAP @@ -52901,7 +52901,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1306780114 priority: 30 } @@ -52932,7 +52932,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1306780114 priority: 30 } @@ -52951,7 +52951,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -52970,7 +52970,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -54524,7 +54524,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2576111654 dashdot { dd: 1.4 @@ -54537,7 +54537,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 2576111654 dashdot { dd: 1.5 @@ -54553,7 +54553,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -54568,8 +54568,8 @@ cont { color: 2576111654 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -54581,9 +54581,9 @@ cont { width: 9.5 color: 2156681254 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -54595,9 +54595,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -54609,9 +54609,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -54958,7 +54958,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2576111654 dashdot { dd: 1.4 @@ -54971,7 +54971,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 2576111654 dashdot { dd: 1.5 @@ -54987,7 +54987,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -55002,8 +55002,8 @@ cont { color: 2576111654 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -55015,9 +55015,9 @@ cont { width: 9.5 color: 2156681254 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -55029,9 +55029,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -55043,9 +55043,9 @@ cont { width: 11.9 color: 2156681254 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -56473,7 +56473,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 cap: BUTTCAP @@ -61084,7 +61084,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2579790591 priority: 120 cap: BUTTCAP @@ -61193,7 +61193,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2567571981 priority: 120 cap: BUTTCAP @@ -61302,7 +61302,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2567645179 priority: 120 cap: BUTTCAP @@ -61411,7 +61411,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2569143845 priority: 120 cap: BUTTCAP @@ -61520,7 +61520,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2582553856 priority: 120 cap: BUTTCAP @@ -61629,7 +61629,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2583432731 priority: 120 cap: BUTTCAP @@ -61738,7 +61738,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2573200174 priority: 120 cap: BUTTCAP @@ -61851,7 +61851,7 @@ cont { color: 2579790591 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 cap: BUTTCAP @@ -61864,7 +61864,7 @@ cont { color: 2579790591 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 cap: BUTTCAP @@ -61884,7 +61884,7 @@ cont { width: 1.5 color: 2579790591 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -61901,10 +61901,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 2579790591 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -61921,10 +61921,10 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 2579790591 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -61941,10 +61941,10 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 2579790591 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -61961,10 +61961,10 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 2579790591 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -62202,7 +62202,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2579790591 priority: 120 cap: BUTTCAP @@ -68535,16 +68535,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 2157352326 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2576782726 priority: 350 } @@ -68552,16 +68552,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 2157352326 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2576782726 priority: 350 } @@ -69113,7 +69113,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -69137,7 +69137,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -69161,7 +69161,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -69251,7 +69251,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69264,7 +69264,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69276,7 +69276,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69288,7 +69288,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69300,7 +69300,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69312,7 +69312,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69327,7 +69327,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69339,7 +69339,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69351,7 +69351,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69363,7 +69363,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69375,7 +69375,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1301714310 dashdot { dd: 1.8 @@ -69400,7 +69400,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69409,7 +69409,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69418,7 +69418,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69427,7 +69427,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 } @@ -69435,7 +69435,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69443,7 +69443,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69451,7 +69451,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69459,7 +69459,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69480,7 +69480,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69489,7 +69489,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69498,7 +69498,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69507,7 +69507,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 } @@ -69515,7 +69515,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69523,7 +69523,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69531,7 +69531,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69539,7 +69539,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69560,7 +69560,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69569,7 +69569,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69578,7 +69578,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 cap: BUTTCAP @@ -69587,7 +69587,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1301714310 priority: 320 } @@ -69595,7 +69595,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69603,7 +69603,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69611,7 +69611,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69619,7 +69619,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 9868678 priority: 320 } @@ -69865,7 +69865,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -69900,7 +69900,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -69917,7 +69917,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -69934,7 +69934,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -69951,7 +69951,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -69971,7 +69971,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 871230427 priority: 50 cap: BUTTCAP @@ -69992,7 +69992,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -70016,7 +70016,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 40 cap: BUTTCAP @@ -70045,7 +70045,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 40 cap: BUTTCAP @@ -70057,7 +70057,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -70080,13 +70080,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70109,13 +70109,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70138,13 +70138,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70164,7 +70164,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -70190,7 +70190,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70198,7 +70198,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70206,7 +70206,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70214,7 +70214,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70225,7 +70225,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -70251,7 +70251,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70259,7 +70259,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70267,7 +70267,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70275,7 +70275,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70286,7 +70286,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -70312,7 +70312,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70320,7 +70320,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70328,7 +70328,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70336,7 +70336,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70364,7 +70364,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70372,7 +70372,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70380,7 +70380,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70388,7 +70388,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70416,7 +70416,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70424,7 +70424,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70432,7 +70432,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70440,7 +70440,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70468,7 +70468,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70476,7 +70476,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70484,7 +70484,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70492,7 +70492,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 9868678 priority: 320 } @@ -70719,7 +70719,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70743,7 +70743,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70767,7 +70767,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -70899,7 +70899,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -70934,7 +70934,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -70943,7 +70943,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -70951,7 +70951,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70960,7 +70960,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -70968,7 +70968,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70977,7 +70977,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -70985,7 +70985,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -70994,7 +70994,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -71005,7 +71005,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71086,7 +71086,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71103,7 +71103,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71120,7 +71120,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71140,7 +71140,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71175,7 +71175,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -71211,7 +71211,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -71269,13 +71269,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71298,13 +71298,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71327,13 +71327,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71353,7 +71353,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -71385,8 +71385,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71404,8 +71404,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71432,8 +71432,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71459,8 +71459,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71474,7 +71474,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71486,8 +71486,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71501,7 +71501,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71513,8 +71513,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71528,7 +71528,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71540,8 +71540,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -71578,7 +71578,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -71599,7 +71599,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -71623,7 +71623,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -71652,7 +71652,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -71664,7 +71664,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -71673,7 +71673,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -71687,13 +71687,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71702,7 +71702,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -71716,13 +71716,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71731,7 +71731,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -71745,13 +71745,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -71760,7 +71760,7 @@ cont { priority: 220 } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -71819,7 +71819,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1301714310 priority: 280 cap: BUTTCAP @@ -71831,8 +71831,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -71848,8 +71848,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -71865,8 +71865,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -71882,8 +71882,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -71899,8 +71899,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -71961,7 +71961,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -71982,7 +71982,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1301714310 priority: 280 cap: BUTTCAP @@ -72006,8 +72006,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -72020,7 +72020,7 @@ cont { element { scale: 17 lines { - width: 9 + width: 9.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -72035,8 +72035,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -72064,8 +72064,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72093,8 +72093,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72122,8 +72122,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72181,8 +72181,8 @@ cont { width: 3.8 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72197,17 +72197,17 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1301714310 priority: 280 cap: BUTTCAP @@ -72219,8 +72219,8 @@ cont { width: 1.1 color: 15658734 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 } @@ -72228,8 +72228,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72246,8 +72246,8 @@ cont { width: 1.5 color: 15658734 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -72255,8 +72255,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72273,8 +72273,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72282,8 +72282,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72300,8 +72300,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72309,8 +72309,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72327,8 +72327,8 @@ cont { width: 1.7 color: 15658734 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } @@ -72336,8 +72336,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72354,7 +72354,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72364,7 +72364,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72445,7 +72445,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72462,7 +72462,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72479,7 +72479,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72499,7 +72499,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72509,7 +72509,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72544,7 +72544,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -72580,7 +72580,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -72638,13 +72638,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72667,13 +72667,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72696,13 +72696,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72722,7 +72722,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72732,7 +72732,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301714310 priority: 280 join: BEVELJOIN @@ -72764,8 +72764,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72783,8 +72783,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72811,8 +72811,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72838,8 +72838,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72853,7 +72853,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72865,8 +72865,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72880,7 +72880,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72892,8 +72892,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72907,7 +72907,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -72919,8 +72919,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -72962,7 +72962,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -72979,7 +72979,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -72996,7 +72996,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73016,7 +73016,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -73071,13 +73071,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73100,13 +73100,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73129,13 +73129,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73158,8 +73158,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73185,8 +73185,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73200,7 +73200,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73212,8 +73212,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73227,7 +73227,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73239,8 +73239,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73254,7 +73254,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73266,8 +73266,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73318,7 +73318,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73335,7 +73335,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73352,7 +73352,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73387,7 +73387,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -73442,13 +73442,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73471,13 +73471,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73500,13 +73500,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73529,8 +73529,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73548,8 +73548,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73575,8 +73575,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73590,7 +73590,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73602,8 +73602,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73617,7 +73617,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73629,8 +73629,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73644,7 +73644,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -73656,8 +73656,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -73674,7 +73674,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73684,7 +73684,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73797,7 +73797,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -73822,7 +73822,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -73847,7 +73847,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -73875,7 +73875,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73885,7 +73885,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -73920,7 +73920,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -73972,7 +73972,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -74046,13 +74046,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74083,13 +74083,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74120,13 +74120,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74154,7 +74154,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -74164,7 +74164,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1302101349 priority: 280 join: BEVELJOIN @@ -74196,8 +74196,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74223,8 +74223,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74259,8 +74259,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74294,8 +74294,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74317,7 +74317,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74329,8 +74329,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74352,7 +74352,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74364,8 +74364,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74387,7 +74387,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74399,8 +74399,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -74454,17 +74454,17 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74476,8 +74476,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74504,8 +74504,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74519,7 +74519,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -74528,17 +74528,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -74546,7 +74546,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74555,17 +74555,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -74573,7 +74573,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74582,17 +74582,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -74600,7 +74600,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -74609,17 +74609,17 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 11710882 priority: 210 } @@ -74630,7 +74630,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74682,7 +74682,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74699,7 +74699,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74716,7 +74716,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74742,7 +74742,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74781,7 +74781,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -74836,13 +74836,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74865,13 +74865,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74894,13 +74894,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -74920,7 +74920,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74932,8 +74932,8 @@ cont { width: 3.1 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74951,8 +74951,8 @@ cont { width: 3.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74970,8 +74970,8 @@ cont { width: 3.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -74997,8 +74997,8 @@ cont { width: 4.9 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75012,7 +75012,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -75024,8 +75024,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75039,7 +75039,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -75051,8 +75051,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -75066,7 +75066,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15000299 dashdot { dd: 8.1 @@ -75078,8 +75078,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -96196,7 +96196,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -96231,7 +96231,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -96248,7 +96248,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -96265,7 +96265,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -96282,7 +96282,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -96302,7 +96302,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -96323,7 +96323,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -96347,7 +96347,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -96376,7 +96376,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -96388,7 +96388,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 6.3 @@ -96411,13 +96411,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -96440,13 +96440,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -96469,13 +96469,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 15658734 dashdot { dd: 8.1 @@ -108573,7 +108573,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108581,7 +108581,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108589,7 +108589,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108597,7 +108597,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108643,7 +108643,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108651,7 +108651,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108659,7 +108659,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108667,7 +108667,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108713,7 +108713,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108721,7 +108721,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108729,7 +108729,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108737,7 +108737,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -108868,7 +108868,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108882,7 +108882,7 @@ cont { element { scale: 8 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108896,7 +108896,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108910,7 +108910,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108931,7 +108931,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108952,7 +108952,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108973,7 +108973,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -108993,7 +108993,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109013,7 +109013,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109033,7 +109033,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109052,7 +109052,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109071,7 +109071,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109090,7 +109090,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -109109,7 +109109,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -123873,7 +123873,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 cap: BUTTCAP @@ -123996,7 +123996,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2160246963 priority: 30 cap: BUTTCAP @@ -124016,14 +124016,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2160246963 priority: 30 } area { color: 13224123 border { - width: 1 + width: 1.0 color: 10592406 } priority: 30 @@ -124046,7 +124046,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -124062,14 +124062,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -124085,14 +124085,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -124108,14 +124108,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -124173,7 +124173,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124185,7 +124185,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124197,7 +124197,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124209,7 +124209,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124221,7 +124221,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124418,7 +124418,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124430,7 +124430,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124442,7 +124442,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124454,7 +124454,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124466,7 +124466,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 1302185921 dashdot { dd: 2.7 @@ -124497,7 +124497,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 cap: BUTTCAP @@ -124645,7 +124645,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 join: BEVELJOIN @@ -124831,7 +124831,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 cap: BUTTCAP @@ -124957,7 +124957,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 priority: -990 cap: BUTTCAP @@ -125087,7 +125087,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295429823 dashdot { dd: 2.7 @@ -125356,7 +125356,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2160246963 priority: 330 cap: BUTTCAP @@ -125372,7 +125372,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2160246963 priority: 330 } @@ -125402,7 +125402,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2160246963 priority: 330 } @@ -125417,7 +125417,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 330 } @@ -125432,7 +125432,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 330 } diff --git a/data/drules_proto_outdoors_dark.txt b/data/drules_proto_outdoors_dark.txt index 6ce0e66b89..c2a3a6fb70 100644 --- a/data/drules_proto_outdoors_dark.txt +++ b/data/drules_proto_outdoors_dark.txt @@ -7,7 +7,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296977469 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296977469 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2152615485 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296977469 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5131837 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296977469 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2571847235 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 3881787 border { - width: 1 + width: 1.0 color: 6908265 } priority: -1850 @@ -15145,7 +15145,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296187970 priority: 320 cap: BUTTCAP @@ -15166,10 +15166,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 320 } @@ -15180,10 +15180,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 320 } @@ -15194,10 +15194,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 320 } @@ -15205,13 +15205,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15219,13 +15219,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15478,7 +15478,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1296319556 priority: 320 cap: BUTTCAP @@ -15487,7 +15487,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1296319556 priority: 320 } @@ -15629,7 +15629,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1293431320 priority: 320 } @@ -15637,7 +15637,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 857223704 priority: 320 } @@ -15645,7 +15645,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 857223704 priority: 320 } @@ -15833,7 +15833,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 100 } @@ -15844,9 +15844,9 @@ cont { width: 3.2 color: 1296319556 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 100 @@ -15858,9 +15858,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15872,9 +15872,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15886,9 +15886,9 @@ cont { width: 4.5 color: 1296319556 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -16283,7 +16283,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1296319556 priority: 320 cap: BUTTCAP @@ -16292,7 +16292,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1296319556 priority: 320 } @@ -16493,7 +16493,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1297438037 priority: 90 join: BEVELJOIN @@ -16696,7 +16696,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1298556518 dashdot { dd: 1.8 @@ -17998,7 +17998,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -18021,7 +18021,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18044,7 +18044,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18067,7 +18067,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18090,7 +18090,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18208,7 +18208,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -18231,7 +18231,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18254,7 +18254,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18277,7 +18277,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18300,7 +18300,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18340,7 +18340,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -18363,7 +18363,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18386,7 +18386,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18409,7 +18409,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18432,7 +18432,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18472,7 +18472,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 130 @@ -18495,7 +18495,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18518,7 +18518,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18541,7 +18541,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18564,7 +18564,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 130 @@ -18590,7 +18590,7 @@ cont { area { color: 859519803 border { - width: 1 + width: 1.0 color: 6381921 } priority: 110 @@ -18601,7 +18601,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18612,7 +18612,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18623,7 +18623,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -18634,7 +18634,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 110 @@ -21092,11 +21092,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21109,8 +21109,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21123,7 +21123,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21144,7 +21144,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21162,10 +21162,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21186,7 +21186,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21206,7 +21206,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21223,10 +21223,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21243,10 +21243,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21263,10 +21263,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21286,11 +21286,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21303,8 +21303,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21317,7 +21317,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21338,7 +21338,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21356,16 +21356,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21392,7 +21392,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21424,7 +21424,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21441,22 +21441,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21473,22 +21473,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21505,22 +21505,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21540,11 +21540,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21557,8 +21557,8 @@ cont { width: 1.1 color: 1301563922 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21571,7 +21571,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21592,7 +21592,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21610,10 +21610,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21634,7 +21634,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21654,7 +21654,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21669,8 +21669,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21687,26 +21687,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21723,26 +21723,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21759,26 +21759,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21929,7 +21929,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -21945,7 +21945,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -21961,7 +21961,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -21977,7 +21977,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -22021,7 +22021,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -22037,7 +22037,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -22053,7 +22053,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -22069,7 +22069,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -22113,7 +22113,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 860571203 priority: 190 } @@ -22129,7 +22129,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 860571203 priority: 190 } @@ -22145,7 +22145,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -22161,7 +22161,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 860571203 priority: 190 } @@ -22234,7 +22234,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 3354413 dashdot { dd: 7.2 @@ -22258,7 +22258,7 @@ cont { width: 2.6 color: 3354413 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 160 @@ -22275,7 +22275,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 3354413 dashdot { dd: 10.8 @@ -22295,7 +22295,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 3354413 dashdot { dd: 13.5 @@ -22315,10 +22315,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 3354413 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -22335,10 +22335,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 3354413 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -22368,7 +22368,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22445,7 +22445,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 priority: 330 } @@ -22522,7 +22522,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22566,7 +22566,7 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -22611,19 +22611,19 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 7224647 priority: 330 } @@ -22736,7 +22736,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22749,7 +22749,7 @@ cont { width: 1.1 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22770,7 +22770,7 @@ cont { width: 1.3 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22791,7 +22791,7 @@ cont { width: 1.5 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22812,7 +22812,7 @@ cont { width: 1.7 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22829,10 +22829,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22852,7 +22852,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22872,7 +22872,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22892,7 +22892,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22922,7 +22922,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -22935,7 +22935,7 @@ cont { width: 1.1 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22956,7 +22956,7 @@ cont { width: 1.3 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22977,7 +22977,7 @@ cont { width: 1.5 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22998,7 +22998,7 @@ cont { width: 1.7 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23015,10 +23015,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23038,7 +23038,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23058,7 +23058,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23078,7 +23078,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23108,7 +23108,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -23201,7 +23201,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 dashdot { dd: 2.2 @@ -23294,7 +23294,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -23307,7 +23307,7 @@ cont { width: 1.1 color: 862862663 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23328,7 +23328,7 @@ cont { width: 1.3 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23349,7 +23349,7 @@ cont { width: 1.5 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23370,7 +23370,7 @@ cont { width: 1.7 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23387,10 +23387,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23410,7 +23410,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23430,7 +23430,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23450,7 +23450,7 @@ cont { width: 2.4 color: 7224647 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23480,7 +23480,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 330 join: BEVELJOIN @@ -23557,22 +23557,22 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 priority: 330 } lines { - width: 6 + width: 6.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23603,8 +23603,8 @@ cont { width: 9.8 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23635,8 +23635,8 @@ cont { width: 10.8 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23667,8 +23667,8 @@ cont { width: 10.8 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23719,11 +23719,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23737,7 +23737,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23750,7 +23750,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23771,7 +23771,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23789,10 +23789,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -23813,7 +23813,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -23833,7 +23833,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23850,10 +23850,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23870,10 +23870,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23890,10 +23890,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23913,11 +23913,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23931,7 +23931,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23944,7 +23944,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23965,7 +23965,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23987,10 +23987,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -24015,7 +24015,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -24039,7 +24039,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24060,10 +24060,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24084,10 +24084,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24108,10 +24108,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24135,11 +24135,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -24172,8 +24172,8 @@ cont { width: 1.3 color: 860571203 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -24199,8 +24199,8 @@ cont { width: 1.6 color: 860571203 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -24223,10 +24223,10 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 860571203 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -24252,7 +24252,7 @@ cont { width: 2.6 color: 860571203 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -24269,7 +24269,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 862862663 priority: 170 } @@ -24277,8 +24277,8 @@ cont { width: 3.3 color: 860571203 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24299,11 +24299,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24324,11 +24324,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24349,11 +24349,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24372,11 +24372,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24390,7 +24390,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24403,7 +24403,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24424,7 +24424,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24442,16 +24442,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24478,7 +24478,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24510,7 +24510,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24527,22 +24527,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24559,22 +24559,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24591,22 +24591,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24629,7 +24629,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 330 @@ -24641,7 +24641,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24650,10 +24650,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24662,10 +24662,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24674,10 +24674,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24692,7 +24692,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24704,7 +24704,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24713,10 +24713,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24725,10 +24725,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24737,10 +24737,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24752,11 +24752,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24770,7 +24770,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24783,7 +24783,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24804,7 +24804,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24822,10 +24822,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24846,7 +24846,7 @@ cont { width: 2.6 color: 4933187 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24866,7 +24866,7 @@ cont { width: 3.3 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24881,8 +24881,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24899,26 +24899,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24935,26 +24935,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24971,26 +24971,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -25010,11 +25010,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -25040,10 +25040,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -25081,11 +25081,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -25105,11 +25105,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -25129,7 +25129,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -25153,7 +25153,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -25190,7 +25190,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -25326,7 +25326,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -25462,7 +25462,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -25508,8 +25508,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25534,8 +25534,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25560,8 +25560,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25586,8 +25586,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25612,8 +25612,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25825,7 +25825,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -25871,7 +25871,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -26064,7 +26064,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -26172,13 +26172,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -26207,7 +26207,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -26236,19 +26236,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -26271,13 +26271,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -26306,13 +26306,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -26437,8 +26437,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -26472,8 +26472,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -26506,8 +26506,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -26540,8 +26540,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26571,17 +26571,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3677972 priority: 310 } @@ -26607,8 +26607,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26637,17 +26637,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 3677972 priority: 310 } @@ -26673,8 +26673,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26706,8 +26706,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26827,7 +26827,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -26949,7 +26949,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -27092,7 +27092,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -27166,7 +27166,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -27202,7 +27202,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -27244,13 +27244,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -27441,7 +27441,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -27494,8 +27494,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -27528,8 +27528,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -27562,8 +27562,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27593,17 +27593,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 3677972 priority: 228 } @@ -27629,8 +27629,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27662,8 +27662,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27695,8 +27695,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27728,8 +27728,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27761,11 +27761,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27779,7 +27779,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27792,7 +27792,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -27813,7 +27813,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -27831,10 +27831,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -27855,7 +27855,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -27875,7 +27875,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27892,10 +27892,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27912,10 +27912,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27932,10 +27932,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27955,11 +27955,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27969,7 +27969,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1299070279 priority: 170 join: BEVELJOIN @@ -27999,8 +27999,8 @@ cont { width: 1.3 color: 865356306 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -28026,8 +28026,8 @@ cont { width: 1.6 color: 865356306 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -28050,10 +28050,10 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -28079,7 +28079,7 @@ cont { width: 2.6 color: 865356306 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -28096,7 +28096,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 7224647 priority: 170 } @@ -28104,8 +28104,8 @@ cont { width: 3.3 color: 865356306 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28126,11 +28126,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28151,11 +28151,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28176,11 +28176,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28199,11 +28199,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28217,7 +28217,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28230,7 +28230,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28251,7 +28251,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28269,16 +28269,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28305,7 +28305,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28337,7 +28337,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28354,22 +28354,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28386,22 +28386,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28418,22 +28418,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28453,11 +28453,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1301563922 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28470,8 +28470,8 @@ cont { width: 1.1 color: 865356306 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28523,11 +28523,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { dd: 2.5 - dd: 4 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -28548,7 +28548,7 @@ cont { color: 9718290 dashdot { dd: 2.5 - dd: 4 + dd: 4.0 } priority: 180 } @@ -28568,7 +28568,7 @@ cont { color: 9718290 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28584,11 +28584,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28604,11 +28604,11 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28624,11 +28624,11 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28647,11 +28647,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1297235507 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28664,8 +28664,8 @@ cont { width: 1.1 color: 861027891 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28679,7 +28679,7 @@ cont { color: 5389875 dashdot { dd: 1.4 - dd: 5 + dd: 5.0 } priority: 180 cap: BUTTCAP @@ -28700,7 +28700,7 @@ cont { color: 5389875 dashdot { dd: 1.4 - dd: 5 + dd: 5.0 } priority: 180 cap: BUTTCAP @@ -28717,11 +28717,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 5389875 dashdot { dd: 2.3 - dd: 9 + dd: 9.0 } priority: 180 cap: BUTTCAP @@ -28742,7 +28742,7 @@ cont { color: 5389875 dashdot { dd: 2.3 - dd: 9 + dd: 9.0 } priority: 180 } @@ -28762,7 +28762,7 @@ cont { color: 5389875 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28778,11 +28778,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5389875 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28798,11 +28798,11 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 5389875 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28818,11 +28818,11 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 5389875 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28841,11 +28841,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28859,7 +28859,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28872,7 +28872,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28893,7 +28893,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28911,10 +28911,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28935,7 +28935,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28955,7 +28955,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28972,10 +28972,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28992,10 +28992,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -29012,10 +29012,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -29035,11 +29035,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -29053,7 +29053,7 @@ cont { color: 1301563922 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -29066,7 +29066,7 @@ cont { width: 1.3 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -29087,7 +29087,7 @@ cont { width: 1.6 color: 9718290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -29105,10 +29105,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -29129,7 +29129,7 @@ cont { width: 2.6 color: 9718290 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -29149,7 +29149,7 @@ cont { width: 3.3 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -29164,8 +29164,8 @@ cont { width: 8.6 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29182,26 +29182,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29218,26 +29218,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29254,26 +29254,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 9718290 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29293,11 +29293,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29327,10 +29327,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29368,11 +29368,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29388,11 +29388,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29408,7 +29408,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29428,7 +29428,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29451,11 +29451,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29489,10 +29489,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29538,11 +29538,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29562,11 +29562,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29586,7 +29586,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29610,7 +29610,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29643,11 +29643,11 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29695,16 +29695,16 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29722,7 +29722,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -29766,11 +29766,11 @@ cont { cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 659375940 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29798,11 +29798,11 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 5064516 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29830,7 +29830,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29862,7 +29862,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5064516 dashdot { dd: 16.2 @@ -29885,11 +29885,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 659375940 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29919,10 +29919,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 659375940 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29943,8 +29943,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP @@ -29970,21 +29970,21 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -30000,21 +30000,21 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1294673959 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -30030,17 +30030,17 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 dashdot { dd: 16.2 @@ -30060,17 +30060,17 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1294673959 dashdot { dd: 16.2 @@ -30260,7 +30260,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 290 } @@ -30575,13 +30575,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 290 } @@ -30869,8 +30869,8 @@ cont { width: 4.8 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 289 cap: BUTTCAP @@ -30903,8 +30903,8 @@ cont { width: 5.8 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -30934,17 +30934,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4991515 priority: 290 } @@ -30970,8 +30970,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -31003,8 +31003,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -31036,8 +31036,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -31069,8 +31069,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -31127,7 +31127,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 5845795 priority: 226 join: BEVELJOIN @@ -31367,7 +31367,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 5845795 priority: 226 join: BEVELJOIN @@ -31458,7 +31458,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -31529,7 +31529,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -31691,7 +31691,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 5845795 priority: 226 join: BEVELJOIN @@ -31743,8 +31743,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 225 cap: BUTTCAP @@ -31777,8 +31777,8 @@ cont { width: 4.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31811,8 +31811,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31844,8 +31844,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31877,8 +31877,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31910,8 +31910,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31943,8 +31943,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31976,7 +31976,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1298092845 priority: 180 cap: BUTTCAP @@ -32010,7 +32010,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 861885229 priority: 180 } @@ -32026,7 +32026,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 861885229 priority: 180 } @@ -32042,7 +32042,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 861885229 priority: 180 } @@ -32058,7 +32058,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 861885229 priority: 180 } @@ -32087,7 +32087,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -32273,7 +32273,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -32459,7 +32459,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -32476,7 +32476,7 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -32582,7 +32582,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -32729,7 +32729,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -32790,8 +32790,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32823,8 +32823,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32856,8 +32856,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32889,8 +32889,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32922,8 +32922,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -33072,7 +33072,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -33208,7 +33208,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -33404,7 +33404,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4933187 priority: 230 cap: BUTTCAP @@ -33663,7 +33663,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5717555 priority: 270 } @@ -33944,13 +33944,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5717555 priority: 270 } @@ -34249,17 +34249,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5717555 priority: 270 } @@ -34285,8 +34285,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34318,8 +34318,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34351,8 +34351,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34384,8 +34384,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34563,7 +34563,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -34612,7 +34612,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -34751,8 +34751,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34777,8 +34777,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34803,8 +34803,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34829,8 +34829,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34855,8 +34855,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -35134,7 +35134,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -35156,7 +35156,7 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -35287,7 +35287,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4933187 priority: 190 } @@ -35303,7 +35303,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4933187 priority: 190 } @@ -35319,7 +35319,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 priority: 190 } @@ -35335,7 +35335,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 priority: 190 } @@ -35379,7 +35379,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4933187 priority: 190 } @@ -35395,7 +35395,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4933187 priority: 190 } @@ -35411,7 +35411,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4933187 priority: 190 } @@ -35427,7 +35427,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4933187 priority: 190 } @@ -35677,7 +35677,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -35690,7 +35690,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35711,7 +35711,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35750,7 +35750,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { dd: 1.8 @@ -35770,7 +35770,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -35790,7 +35790,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -35810,10 +35810,10 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35830,10 +35830,10 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35857,7 +35857,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -35870,7 +35870,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35891,7 +35891,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35936,13 +35936,13 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 4933187 dashdot { dd: 1.8 @@ -35962,19 +35962,19 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -35994,19 +35994,19 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -36026,22 +36026,22 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -36058,22 +36058,22 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -36097,7 +36097,7 @@ cont { color: 4933187 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -36110,7 +36110,7 @@ cont { width: 1.3 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -36131,7 +36131,7 @@ cont { width: 1.6 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -36170,7 +36170,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 4933187 dashdot { dd: 1.8 @@ -36190,7 +36190,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 4933187 dashdot { dd: 2.5 @@ -36199,17 +36199,17 @@ cont { priority: 330 } lines { - width: 7 + width: 7.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36226,7 +36226,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 4933187 dashdot { dd: 3.2 @@ -36235,17 +36235,17 @@ cont { priority: 330 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36262,26 +36262,26 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36298,26 +36298,26 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 4933187 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36437,7 +36437,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -36685,13 +36685,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -36957,17 +36957,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 2828327 priority: 250 } @@ -36993,8 +36993,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -37026,8 +37026,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -37059,8 +37059,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -37092,8 +37092,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -37237,7 +37237,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -37278,7 +37278,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -37400,8 +37400,8 @@ cont { width: 5.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37418,8 +37418,8 @@ cont { width: 6.7 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37436,8 +37436,8 @@ cont { width: 8.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37462,8 +37462,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37488,8 +37488,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37517,7 +37517,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37531,7 +37531,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37545,8 +37545,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37563,11 +37563,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37587,7 +37587,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37608,7 +37608,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37625,11 +37625,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37645,11 +37645,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37665,11 +37665,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37685,11 +37685,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37711,7 +37711,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37725,7 +37725,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37739,8 +37739,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37757,11 +37757,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37781,7 +37781,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37802,7 +37802,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37819,11 +37819,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37839,11 +37839,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37859,11 +37859,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37879,11 +37879,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37905,7 +37905,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37919,7 +37919,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37933,8 +37933,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37951,11 +37951,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37972,7 +37972,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -37981,7 +37981,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38008,7 +38008,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38025,23 +38025,23 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38057,23 +38057,23 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38089,23 +38089,23 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38121,23 +38121,23 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38159,7 +38159,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38173,7 +38173,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38187,8 +38187,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38205,11 +38205,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38229,7 +38229,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38250,7 +38250,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38267,11 +38267,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38287,11 +38287,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38307,11 +38307,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38327,11 +38327,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38353,7 +38353,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38367,7 +38367,7 @@ cont { width: 1.3 color: 1298092845 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38381,8 +38381,8 @@ cont { width: 1.6 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38399,11 +38399,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6247213 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38423,7 +38423,7 @@ cont { width: 2.5 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38444,7 +38444,7 @@ cont { width: 3.2 color: 6247213 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38461,26 +38461,26 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38497,26 +38497,26 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38533,26 +38533,26 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38569,26 +38569,26 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6247213 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1294740506 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1297109072 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38795,7 +38795,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -38841,7 +38841,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -39034,7 +39034,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -39142,13 +39142,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4794651 priority: 310 } @@ -39177,7 +39177,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -39206,19 +39206,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 4794651 priority: 310 } @@ -39241,13 +39241,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -39276,13 +39276,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1297109072 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -39407,8 +39407,8 @@ cont { width: 2.9 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -39442,8 +39442,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -39476,8 +39476,8 @@ cont { width: 5.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -39510,8 +39510,8 @@ cont { width: 6.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39541,17 +39541,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3677972 priority: 310 } @@ -39577,8 +39577,8 @@ cont { width: 10.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39607,17 +39607,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 3677972 priority: 310 } @@ -39643,8 +39643,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39676,8 +39676,8 @@ cont { width: 15.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39734,7 +39734,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -39856,7 +39856,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -39999,7 +39999,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -40073,7 +40073,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -40109,7 +40109,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -40151,13 +40151,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5845795 priority: 228 } @@ -40348,7 +40348,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 5845795 priority: 228 join: BEVELJOIN @@ -40401,8 +40401,8 @@ cont { width: 3.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -40435,8 +40435,8 @@ cont { width: 4.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -40469,8 +40469,8 @@ cont { width: 5.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40500,17 +40500,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 3677972 priority: 228 } @@ -40536,8 +40536,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40569,8 +40569,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40602,8 +40602,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40635,8 +40635,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40739,7 +40739,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -40893,7 +40893,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -41077,13 +41077,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 5196359 priority: 250 } @@ -41285,17 +41285,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 2828327 priority: 250 } @@ -41314,8 +41314,8 @@ cont { width: 8.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41340,8 +41340,8 @@ cont { width: 11.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41366,8 +41366,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41392,8 +41392,8 @@ cont { width: 13.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -43769,7 +43769,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296187970 priority: 360 cap: BUTTCAP @@ -43790,10 +43790,10 @@ cont { width: 4.5 color: 1295727419 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 360 } @@ -43804,10 +43804,10 @@ cont { width: 5.9 color: 1295727419 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 360 } @@ -43818,10 +43818,10 @@ cont { width: 8.5 color: 1295727419 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 360 } @@ -43829,13 +43829,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -43843,13 +43843,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1295727419 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -45757,8 +45757,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -45768,8 +45768,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -45779,8 +45779,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -45790,8 +45790,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45801,8 +45801,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45812,8 +45812,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45978,7 +45978,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45993,7 +45993,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46008,7 +46008,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46023,7 +46023,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46038,7 +46038,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46090,7 +46090,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 join: BEVELJOIN @@ -46107,7 +46107,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -46297,7 +46297,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46312,7 +46312,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46327,7 +46327,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -46405,7 +46405,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -46421,7 +46421,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -54839,7 +54839,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 858401316 priority: 160 } @@ -54856,7 +54856,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 858401316 priority: 160 } @@ -54873,7 +54873,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 858401316 priority: 160 } @@ -54890,7 +54890,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 858401316 priority: 160 } @@ -55111,7 +55111,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1291845632 priority: 30 cap: BUTTCAP @@ -55123,7 +55123,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291845632 priority: 30 } @@ -55152,7 +55152,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 priority: 30 } @@ -55170,7 +55170,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -55188,7 +55188,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -55395,7 +55395,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1712264192 priority: 80 cap: BUTTCAP @@ -55412,7 +55412,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1712264192 priority: 80 } @@ -55420,7 +55420,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 1712264192 priority: 80 } @@ -55428,7 +55428,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1712264192 priority: 80 } @@ -55436,7 +55436,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1712264192 priority: 80 } @@ -55450,9 +55450,9 @@ cont { width: 3.5 color: 1296187970 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 100 @@ -55461,13 +55461,13 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1296187970 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 100 } @@ -55475,13 +55475,13 @@ cont { element { scale: 18 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55489,13 +55489,13 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55503,13 +55503,13 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1296187970 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55808,7 +55808,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1291845632 priority: 30 cap: BUTTCAP @@ -55820,7 +55820,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1291845632 priority: 30 } @@ -55849,7 +55849,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1291845632 priority: 30 } @@ -55867,7 +55867,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -55885,7 +55885,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1291845632 priority: 30 } @@ -58013,7 +58013,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 2155695907 dashdot { dd: 1.4 @@ -58027,7 +58027,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 2155695907 dashdot { dd: 1.4 @@ -58040,7 +58040,7 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1719488291 dashdot { dd: 1.5 @@ -58056,7 +58056,7 @@ cont { width: 6.2 color: 1719488291 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -58072,8 +58072,8 @@ cont { color: 1300057891 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -58085,9 +58085,9 @@ cont { width: 9.5 color: 863850275 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -58099,9 +58099,9 @@ cont { width: 11.9 color: 863850275 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -58113,9 +58113,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -58127,9 +58127,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -58476,7 +58476,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 2155695907 dashdot { dd: 1.4 @@ -58490,7 +58490,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 2155695907 dashdot { dd: 1.4 @@ -58503,7 +58503,7 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1719488291 dashdot { dd: 1.5 @@ -58519,7 +58519,7 @@ cont { width: 6.2 color: 1719488291 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -58535,8 +58535,8 @@ cont { color: 1300057891 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -58548,9 +58548,9 @@ cont { width: 9.5 color: 863850275 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -58562,9 +58562,9 @@ cont { width: 11.9 color: 863850275 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -58576,9 +58576,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -58590,9 +58590,9 @@ cont { width: 14.3 color: 863850275 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -60198,7 +60198,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1292247078 priority: -990 join: BEVELJOIN @@ -60208,7 +60208,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 1292247078 priority: -990 join: BEVELJOIN @@ -64867,7 +64867,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2573352319 priority: 120 join: BEVELJOIN @@ -64995,7 +64995,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2569151010 priority: 120 join: BEVELJOIN @@ -65241,7 +65241,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2567645179 priority: 120 join: BEVELJOIN @@ -65428,7 +65428,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2570269491 priority: 120 join: BEVELJOIN @@ -65615,7 +65615,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2582553856 priority: 120 join: BEVELJOIN @@ -65743,7 +65743,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2583432731 priority: 120 join: BEVELJOIN @@ -65930,7 +65930,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2573200174 priority: 120 join: BEVELJOIN @@ -66121,7 +66121,7 @@ cont { color: 1298283903 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 join: BEVELJOIN @@ -66134,7 +66134,7 @@ cont { width: 1.3 color: 1298283903 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -66155,7 +66155,7 @@ cont { width: 1.6 color: 1298283903 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -66173,10 +66173,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1298283903 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 120 @@ -66197,7 +66197,7 @@ cont { width: 2.6 color: 1298283903 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 120 @@ -66217,7 +66217,7 @@ cont { width: 3.3 color: 1298283903 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66234,10 +66234,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1298283903 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66254,10 +66254,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1298283903 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66274,10 +66274,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1298283903 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66307,7 +66307,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1298283903 priority: 120 cap: BUTTCAP @@ -66451,7 +66451,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1298283903 priority: 120 cap: BUTTCAP @@ -66585,7 +66585,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2573352319 priority: 120 join: BEVELJOIN @@ -73024,17 +73024,17 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 2150839091 dashdot { - dd: 1 - dd: 50 + dd: 1.0 + dd: 50.0 } priority: 340 cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 2150839091 priority: 350 cap: BUTTCAP @@ -73043,16 +73043,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 2150839091 dashdot { - dd: 1 - dd: 50 + dd: 1.0 + dd: 50.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2150839091 priority: 350 } @@ -73063,8 +73063,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -73080,8 +73080,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -73097,8 +73097,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -73114,8 +73114,8 @@ cont { width: 4.5 color: 1714631475 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -73652,8 +73652,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73664,8 +73664,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73676,8 +73676,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73688,8 +73688,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73700,8 +73700,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73766,8 +73766,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73781,7 +73781,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -73790,8 +73790,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73814,8 +73814,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73838,8 +73838,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73862,8 +73862,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73916,8 +73916,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73928,8 +73928,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73940,8 +73940,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73952,8 +73952,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73964,8 +73964,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73976,7 +73976,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -73989,7 +73989,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -74002,7 +74002,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -74019,7 +74019,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74031,7 +74031,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74043,7 +74043,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74055,7 +74055,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74067,7 +74067,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74078,7 +74078,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -74091,7 +74091,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -74104,7 +74104,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 4470602 dashdot { dd: 1.8 @@ -74121,7 +74121,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74133,7 +74133,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74145,7 +74145,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74157,7 +74157,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74169,7 +74169,7 @@ cont { color: 4470602 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -74190,7 +74190,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74199,7 +74199,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74208,7 +74208,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74217,7 +74217,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -74225,7 +74225,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74233,7 +74233,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74241,7 +74241,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74249,7 +74249,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74270,7 +74270,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74279,7 +74279,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74288,7 +74288,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74297,7 +74297,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -74305,7 +74305,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74313,7 +74313,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74321,7 +74321,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74329,7 +74329,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74350,7 +74350,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74359,7 +74359,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74368,7 +74368,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 cap: BUTTCAP @@ -74377,7 +74377,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296316234 priority: 320 } @@ -74385,7 +74385,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74393,7 +74393,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74401,7 +74401,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74409,7 +74409,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 4470602 priority: 320 } @@ -74655,7 +74655,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74690,7 +74690,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -74707,7 +74707,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74724,7 +74724,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74741,7 +74741,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74761,7 +74761,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 858532890 priority: 50 cap: BUTTCAP @@ -74782,7 +74782,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -74806,7 +74806,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 40 cap: BUTTCAP @@ -74835,7 +74835,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 40 cap: BUTTCAP @@ -74847,7 +74847,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -74870,13 +74870,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74899,13 +74899,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74928,13 +74928,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -74954,7 +74954,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -74980,7 +74980,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -74988,7 +74988,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -74996,7 +74996,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75004,7 +75004,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75015,7 +75015,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -75041,7 +75041,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75049,7 +75049,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75057,7 +75057,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75065,7 +75065,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75076,7 +75076,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 320 cap: BUTTCAP @@ -75102,7 +75102,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75110,7 +75110,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75118,7 +75118,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75126,7 +75126,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75154,7 +75154,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75162,7 +75162,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75170,7 +75170,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75178,7 +75178,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75206,7 +75206,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75214,7 +75214,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75222,7 +75222,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75230,7 +75230,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75258,7 +75258,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75266,7 +75266,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75274,7 +75274,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75282,7 +75282,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 4470602 priority: 320 } @@ -75408,8 +75408,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75420,8 +75420,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75432,8 +75432,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75444,8 +75444,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75456,8 +75456,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75528,8 +75528,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75543,7 +75543,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -75552,8 +75552,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75576,8 +75576,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75600,8 +75600,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75624,8 +75624,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75678,8 +75678,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75690,8 +75690,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75702,8 +75702,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75714,8 +75714,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75726,8 +75726,8 @@ cont { width: 2.2 color: 4470602 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75738,7 +75738,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 210 join: BEVELJOIN @@ -75777,7 +75777,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 4470602 priority: 210 cap: BUTTCAP @@ -75831,7 +75831,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -75848,7 +75848,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -75865,7 +75865,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -75882,7 +75882,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -75893,7 +75893,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -75932,7 +75932,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -75986,7 +75986,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76003,7 +76003,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76020,7 +76020,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76037,7 +76037,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76048,7 +76048,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -76099,7 +76099,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -76133,7 +76133,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -76183,7 +76183,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76212,7 +76212,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76241,7 +76241,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76270,7 +76270,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76281,7 +76281,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -76320,17 +76320,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -76352,8 +76352,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -76380,8 +76380,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -76404,17 +76404,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76431,17 +76431,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76458,17 +76458,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76485,17 +76485,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76506,7 +76506,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 210 join: BEVELJOIN @@ -76557,7 +76557,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 210 cap: BUTTCAP @@ -76591,7 +76591,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -76641,7 +76641,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -76670,7 +76670,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -76699,7 +76699,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -76728,7 +76728,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -76769,7 +76769,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -76790,8 +76790,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -76809,8 +76809,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -76826,13 +76826,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76843,13 +76843,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76860,13 +76860,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76877,13 +76877,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -76930,7 +76930,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -76939,7 +76939,7 @@ cont { element { scale: 14 lines { - width: 7 + width: 7.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -76963,8 +76963,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -76979,7 +76979,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -76994,8 +76994,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -77023,13 +77023,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77052,13 +77052,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77081,13 +77081,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77110,13 +77110,13 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77157,7 +77157,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -77169,8 +77169,8 @@ cont { width: 4.3 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77188,8 +77188,8 @@ cont { width: 1.2 color: 328965 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -77198,8 +77198,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77217,8 +77217,8 @@ cont { width: 1.8 color: 328965 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -77226,8 +77226,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77244,23 +77244,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77271,23 +77271,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77298,23 +77298,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77325,23 +77325,23 @@ cont { width: 2.8 color: 328965 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77352,7 +77352,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -77391,7 +77391,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -77445,7 +77445,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77462,7 +77462,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77479,7 +77479,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77496,7 +77496,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77507,7 +77507,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -77558,7 +77558,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -77592,7 +77592,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -77642,7 +77642,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77671,7 +77671,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77700,7 +77700,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77729,7 +77729,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77740,7 +77740,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 280 join: BEVELJOIN @@ -77779,17 +77779,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 280 cap: BUTTCAP @@ -77811,8 +77811,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77839,8 +77839,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77863,17 +77863,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77890,17 +77890,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77917,17 +77917,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -77944,17 +77944,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 280 } @@ -78000,7 +78000,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78017,7 +78017,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78034,7 +78034,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78051,7 +78051,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78077,7 +78077,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -78127,7 +78127,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78156,7 +78156,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78185,7 +78185,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78214,7 +78214,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78228,8 +78228,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78256,8 +78256,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78280,17 +78280,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78307,17 +78307,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78334,17 +78334,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78361,17 +78361,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78426,7 +78426,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78443,7 +78443,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78460,7 +78460,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78477,7 +78477,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78518,7 +78518,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -78568,7 +78568,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78597,7 +78597,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78626,7 +78626,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78655,7 +78655,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78669,8 +78669,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78688,8 +78688,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78716,8 +78716,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78740,17 +78740,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78767,17 +78767,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78794,17 +78794,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78821,17 +78821,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -78842,7 +78842,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4536109 priority: 280 join: BEVELJOIN @@ -78881,7 +78881,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 4536109 priority: 280 cap: BUTTCAP @@ -78959,7 +78959,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -78984,7 +78984,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79009,7 +79009,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79034,7 +79034,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79053,7 +79053,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4536109 priority: 280 join: BEVELJOIN @@ -79104,7 +79104,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4536109 priority: 280 cap: BUTTCAP @@ -79154,7 +79154,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -79212,7 +79212,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79249,7 +79249,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79286,7 +79286,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79323,7 +79323,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79342,7 +79342,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4536109 priority: 280 join: BEVELJOIN @@ -79381,17 +79381,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4536109 priority: 280 cap: BUTTCAP @@ -79421,8 +79421,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -79457,8 +79457,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -79489,17 +79489,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79524,17 +79524,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79559,17 +79559,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79594,17 +79594,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4536109 priority: 280 } @@ -79623,7 +79623,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 4470602 priority: 210 join: BEVELJOIN @@ -79662,17 +79662,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 4470602 priority: 210 cap: BUTTCAP @@ -79694,8 +79694,8 @@ cont { width: 4.6 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -79722,8 +79722,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -79746,17 +79746,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -79773,17 +79773,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -79800,17 +79800,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -79827,17 +79827,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4408131 priority: 210 } @@ -79848,7 +79848,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 3682365 priority: 210 join: BEVELJOIN @@ -79911,7 +79911,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -79928,7 +79928,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -79945,7 +79945,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -79962,7 +79962,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -79973,7 +79973,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 3682365 priority: 210 join: BEVELJOIN @@ -80028,7 +80028,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -80078,7 +80078,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80107,7 +80107,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80136,7 +80136,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80165,7 +80165,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80176,7 +80176,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 3682365 priority: 210 join: BEVELJOIN @@ -80198,8 +80198,8 @@ cont { width: 3.4 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80217,8 +80217,8 @@ cont { width: 3.7 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80245,8 +80245,8 @@ cont { width: 5.5 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80269,17 +80269,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80296,17 +80296,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80323,17 +80323,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -80350,17 +80350,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1294082594 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4470602 priority: 210 } @@ -101471,7 +101471,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -101506,7 +101506,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -101523,7 +101523,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -101540,7 +101540,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -101557,7 +101557,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -101577,7 +101577,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 858532890 priority: 150 cap: BUTTCAP @@ -101598,7 +101598,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1295527997 priority: 210 cap: BUTTCAP @@ -101622,7 +101622,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -101651,7 +101651,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1297109072 priority: 140 cap: BUTTCAP @@ -101663,7 +101663,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 6.3 @@ -101686,13 +101686,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -101715,13 +101715,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -101744,13 +101744,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 858532890 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 328965 dashdot { dd: 8.1 @@ -113848,7 +113848,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113856,7 +113856,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113864,7 +113864,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113872,7 +113872,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113918,7 +113918,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113926,7 +113926,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113934,7 +113934,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113942,7 +113942,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113988,7 +113988,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -113996,7 +113996,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -114004,7 +114004,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -114012,7 +114012,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 6052945 priority: 320 } @@ -114143,7 +114143,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114157,7 +114157,7 @@ cont { element { scale: 8 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114171,7 +114171,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114185,7 +114185,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114206,7 +114206,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114227,7 +114227,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114248,7 +114248,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114268,7 +114268,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114288,7 +114288,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114308,7 +114308,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114327,7 +114327,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114346,7 +114346,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114365,7 +114365,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -114384,7 +114384,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1714046273 dashdot { dd: 5.4 @@ -129528,7 +129528,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2147885094 priority: -990 join: BEVELJOIN @@ -129685,7 +129685,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2151825986 priority: 30 cap: BUTTCAP @@ -129705,14 +129705,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2151825986 priority: 30 } area { color: 3881787 border { - width: 1 + width: 1.0 color: 6381921 } priority: 30 @@ -129735,7 +129735,7 @@ cont { area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -129751,14 +129751,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -129774,14 +129774,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -129797,14 +129797,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 30 } area { color: 4342338 border { - width: 1 + width: 1.0 color: 6908265 } priority: 30 @@ -129862,7 +129862,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -129874,7 +129874,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -129886,7 +129886,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -129898,7 +129898,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -129910,7 +129910,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130107,7 +130107,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130119,7 +130119,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130131,7 +130131,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130143,7 +130143,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130155,7 +130155,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 9758 dashdot { dd: 2.7 @@ -130352,7 +130352,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1292247078 priority: -990 join: BEVELJOIN @@ -130370,7 +130370,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 1292247078 priority: -990 join: BEVELJOIN @@ -130522,7 +130522,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2147885094 priority: -990 join: BEVELJOIN @@ -130666,7 +130666,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1292247078 dashdot { dd: 2.7 @@ -130708,11 +130708,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 cap: BUTTCAP @@ -130729,11 +130729,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130749,11 +130749,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130769,11 +130769,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130789,11 +130789,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130809,11 +130809,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130832,7 +130832,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1292247078 dashdot { dd: 2.7 @@ -130874,11 +130874,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 cap: BUTTCAP @@ -130895,11 +130895,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130915,11 +130915,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130935,11 +130935,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130955,11 +130955,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130975,11 +130975,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 401446 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -131180,7 +131180,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2151825986 priority: 330 cap: BUTTCAP @@ -131196,7 +131196,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2151825986 priority: 330 } @@ -131226,7 +131226,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2151825986 priority: 330 } @@ -131241,7 +131241,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 330 } @@ -131256,7 +131256,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2151825986 priority: 330 } diff --git a/data/drules_proto_outdoors_light.txt b/data/drules_proto_outdoors_light.txt index 3f97ce7255..aef59784e4 100644 --- a/data/drules_proto_outdoors_light.txt +++ b/data/drules_proto_outdoors_light.txt @@ -7,7 +7,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -28,7 +28,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -43,11 +43,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -62,11 +62,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -89,16 +89,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -114,16 +114,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -139,16 +139,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -164,16 +164,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -189,16 +189,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -220,8 +220,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -239,8 +239,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -255,11 +255,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -282,16 +282,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -307,16 +307,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -332,16 +332,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -357,16 +357,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -382,16 +382,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -413,8 +413,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -432,8 +432,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -448,11 +448,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -475,16 +475,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -500,16 +500,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -525,16 +525,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -550,16 +550,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -575,16 +575,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -607,7 +607,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -628,7 +628,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -643,11 +643,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -662,11 +662,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -689,16 +689,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -714,16 +714,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -739,16 +739,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -764,16 +764,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -789,16 +789,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -820,8 +820,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -839,8 +839,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -855,11 +855,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -882,16 +882,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -907,16 +907,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -932,16 +932,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -957,16 +957,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -982,16 +982,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1013,8 +1013,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1032,8 +1032,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1048,11 +1048,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1075,16 +1075,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1100,16 +1100,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1125,16 +1125,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1150,16 +1150,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1175,16 +1175,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1207,7 +1207,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 join: BEVELJOIN @@ -1228,7 +1228,7 @@ cont { color: 1296319556 dashdot { dd: 2.5 - dd: 15 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1243,11 +1243,11 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1262,11 +1262,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 3 - dd: 30 + dd: 3.0 + dd: 30.0 } priority: 380 cap: BUTTCAP @@ -1289,16 +1289,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1314,16 +1314,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1339,16 +1339,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1364,16 +1364,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1389,16 +1389,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1296319556 dashdot { - dd: 4 - dd: 45 + dd: 4.0 + dd: 45.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1420,8 +1420,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1439,8 +1439,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1455,11 +1455,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1482,16 +1482,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1507,16 +1507,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1532,16 +1532,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1557,16 +1557,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1582,16 +1582,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1613,8 +1613,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1632,8 +1632,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1648,11 +1648,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1675,16 +1675,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1700,16 +1700,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1725,16 +1725,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1750,16 +1750,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1775,16 +1775,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -1934,8 +1934,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1953,8 +1953,8 @@ cont { width: 2.5 color: 2151957572 dashdot { - dd: 1 - dd: 10 + dd: 1.0 + dd: 10.0 } priority: 380 cap: BUTTCAP @@ -1969,11 +1969,11 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 cap: BUTTCAP @@ -1996,16 +1996,16 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1296319556 dashdot { - dd: 1 - dd: 15 + dd: 1.0 + dd: 15.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2021,16 +2021,16 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2046,16 +2046,16 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2071,16 +2071,16 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2096,16 +2096,16 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4473924 dashdot { - dd: 1 - dd: 22 + dd: 1.0 + dd: 22.0 } priority: 380 } lines { - width: 1 + width: 1.0 color: 1296319556 priority: 370 } @@ -2819,7 +2819,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2583230712 priority: 70 join: BEVELJOIN @@ -2962,7 +2962,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: -1850 @@ -2973,7 +2973,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: -1850 @@ -2991,7 +2991,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3009,7 +3009,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3027,7 +3027,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3045,7 +3045,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -3063,7 +3063,7 @@ cont { area { color: 13224123 border { - width: 1 + width: 1.0 color: 10197647 } priority: -1850 @@ -15145,7 +15145,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1304608947 priority: 320 cap: BUTTCAP @@ -15166,10 +15166,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 320 } @@ -15180,10 +15180,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 320 } @@ -15194,10 +15194,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 320 } @@ -15205,13 +15205,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15219,13 +15219,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 320 } @@ -15478,7 +15478,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1300793480 priority: 320 cap: BUTTCAP @@ -15487,7 +15487,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1300793480 priority: 320 } @@ -15629,7 +15629,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 1301133440 priority: 320 } @@ -15637,7 +15637,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 864925824 priority: 320 } @@ -15645,7 +15645,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 864925824 priority: 320 } @@ -15833,7 +15833,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 100 } @@ -15844,9 +15844,9 @@ cont { width: 3.2 color: 1300793480 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 100 @@ -15858,9 +15858,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15872,9 +15872,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -15886,9 +15886,9 @@ cont { width: 4.5 color: 1300793480 dashdot { - dd: 6 - dd: 3 - dd: 3 + dd: 6.0 + dd: 3.0 + dd: 3.0 dd: 1.5 } priority: 100 @@ -16283,7 +16283,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1300793480 priority: 320 cap: BUTTCAP @@ -16292,7 +16292,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1300793480 priority: 320 } @@ -16493,7 +16493,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1298359132 priority: 90 join: BEVELJOIN @@ -16696,7 +16696,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1299411563 dashdot { dd: 1.8 @@ -17998,7 +17998,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -18021,7 +18021,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18044,7 +18044,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18067,7 +18067,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18090,7 +18090,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18208,7 +18208,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -18231,7 +18231,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18254,7 +18254,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18277,7 +18277,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18300,7 +18300,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18340,7 +18340,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -18363,7 +18363,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18386,7 +18386,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18409,7 +18409,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18432,7 +18432,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18472,7 +18472,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 130 @@ -18495,7 +18495,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18518,7 +18518,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18541,7 +18541,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18564,7 +18564,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 130 @@ -18590,7 +18590,7 @@ cont { area { color: 868862139 border { - width: 1 + width: 1.0 color: 10592406 } priority: 110 @@ -18601,7 +18601,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18612,7 +18612,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18623,7 +18623,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -18634,7 +18634,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 110 @@ -21092,11 +21092,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21109,8 +21109,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21123,7 +21123,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21144,7 +21144,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21162,10 +21162,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21186,7 +21186,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21206,7 +21206,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21223,10 +21223,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21243,10 +21243,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21263,10 +21263,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21286,11 +21286,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21303,8 +21303,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21317,7 +21317,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21338,7 +21338,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21356,16 +21356,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21392,7 +21392,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21424,7 +21424,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21441,22 +21441,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21473,22 +21473,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21505,22 +21505,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21540,11 +21540,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21557,8 +21557,8 @@ cont { width: 1.1 color: 1302351890 dashdot { - dd: 6 - dd: 1 + dd: 6.0 + dd: 1.0 } priority: 180 join: BEVELJOIN @@ -21571,7 +21571,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21592,7 +21592,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 7 + dd: 7.0 dd: 1.2 } priority: 180 @@ -21610,10 +21610,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21634,7 +21634,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 9 + dd: 9.0 dd: 1.7 } priority: 180 @@ -21654,7 +21654,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 @@ -21669,8 +21669,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21687,26 +21687,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21723,26 +21723,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21759,26 +21759,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 12 + dd: 12.0 dd: 2.2 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -21929,7 +21929,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -21945,7 +21945,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -21961,7 +21961,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -21977,7 +21977,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -22021,7 +22021,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -22037,7 +22037,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -22053,7 +22053,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -22069,7 +22069,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -22113,7 +22113,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 871954680 priority: 190 } @@ -22129,7 +22129,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 871954680 priority: 190 } @@ -22145,7 +22145,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -22161,7 +22161,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 871954680 priority: 190 } @@ -22234,7 +22234,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 11250586 dashdot { dd: 7.2 @@ -22258,7 +22258,7 @@ cont { width: 2.6 color: 11250586 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 160 @@ -22275,7 +22275,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 11250586 dashdot { dd: 10.8 @@ -22295,7 +22295,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 11250586 dashdot { dd: 13.5 @@ -22315,10 +22315,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 11250586 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -22335,10 +22335,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 11250586 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 160 @@ -22368,7 +22368,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22445,7 +22445,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 priority: 330 } @@ -22522,7 +22522,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22566,7 +22566,7 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -22611,19 +22611,19 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 5459435 priority: 330 } @@ -22736,7 +22736,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22749,7 +22749,7 @@ cont { width: 1.1 color: 861097451 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22770,7 +22770,7 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22791,7 +22791,7 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22812,7 +22812,7 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22829,10 +22829,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22852,7 +22852,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22872,7 +22872,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22892,7 +22892,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22922,7 +22922,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -22935,7 +22935,7 @@ cont { width: 1.1 color: 861097451 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22956,7 +22956,7 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22977,7 +22977,7 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -22998,7 +22998,7 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23015,10 +23015,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23038,7 +23038,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23058,7 +23058,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23078,7 +23078,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23108,7 +23108,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -23201,7 +23201,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 dashdot { dd: 2.2 @@ -23294,7 +23294,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -23307,7 +23307,7 @@ cont { width: 1.1 color: 861097451 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23328,7 +23328,7 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23349,7 +23349,7 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23370,7 +23370,7 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23387,10 +23387,10 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23410,7 +23410,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23430,7 +23430,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23450,7 +23450,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 330 @@ -23480,7 +23480,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 330 join: BEVELJOIN @@ -23557,22 +23557,22 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 priority: 330 } lines { - width: 6 + width: 6.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23603,8 +23603,8 @@ cont { width: 9.8 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23635,8 +23635,8 @@ cont { width: 10.8 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23667,8 +23667,8 @@ cont { width: 10.8 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -23719,11 +23719,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23737,7 +23737,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23750,7 +23750,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23771,7 +23771,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23789,10 +23789,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -23813,7 +23813,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -23833,7 +23833,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23850,10 +23850,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23870,10 +23870,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23890,10 +23890,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -23913,11 +23913,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23931,7 +23931,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -23944,7 +23944,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23965,7 +23965,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -23987,10 +23987,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -24015,7 +24015,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -24039,7 +24039,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24060,10 +24060,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24084,10 +24084,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24108,10 +24108,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -24135,11 +24135,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -24172,8 +24172,8 @@ cont { width: 1.3 color: 871954680 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -24199,8 +24199,8 @@ cont { width: 1.6 color: 871954680 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -24223,10 +24223,10 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 871954680 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -24252,7 +24252,7 @@ cont { width: 2.6 color: 871954680 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -24269,7 +24269,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 861097451 priority: 170 } @@ -24277,8 +24277,8 @@ cont { width: 3.3 color: 871954680 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24299,11 +24299,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24324,11 +24324,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24349,11 +24349,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -24372,11 +24372,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24390,7 +24390,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24403,7 +24403,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24424,7 +24424,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24442,16 +24442,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24478,7 +24478,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24510,7 +24510,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24527,22 +24527,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24559,22 +24559,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24591,22 +24591,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24629,7 +24629,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 330 @@ -24641,7 +24641,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24650,10 +24650,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24662,10 +24662,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24674,10 +24674,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 330 @@ -24692,7 +24692,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24704,7 +24704,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24713,10 +24713,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24725,10 +24725,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24737,10 +24737,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24752,11 +24752,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24770,7 +24770,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -24783,7 +24783,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24804,7 +24804,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -24822,10 +24822,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24846,7 +24846,7 @@ cont { width: 2.6 color: 16316664 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -24866,7 +24866,7 @@ cont { width: 3.3 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -24881,8 +24881,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24899,26 +24899,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24935,26 +24935,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -24971,26 +24971,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -25010,11 +25010,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -25040,10 +25040,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -25081,11 +25081,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -25105,11 +25105,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -25129,7 +25129,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -25153,7 +25153,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -25190,7 +25190,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -25326,7 +25326,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -25462,7 +25462,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -25508,8 +25508,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25534,8 +25534,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25560,8 +25560,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25586,8 +25586,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25612,8 +25612,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -25819,7 +25819,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -25863,7 +25863,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -26050,7 +26050,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -26155,13 +26155,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -26189,7 +26189,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -26217,19 +26217,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -26251,13 +26251,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -26285,13 +26285,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -26413,8 +26413,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -26447,8 +26447,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -26480,8 +26480,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -26513,8 +26513,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26543,17 +26543,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16557154 priority: 310 } @@ -26578,8 +26578,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26607,17 +26607,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16557154 priority: 310 } @@ -26642,8 +26642,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26674,8 +26674,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -26793,7 +26793,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -26910,7 +26910,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -27047,7 +27047,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -27118,7 +27118,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -27153,7 +27153,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -27194,13 +27194,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -27385,7 +27385,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -27436,8 +27436,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -27469,8 +27469,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -27502,8 +27502,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27532,17 +27532,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16557154 priority: 228 } @@ -27567,8 +27567,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27599,8 +27599,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27631,8 +27631,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27663,8 +27663,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -27695,11 +27695,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27713,7 +27713,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27726,7 +27726,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -27747,7 +27747,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 180 @@ -27765,10 +27765,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -27789,7 +27789,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 180 @@ -27809,7 +27809,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27826,10 +27826,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27846,10 +27846,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27866,10 +27866,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 180 @@ -27889,11 +27889,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -27903,7 +27903,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1297305067 priority: 170 join: BEVELJOIN @@ -27933,8 +27933,8 @@ cont { width: 1.3 color: 866144274 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -27960,8 +27960,8 @@ cont { width: 1.6 color: 866144274 dashdot { - dd: 4 - dd: 3 + dd: 4.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -27984,10 +27984,10 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -28013,7 +28013,7 @@ cont { width: 2.6 color: 866144274 dashdot { - dd: 6 + dd: 6.0 dd: 4.5 } priority: 180 @@ -28030,7 +28030,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 5459435 priority: 170 } @@ -28038,8 +28038,8 @@ cont { width: 3.3 color: 866144274 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28060,11 +28060,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28085,11 +28085,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28110,11 +28110,11 @@ cont { priority: 170 } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 - dd: 6 + dd: 8.0 + dd: 6.0 } priority: 180 } @@ -28133,11 +28133,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28151,7 +28151,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28164,7 +28164,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28185,7 +28185,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28203,16 +28203,16 @@ cont { element { scale: 15 lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28239,7 +28239,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28271,7 +28271,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28288,22 +28288,22 @@ cont { element { scale: 18 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28320,22 +28320,22 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28352,22 +28352,22 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28387,11 +28387,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1302351890 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28404,8 +28404,8 @@ cont { width: 1.1 color: 866144274 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28457,11 +28457,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { dd: 2.5 - dd: 4 + dd: 4.0 } priority: 180 cap: BUTTCAP @@ -28482,7 +28482,7 @@ cont { color: 10506258 dashdot { dd: 2.5 - dd: 4 + dd: 4.0 } priority: 180 } @@ -28502,7 +28502,7 @@ cont { color: 10506258 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28518,11 +28518,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28538,11 +28538,11 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28558,11 +28558,11 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { dd: 3.6 - dd: 5 + dd: 5.0 } priority: 180 } @@ -28581,11 +28581,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1295853079 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28598,8 +28598,8 @@ cont { width: 1.1 color: 859645463 dashdot { - dd: 1 - dd: 2 + dd: 1.0 + dd: 2.0 } priority: 180 join: BEVELJOIN @@ -28613,7 +28613,7 @@ cont { color: 4007447 dashdot { dd: 1.4 - dd: 5 + dd: 5.0 } priority: 180 cap: BUTTCAP @@ -28634,7 +28634,7 @@ cont { color: 4007447 dashdot { dd: 1.4 - dd: 5 + dd: 5.0 } priority: 180 cap: BUTTCAP @@ -28651,11 +28651,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 4007447 dashdot { dd: 2.3 - dd: 9 + dd: 9.0 } priority: 180 cap: BUTTCAP @@ -28676,7 +28676,7 @@ cont { color: 4007447 dashdot { dd: 2.3 - dd: 9 + dd: 9.0 } priority: 180 } @@ -28696,7 +28696,7 @@ cont { color: 4007447 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28712,11 +28712,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 4007447 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28732,11 +28732,11 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 4007447 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28752,11 +28752,11 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 4007447 dashdot { dd: 3.5 - dd: 11 + dd: 11.0 } priority: 180 } @@ -28775,11 +28775,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28793,7 +28793,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28806,7 +28806,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28827,7 +28827,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -28845,10 +28845,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28869,7 +28869,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -28889,7 +28889,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28906,10 +28906,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28926,10 +28926,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28946,10 +28946,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -28969,11 +28969,11 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -28987,7 +28987,7 @@ cont { color: 1302351890 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 155 join: BEVELJOIN @@ -29000,7 +29000,7 @@ cont { width: 1.3 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -29021,7 +29021,7 @@ cont { width: 1.6 color: 10506258 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 155 @@ -29039,10 +29039,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -29063,7 +29063,7 @@ cont { width: 2.6 color: 10506258 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 155 @@ -29083,7 +29083,7 @@ cont { width: 3.3 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 @@ -29098,8 +29098,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29116,26 +29116,26 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29152,26 +29152,26 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29188,26 +29188,26 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 10506258 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 155 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -29227,11 +29227,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29261,10 +29261,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29302,11 +29302,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29322,11 +29322,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29342,7 +29342,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29362,7 +29362,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29385,11 +29385,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29423,10 +29423,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29472,11 +29472,11 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29496,11 +29496,11 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29520,7 +29520,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29544,7 +29544,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29577,11 +29577,11 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29629,16 +29629,16 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29656,7 +29656,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -29700,11 +29700,11 @@ cont { cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 670628088 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29732,11 +29732,11 @@ cont { cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29764,7 +29764,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29796,7 +29796,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16316664 dashdot { dd: 16.2 @@ -29819,11 +29819,11 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 670628088 dashdot { - dd: 2 - dd: 1 + dd: 2.0 + dd: 1.0 } priority: 200 cap: BUTTCAP @@ -29853,10 +29853,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 670628088 dashdot { - dd: 5 + dd: 5.0 dd: 2.2 } priority: 200 @@ -29877,8 +29877,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP @@ -29904,21 +29904,21 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 3 + width: 3.0 color: 1308622847 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 200 } @@ -29934,21 +29934,21 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 1308622847 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 200 } @@ -29964,17 +29964,17 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 dashdot { dd: 16.2 @@ -29994,17 +29994,17 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 199 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1308622847 dashdot { dd: 16.2 @@ -30188,7 +30188,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16752972 priority: 290 } @@ -30492,13 +30492,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16752972 priority: 290 } @@ -30777,8 +30777,8 @@ cont { width: 4.8 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 289 cap: BUTTCAP @@ -30810,8 +30810,8 @@ cont { width: 5.8 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -30840,17 +30840,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16557154 priority: 290 } @@ -30875,8 +30875,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -30907,8 +30907,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -30939,8 +30939,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -30971,8 +30971,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 289 cap: BUTTCAP @@ -31027,7 +31027,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 16749632 priority: 226 join: BEVELJOIN @@ -31257,7 +31257,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 16749632 priority: 226 join: BEVELJOIN @@ -31345,7 +31345,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -31414,7 +31414,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -31571,7 +31571,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 16749632 priority: 226 join: BEVELJOIN @@ -31621,8 +31621,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 225 cap: BUTTCAP @@ -31654,8 +31654,8 @@ cont { width: 4.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31687,8 +31687,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31719,8 +31719,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31751,8 +31751,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31783,8 +31783,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31815,8 +31815,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 225 cap: BUTTCAP @@ -31847,7 +31847,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1298356016 priority: 180 cap: BUTTCAP @@ -31881,7 +31881,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 862148400 priority: 180 } @@ -31897,7 +31897,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 862148400 priority: 180 } @@ -31913,7 +31913,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 862148400 priority: 180 } @@ -31929,7 +31929,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 862148400 priority: 180 } @@ -31958,7 +31958,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -32138,7 +32138,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -32318,7 +32318,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -32335,7 +32335,7 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -32439,7 +32439,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -32582,7 +32582,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -32642,8 +32642,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32674,8 +32674,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32706,8 +32706,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32738,8 +32738,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32770,8 +32770,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -32919,7 +32919,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -33055,7 +33055,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -33251,7 +33251,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 16316664 priority: 230 cap: BUTTCAP @@ -33506,7 +33506,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16760658 priority: 270 } @@ -33778,13 +33778,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16760658 priority: 270 } @@ -34074,17 +34074,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16760658 priority: 270 } @@ -34109,8 +34109,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34141,8 +34141,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34173,8 +34173,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34205,8 +34205,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 269 cap: BUTTCAP @@ -34383,7 +34383,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -34432,7 +34432,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -34571,8 +34571,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34597,8 +34597,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34623,8 +34623,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34649,8 +34649,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34675,8 +34675,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 223 cap: BUTTCAP @@ -34954,7 +34954,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -34976,7 +34976,7 @@ cont { element { scale: 17 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -35107,7 +35107,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 16316664 priority: 190 } @@ -35123,7 +35123,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 16316664 priority: 190 } @@ -35139,7 +35139,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 priority: 190 } @@ -35155,7 +35155,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 priority: 190 } @@ -35199,7 +35199,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 16316664 priority: 190 } @@ -35215,7 +35215,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 16316664 priority: 190 } @@ -35231,7 +35231,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 16316664 priority: 190 } @@ -35247,7 +35247,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 16316664 priority: 190 } @@ -35497,7 +35497,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -35510,7 +35510,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35531,7 +35531,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35570,7 +35570,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { dd: 1.8 @@ -35590,7 +35590,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -35610,7 +35610,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -35630,10 +35630,10 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35650,10 +35650,10 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35677,7 +35677,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -35690,7 +35690,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35711,7 +35711,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35756,13 +35756,13 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 16316664 dashdot { dd: 1.8 @@ -35782,19 +35782,19 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -35814,19 +35814,19 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -35846,22 +35846,22 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35878,22 +35878,22 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 @@ -35917,7 +35917,7 @@ cont { color: 16316664 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 330 join: BEVELJOIN @@ -35930,7 +35930,7 @@ cont { width: 1.3 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35951,7 +35951,7 @@ cont { width: 1.6 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 330 @@ -35990,7 +35990,7 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 16316664 dashdot { dd: 1.8 @@ -36010,7 +36010,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 16316664 dashdot { dd: 2.5 @@ -36019,17 +36019,17 @@ cont { priority: 330 } lines { - width: 7 + width: 7.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36046,7 +36046,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 16316664 dashdot { dd: 3.2 @@ -36055,17 +36055,17 @@ cont { priority: 330 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36082,26 +36082,26 @@ cont { element { scale: 19 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36118,26 +36118,26 @@ cont { element { scale: 20 lines { - width: 10 + width: 10.0 color: 16316664 dashdot { - dd: 4 + dd: 4.0 dd: 3.5 } priority: 330 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -36254,7 +36254,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -36494,13 +36494,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -36758,17 +36758,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -36793,8 +36793,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -36825,8 +36825,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -36857,8 +36857,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -36889,8 +36889,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -37033,7 +37033,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -37074,7 +37074,7 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -37196,8 +37196,8 @@ cont { width: 5.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37214,8 +37214,8 @@ cont { width: 6.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37232,8 +37232,8 @@ cont { width: 8.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37258,8 +37258,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37284,8 +37284,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 221 cap: BUTTCAP @@ -37313,7 +37313,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37327,7 +37327,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37341,8 +37341,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37359,11 +37359,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37383,7 +37383,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37404,7 +37404,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37421,11 +37421,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37441,11 +37441,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37461,11 +37461,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37481,11 +37481,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37507,7 +37507,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37521,7 +37521,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37535,8 +37535,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37553,11 +37553,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37577,7 +37577,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37598,7 +37598,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37615,11 +37615,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37635,11 +37635,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37655,11 +37655,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37675,11 +37675,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37701,7 +37701,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37715,7 +37715,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37729,8 +37729,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37747,11 +37747,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -37768,7 +37768,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -37777,7 +37777,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37804,7 +37804,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -37821,23 +37821,23 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37853,23 +37853,23 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37885,23 +37885,23 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37917,23 +37917,23 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -37955,7 +37955,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37969,7 +37969,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -37983,8 +37983,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38001,11 +38001,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38025,7 +38025,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38046,7 +38046,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38063,11 +38063,11 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38083,11 +38083,11 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38103,11 +38103,11 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38123,11 +38123,11 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } @@ -38149,7 +38149,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38163,7 +38163,7 @@ cont { width: 1.3 color: 1298356016 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 180 @@ -38177,8 +38177,8 @@ cont { width: 1.6 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38195,11 +38195,11 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 6510384 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 180 cap: BUTTCAP @@ -38219,7 +38219,7 @@ cont { width: 2.5 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38240,7 +38240,7 @@ cont { width: 3.2 color: 6510384 dashdot { - dd: 9 + dd: 9.0 dd: 3.5 } priority: 180 @@ -38257,26 +38257,26 @@ cont { element { scale: 17 lines { - width: 4 + width: 4.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 9 + width: 9.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38293,26 +38293,26 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38329,26 +38329,26 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38365,26 +38365,26 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 6510384 dashdot { - dd: 12 - dd: 4 + dd: 12.0 + dd: 4.0 } priority: 180 } lines { - width: 11 + width: 11.0 color: 1307438043 priority: 50 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 40 cap: BUTTCAP @@ -38585,7 +38585,7 @@ cont { element { scale: 16 lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -38629,7 +38629,7 @@ cont { element { scale: 18 lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -38816,7 +38816,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -38921,13 +38921,13 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16742950 priority: 310 } @@ -38955,7 +38955,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -38983,19 +38983,19 @@ cont { element { scale: 18 lines { - width: 26 + width: 26.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16742950 priority: 310 } @@ -39017,13 +39017,13 @@ cont { element { scale: 19 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -39051,13 +39051,13 @@ cont { element { scale: 20 lines { - width: 31 + width: 31.0 color: 1300267136 priority: 140 cap: BUTTCAP } lines { - width: 29 + width: 29.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -39179,8 +39179,8 @@ cont { width: 2.9 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 309 cap: BUTTCAP @@ -39213,8 +39213,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -39246,8 +39246,8 @@ cont { width: 5.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 309 cap: BUTTCAP @@ -39279,8 +39279,8 @@ cont { width: 6.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39309,17 +39309,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16557154 priority: 310 } @@ -39344,8 +39344,8 @@ cont { width: 10.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39373,17 +39373,17 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 16557154 priority: 310 } @@ -39408,8 +39408,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39440,8 +39440,8 @@ cont { width: 15.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 309 cap: BUTTCAP @@ -39496,7 +39496,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -39613,7 +39613,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -39750,7 +39750,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -39821,7 +39821,7 @@ cont { element { scale: 14 lines { - width: 6 + width: 6.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -39856,7 +39856,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -39897,13 +39897,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16746278 priority: 228 } @@ -40088,7 +40088,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 16746278 priority: 228 join: BEVELJOIN @@ -40139,8 +40139,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -40172,8 +40172,8 @@ cont { width: 4.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 227 cap: BUTTCAP @@ -40205,8 +40205,8 @@ cont { width: 5.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40235,17 +40235,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16557154 priority: 228 } @@ -40270,8 +40270,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40302,8 +40302,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40334,8 +40334,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40366,8 +40366,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 227 cap: BUTTCAP @@ -40469,7 +40469,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -40623,7 +40623,7 @@ cont { element { scale: 16 lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -40807,13 +40807,13 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -41015,17 +41015,17 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16777215 priority: 250 } @@ -41044,8 +41044,8 @@ cont { width: 8.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41070,8 +41070,8 @@ cont { width: 11.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41096,8 +41096,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -41122,8 +41122,8 @@ cont { width: 13.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP @@ -43499,7 +43499,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1304608947 priority: 360 cap: BUTTCAP @@ -43520,10 +43520,10 @@ cont { width: 4.5 color: 1305069755 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 360 } @@ -43534,10 +43534,10 @@ cont { width: 5.9 color: 1305069755 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 360 } @@ -43548,10 +43548,10 @@ cont { width: 8.5 color: 1305069755 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 360 } @@ -43559,13 +43559,13 @@ cont { element { scale: 19 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -43573,13 +43573,13 @@ cont { element { scale: 20 lines { - width: 11 + width: 11.0 color: 1305069755 dashdot { - dd: 8 - dd: 8 - dd: 3 - dd: 8 + dd: 8.0 + dd: 8.0 + dd: 3.0 + dd: 8.0 } priority: 360 } @@ -45487,8 +45487,8 @@ cont { priority: 330 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -45498,8 +45498,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -45509,8 +45509,8 @@ cont { priority: 330 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -45520,8 +45520,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45531,8 +45531,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45542,8 +45542,8 @@ cont { priority: 330 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -45708,7 +45708,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45723,7 +45723,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45738,7 +45738,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45753,7 +45753,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45768,7 +45768,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 } @@ -45820,7 +45820,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 join: BEVELJOIN @@ -45837,7 +45837,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -46027,7 +46027,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 2371253590 priority: 60 } @@ -46042,7 +46042,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 2371253590 priority: 60 } @@ -46057,7 +46057,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 2371253590 priority: 60 } @@ -46135,7 +46135,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -46151,7 +46151,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 2370396489 priority: 60 cap: BUTTCAP @@ -54575,7 +54575,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 869387687 priority: 160 } @@ -54592,7 +54592,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 869387687 priority: 160 } @@ -54609,7 +54609,7 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 869387687 priority: 160 } @@ -54626,7 +54626,7 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 869387687 priority: 160 } @@ -54850,7 +54850,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1306780114 priority: 30 cap: BUTTCAP @@ -54863,7 +54863,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1306780114 priority: 30 } @@ -54894,7 +54894,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1306780114 priority: 30 } @@ -54913,7 +54913,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -54932,7 +54932,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -55140,7 +55140,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1724896680 priority: 80 cap: BUTTCAP @@ -55157,7 +55157,7 @@ cont { element { scale: 17 lines { - width: 6 + width: 6.0 color: 1724896680 priority: 80 } @@ -55165,7 +55165,7 @@ cont { element { scale: 18 lines { - width: 8 + width: 8.0 color: 1724896680 priority: 80 } @@ -55173,7 +55173,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1724896680 priority: 80 } @@ -55181,7 +55181,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1724896680 priority: 80 } @@ -55195,9 +55195,9 @@ cont { width: 3.5 color: 1304608947 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 100 @@ -55206,13 +55206,13 @@ cont { element { scale: 17 lines { - width: 5 + width: 5.0 color: 1304608947 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 100 } @@ -55220,13 +55220,13 @@ cont { element { scale: 18 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55234,13 +55234,13 @@ cont { element { scale: 19 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55248,13 +55248,13 @@ cont { element { scale: 20 lines { - width: 7 + width: 7.0 color: 1304608947 dashdot { - dd: 8 - dd: 4 - dd: 4 - dd: 3 + dd: 8.0 + dd: 4.0 + dd: 4.0 + dd: 3.0 } priority: 100 } @@ -55556,7 +55556,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1306780114 priority: 30 cap: BUTTCAP @@ -55569,7 +55569,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1306780114 priority: 30 } @@ -55600,7 +55600,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 1306780114 priority: 30 } @@ -55619,7 +55619,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -55638,7 +55638,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 1306780114 priority: 30 } @@ -57767,7 +57767,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 2156681254 dashdot { dd: 1.4 @@ -57781,7 +57781,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 2156681254 dashdot { dd: 1.4 @@ -57794,7 +57794,7 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1720473638 dashdot { dd: 1.5 @@ -57810,7 +57810,7 @@ cont { width: 6.2 color: 1720473638 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -57826,8 +57826,8 @@ cont { color: 1301043238 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -57839,9 +57839,9 @@ cont { width: 9.5 color: 864835622 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -57853,9 +57853,9 @@ cont { width: 11.9 color: 864835622 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -57867,9 +57867,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -57881,9 +57881,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -58230,7 +58230,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 2156681254 dashdot { dd: 1.4 @@ -58244,7 +58244,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 2156681254 dashdot { dd: 1.4 @@ -58257,7 +58257,7 @@ cont { element { scale: 14 lines { - width: 3 + width: 3.0 color: 1720473638 dashdot { dd: 1.5 @@ -58273,7 +58273,7 @@ cont { width: 6.2 color: 1720473638 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -58289,8 +58289,8 @@ cont { color: 1301043238 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 100 @@ -58302,9 +58302,9 @@ cont { width: 9.5 color: 864835622 dashdot { - dd: 4 - dd: 6 - dd: 8 + dd: 4.0 + dd: 6.0 + dd: 8.0 dd: 1.5 } priority: 100 @@ -58316,9 +58316,9 @@ cont { width: 11.9 color: 864835622 dashdot { - dd: 5 - dd: 7 - dd: 10 + dd: 5.0 + dd: 7.0 + dd: 10.0 dd: 1.9 } priority: 100 @@ -58330,9 +58330,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -58344,9 +58344,9 @@ cont { width: 14.3 color: 864835622 dashdot { - dd: 6 + dd: 6.0 dd: 8.5 - dd: 12 + dd: 12.0 dd: 2.3 } priority: 100 @@ -59972,7 +59972,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1295429823 priority: -990 join: BEVELJOIN @@ -59982,7 +59982,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 1295429823 priority: -990 join: BEVELJOIN @@ -64641,7 +64641,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2579790591 priority: 120 join: BEVELJOIN @@ -64769,7 +64769,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2567571981 priority: 120 join: BEVELJOIN @@ -65015,7 +65015,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2567645179 priority: 120 join: BEVELJOIN @@ -65202,7 +65202,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2569143845 priority: 120 join: BEVELJOIN @@ -65389,7 +65389,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2582553856 priority: 120 join: BEVELJOIN @@ -65517,7 +65517,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2583432731 priority: 120 join: BEVELJOIN @@ -65704,7 +65704,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2573200174 priority: 120 join: BEVELJOIN @@ -65895,7 +65895,7 @@ cont { color: 1304722175 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 120 join: BEVELJOIN @@ -65908,7 +65908,7 @@ cont { width: 1.3 color: 1304722175 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -65929,7 +65929,7 @@ cont { width: 1.6 color: 1304722175 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 120 @@ -65947,10 +65947,10 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1304722175 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 120 @@ -65971,7 +65971,7 @@ cont { width: 2.6 color: 1304722175 dashdot { - dd: 6 + dd: 6.0 dd: 3.5 } priority: 120 @@ -65991,7 +65991,7 @@ cont { width: 3.3 color: 1304722175 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66008,10 +66008,10 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1304722175 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66028,10 +66028,10 @@ cont { element { scale: 19 lines { - width: 4 + width: 4.0 color: 1304722175 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66048,10 +66048,10 @@ cont { element { scale: 20 lines { - width: 4 + width: 4.0 color: 1304722175 dashdot { - dd: 8 + dd: 8.0 dd: 4.5 } priority: 120 @@ -66081,7 +66081,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1304722175 priority: 120 cap: BUTTCAP @@ -66225,7 +66225,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1304722175 priority: 120 cap: BUTTCAP @@ -66359,7 +66359,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2579790591 priority: 120 join: BEVELJOIN @@ -72809,17 +72809,17 @@ cont { element { scale: 15 lines { - width: 4 + width: 4.0 color: 2157352326 dashdot { - dd: 1 - dd: 50 + dd: 1.0 + dd: 50.0 } priority: 340 cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 2157352326 priority: 350 cap: BUTTCAP @@ -72828,16 +72828,16 @@ cont { element { scale: 16 lines { - width: 4 + width: 4.0 color: 2157352326 dashdot { - dd: 1 - dd: 50 + dd: 1.0 + dd: 50.0 } priority: 340 } lines { - width: 1 + width: 1.0 color: 2157352326 priority: 350 } @@ -72848,8 +72848,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -72865,8 +72865,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -72882,8 +72882,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -72899,8 +72899,8 @@ cont { width: 4.5 color: 1721144710 dashdot { - dd: 1 - dd: 80 + dd: 1.0 + dd: 80.0 } priority: 340 } @@ -73437,8 +73437,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73449,8 +73449,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73461,8 +73461,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73473,8 +73473,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73485,8 +73485,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73551,8 +73551,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73566,7 +73566,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -73575,8 +73575,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73599,8 +73599,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73623,8 +73623,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73647,8 +73647,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73701,8 +73701,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73713,8 +73713,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73725,8 +73725,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73737,8 +73737,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73749,8 +73749,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -73761,7 +73761,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73774,7 +73774,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73787,7 +73787,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73804,7 +73804,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73816,7 +73816,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73828,7 +73828,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73840,7 +73840,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73852,7 +73852,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73863,7 +73863,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73876,7 +73876,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73889,7 +73889,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 8487025 dashdot { dd: 1.8 @@ -73906,7 +73906,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73918,7 +73918,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73930,7 +73930,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73942,7 +73942,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73954,7 +73954,7 @@ cont { color: 8487025 dashdot { dd: 2.5 - dd: 7 + dd: 7.0 } priority: 160 } @@ -73975,7 +73975,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73984,7 +73984,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -73993,7 +73993,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74002,7 +74002,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 } @@ -74010,7 +74010,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74018,7 +74018,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74026,7 +74026,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74034,7 +74034,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74055,7 +74055,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74064,7 +74064,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74073,7 +74073,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74082,7 +74082,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 } @@ -74090,7 +74090,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74098,7 +74098,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74106,7 +74106,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74114,7 +74114,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74135,7 +74135,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74144,7 +74144,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74153,7 +74153,7 @@ cont { element { scale: 15 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 cap: BUTTCAP @@ -74162,7 +74162,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1300332657 priority: 320 } @@ -74170,7 +74170,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74178,7 +74178,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74186,7 +74186,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74194,7 +74194,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 8487025 priority: 320 } @@ -74440,7 +74440,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74475,7 +74475,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 6.3 @@ -74492,7 +74492,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74509,7 +74509,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74526,7 +74526,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74546,7 +74546,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 871230427 priority: 50 cap: BUTTCAP @@ -74567,7 +74567,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -74591,7 +74591,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 40 cap: BUTTCAP @@ -74620,7 +74620,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 40 cap: BUTTCAP @@ -74632,7 +74632,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 6.3 @@ -74655,13 +74655,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74684,13 +74684,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74713,13 +74713,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 50 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -74739,7 +74739,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74765,7 +74765,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74773,7 +74773,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74781,7 +74781,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74789,7 +74789,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74800,7 +74800,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74826,7 +74826,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74834,7 +74834,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74842,7 +74842,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74850,7 +74850,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74861,7 +74861,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 320 cap: BUTTCAP @@ -74887,7 +74887,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74895,7 +74895,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74903,7 +74903,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74911,7 +74911,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74939,7 +74939,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74947,7 +74947,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74955,7 +74955,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74963,7 +74963,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74991,7 +74991,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -74999,7 +74999,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75007,7 +75007,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75015,7 +75015,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75043,7 +75043,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75051,7 +75051,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75059,7 +75059,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75067,7 +75067,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 8487025 priority: 320 } @@ -75193,8 +75193,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75205,8 +75205,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75217,8 +75217,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75229,8 +75229,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75241,8 +75241,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75313,8 +75313,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75328,7 +75328,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -75337,8 +75337,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75361,8 +75361,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75385,8 +75385,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75409,8 +75409,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75463,8 +75463,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75475,8 +75475,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75487,8 +75487,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75499,8 +75499,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75511,8 +75511,8 @@ cont { width: 2.2 color: 8487025 dashdot { - dd: 8 - dd: 8 + dd: 8.0 + dd: 8.0 } priority: 160 } @@ -75523,7 +75523,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 210 join: BEVELJOIN @@ -75562,7 +75562,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 8487025 priority: 210 cap: BUTTCAP @@ -75616,7 +75616,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -75633,7 +75633,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -75650,7 +75650,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -75667,7 +75667,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -75678,7 +75678,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -75717,7 +75717,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -75771,7 +75771,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -75788,7 +75788,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -75805,7 +75805,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -75822,7 +75822,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -75833,7 +75833,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -75884,7 +75884,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -75918,7 +75918,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -75968,7 +75968,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -75997,7 +75997,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76026,7 +76026,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76055,7 +76055,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76066,7 +76066,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -76105,17 +76105,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -76137,8 +76137,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -76165,8 +76165,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -76189,17 +76189,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76216,17 +76216,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76243,17 +76243,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76270,17 +76270,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76291,7 +76291,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 210 join: BEVELJOIN @@ -76342,7 +76342,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 210 cap: BUTTCAP @@ -76376,7 +76376,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -76426,7 +76426,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -76455,7 +76455,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -76484,7 +76484,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -76513,7 +76513,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -76554,7 +76554,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -76575,8 +76575,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -76594,8 +76594,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -76611,13 +76611,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76628,13 +76628,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76645,13 +76645,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76662,13 +76662,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76715,7 +76715,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -76724,7 +76724,7 @@ cont { element { scale: 14 lines { - width: 7 + width: 7.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -76748,8 +76748,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -76764,7 +76764,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -76779,8 +76779,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -76808,13 +76808,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76837,13 +76837,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76866,13 +76866,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76895,13 +76895,13 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -76942,7 +76942,7 @@ cont { element { scale: 13 lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -76954,8 +76954,8 @@ cont { width: 4.3 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -76973,8 +76973,8 @@ cont { width: 1.2 color: 16119285 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 290 cap: BUTTCAP @@ -76983,8 +76983,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77002,8 +77002,8 @@ cont { width: 1.8 color: 16119285 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 290 } @@ -77011,8 +77011,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77029,23 +77029,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77056,23 +77056,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77083,23 +77083,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77110,23 +77110,23 @@ cont { width: 2.8 color: 16119285 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77137,7 +77137,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -77176,7 +77176,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -77230,7 +77230,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77247,7 +77247,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77264,7 +77264,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77281,7 +77281,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77292,7 +77292,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -77343,7 +77343,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -77377,7 +77377,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -77427,7 +77427,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77456,7 +77456,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77485,7 +77485,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77514,7 +77514,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77525,7 +77525,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 280 join: BEVELJOIN @@ -77564,17 +77564,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 280 cap: BUTTCAP @@ -77596,8 +77596,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77624,8 +77624,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -77648,17 +77648,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77675,17 +77675,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77702,17 +77702,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77729,17 +77729,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 280 } @@ -77785,7 +77785,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77802,7 +77802,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77819,7 +77819,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77836,7 +77836,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77862,7 +77862,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -77912,7 +77912,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77941,7 +77941,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77970,7 +77970,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -77999,7 +77999,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78013,8 +78013,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78041,8 +78041,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78065,17 +78065,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78092,17 +78092,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78119,17 +78119,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78146,17 +78146,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78211,7 +78211,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78228,7 +78228,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78245,7 +78245,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78262,7 +78262,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78303,7 +78303,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -78353,7 +78353,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78382,7 +78382,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78411,7 +78411,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78440,7 +78440,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78454,8 +78454,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78473,8 +78473,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78501,8 +78501,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -78525,17 +78525,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78552,17 +78552,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78579,17 +78579,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78606,17 +78606,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -78627,7 +78627,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 10255717 priority: 280 join: BEVELJOIN @@ -78666,7 +78666,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 10255717 priority: 280 cap: BUTTCAP @@ -78744,7 +78744,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -78769,7 +78769,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -78794,7 +78794,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -78819,7 +78819,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -78838,7 +78838,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 10255717 priority: 280 join: BEVELJOIN @@ -78889,7 +78889,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 10255717 priority: 280 cap: BUTTCAP @@ -78939,7 +78939,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -78997,7 +78997,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79034,7 +79034,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79071,7 +79071,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79108,7 +79108,7 @@ cont { priority: 290 } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79127,7 +79127,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 10255717 priority: 280 join: BEVELJOIN @@ -79166,17 +79166,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 10255717 priority: 280 cap: BUTTCAP @@ -79206,8 +79206,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -79242,8 +79242,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP @@ -79274,17 +79274,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79309,17 +79309,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79344,17 +79344,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79379,17 +79379,17 @@ cont { priority: 290 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 279 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 10255717 priority: 280 } @@ -79408,7 +79408,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 8487025 priority: 210 join: BEVELJOIN @@ -79447,17 +79447,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 8487025 priority: 210 cap: BUTTCAP @@ -79479,8 +79479,8 @@ cont { width: 4.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -79507,8 +79507,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -79531,17 +79531,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -79558,17 +79558,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -79585,17 +79585,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -79612,17 +79612,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 7763302 priority: 210 } @@ -79633,7 +79633,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 11710882 priority: 210 join: BEVELJOIN @@ -79696,7 +79696,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79713,7 +79713,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79730,7 +79730,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79747,7 +79747,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79758,7 +79758,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 11710882 priority: 210 join: BEVELJOIN @@ -79813,7 +79813,7 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -79863,7 +79863,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79892,7 +79892,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79921,7 +79921,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79950,7 +79950,7 @@ cont { priority: 220 } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -79961,7 +79961,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 11710882 priority: 210 join: BEVELJOIN @@ -79983,8 +79983,8 @@ cont { width: 3.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80002,8 +80002,8 @@ cont { width: 3.7 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80030,8 +80030,8 @@ cont { width: 5.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -80054,17 +80054,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -80081,17 +80081,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -80108,17 +80108,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -80135,17 +80135,17 @@ cont { priority: 220 } lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 8487025 priority: 210 } @@ -101256,7 +101256,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -101291,7 +101291,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 6.3 @@ -101308,7 +101308,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -101325,7 +101325,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -101342,7 +101342,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -101362,7 +101362,7 @@ cont { element { scale: 13 lines { - width: 4 + width: 4.0 color: 871230427 priority: 150 cap: BUTTCAP @@ -101383,7 +101383,7 @@ cont { cap: BUTTCAP } lines { - width: 1 + width: 1.0 color: 1303556514 priority: 210 cap: BUTTCAP @@ -101407,7 +101407,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -101436,7 +101436,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 140 cap: BUTTCAP @@ -101448,7 +101448,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 6.3 @@ -101471,13 +101471,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -101500,13 +101500,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -101529,13 +101529,13 @@ cont { cap: BUTTCAP } lines { - width: 11 + width: 11.0 color: 871230427 priority: 150 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 16119285 dashdot { dd: 8.1 @@ -113633,7 +113633,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113641,7 +113641,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113649,7 +113649,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113657,7 +113657,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113703,7 +113703,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113711,7 +113711,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113719,7 +113719,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113727,7 +113727,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113773,7 +113773,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113781,7 +113781,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113789,7 +113789,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113797,7 +113797,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 8026746 priority: 320 } @@ -113928,7 +113928,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -113942,7 +113942,7 @@ cont { element { scale: 8 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -113956,7 +113956,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -113970,7 +113970,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -113991,7 +113991,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114012,7 +114012,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114033,7 +114033,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114053,7 +114053,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114073,7 +114073,7 @@ cont { element { scale: 15 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114093,7 +114093,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114112,7 +114112,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114131,7 +114131,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114150,7 +114150,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -114169,7 +114169,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1715771835 dashdot { dd: 5.4 @@ -129313,7 +129313,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2151067839 priority: -990 join: BEVELJOIN @@ -129470,7 +129470,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2160246963 priority: 30 cap: BUTTCAP @@ -129490,14 +129490,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2160246963 priority: 30 } area { color: 13224123 border { - width: 1 + width: 1.0 color: 10592406 } priority: 30 @@ -129520,7 +129520,7 @@ cont { area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -129536,14 +129536,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -129559,14 +129559,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -129582,14 +129582,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 30 } area { color: 12763315 border { - width: 1 + width: 1.0 color: 10197647 } priority: 30 @@ -129647,7 +129647,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129659,7 +129659,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129671,7 +129671,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129683,7 +129683,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129695,7 +129695,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129892,7 +129892,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129904,7 +129904,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129916,7 +129916,7 @@ cont { element { scale: 18 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129928,7 +129928,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -129940,7 +129940,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 10340289 dashdot { dd: 2.7 @@ -130137,7 +130137,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1295429823 priority: -990 join: BEVELJOIN @@ -130155,7 +130155,7 @@ cont { element { scale: 12 lines { - width: 2 + width: 2.0 color: 1295429823 priority: -990 join: BEVELJOIN @@ -130307,7 +130307,7 @@ cont { element { scale: 12 lines { - width: 1 + width: 1.0 color: 2151067839 priority: -990 join: BEVELJOIN @@ -130451,7 +130451,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1295429823 dashdot { dd: 2.7 @@ -130493,11 +130493,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 cap: BUTTCAP @@ -130514,11 +130514,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130534,11 +130534,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130554,11 +130554,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130574,11 +130574,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130594,11 +130594,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130617,7 +130617,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 1295429823 dashdot { dd: 2.7 @@ -130659,11 +130659,11 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 cap: BUTTCAP @@ -130680,11 +130680,11 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130700,11 +130700,11 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130720,11 +130720,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130740,11 +130740,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130760,11 +130760,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 3584191 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: -990 } @@ -130965,7 +130965,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2160246963 priority: 330 cap: BUTTCAP @@ -130981,7 +130981,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2160246963 priority: 330 } @@ -131011,7 +131011,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2160246963 priority: 330 } @@ -131026,7 +131026,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 330 } @@ -131041,7 +131041,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2160246963 priority: 330 } diff --git a/data/drules_proto_vehicle_dark.txt b/data/drules_proto_vehicle_dark.txt index fbdebdda15..9536a9275d 100644 --- a/data/drules_proto_vehicle_dark.txt +++ b/data/drules_proto_vehicle_dark.txt @@ -550,7 +550,7 @@ cont { area { color: 857282841 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -561,7 +561,7 @@ cont { area { color: 857282841 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -579,7 +579,7 @@ cont { area { color: 1644825 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -597,7 +597,7 @@ cont { area { color: 1644825 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -615,7 +615,7 @@ cont { area { color: 1644825 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -633,7 +633,7 @@ cont { area { color: 1644825 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -651,7 +651,7 @@ cont { area { color: 1644825 border { - width: 1 + width: 1.0 color: 1842204 } priority: -1890 @@ -5850,7 +5850,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1293753629 priority: 260 cap: BUTTCAP @@ -5870,10 +5870,10 @@ cont { width: 4.5 color: 1293490457 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 260 } @@ -5884,10 +5884,10 @@ cont { width: 5.9 color: 1293490457 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 260 } @@ -5898,10 +5898,10 @@ cont { width: 8.5 color: 1293490457 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 260 } @@ -5912,10 +5912,10 @@ cont { width: 8.5 color: 1293490457 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 260 } @@ -5977,7 +5977,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2151957572 priority: 260 } @@ -6012,7 +6012,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 3004447764 priority: 260 } @@ -6020,7 +6020,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 2568240148 priority: 260 } @@ -6028,7 +6028,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 2568240148 priority: 260 } @@ -6133,7 +6133,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 80 } @@ -6144,9 +6144,9 @@ cont { width: 3.2 color: 1715749956 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6158,9 +6158,9 @@ cont { width: 3.2 color: 1715749956 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6172,9 +6172,9 @@ cont { width: 3.2 color: 1715749956 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6324,7 +6324,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2151957572 priority: 260 } @@ -6409,7 +6409,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1296845900 priority: 70 join: BEVELJOIN @@ -6612,7 +6612,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1297898588 dashdot { dd: 1.8 @@ -8136,7 +8136,7 @@ cont { area { color: 1511594265 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8147,7 +8147,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8158,7 +8158,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8169,7 +8169,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8192,7 +8192,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8215,7 +8215,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8289,7 +8289,7 @@ cont { area { color: 1511594265 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8300,7 +8300,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8311,7 +8311,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8322,7 +8322,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8345,7 +8345,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8368,7 +8368,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8394,7 +8394,7 @@ cont { area { color: 1511594265 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8405,7 +8405,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8416,7 +8416,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8427,7 +8427,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8450,7 +8450,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8473,7 +8473,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8499,7 +8499,7 @@ cont { area { color: 1511594265 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8510,7 +8510,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8521,7 +8521,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8532,7 +8532,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8555,7 +8555,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8578,7 +8578,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 50 @@ -8604,7 +8604,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 90 @@ -8615,7 +8615,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 90 @@ -8626,7 +8626,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 90 @@ -8637,7 +8637,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 90 @@ -8648,7 +8648,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 90 @@ -8978,7 +8978,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1295200045 dashdot { dd: 7.2 @@ -8994,7 +8994,7 @@ cont { width: 2.6 color: 1295200045 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 120 @@ -9003,7 +9003,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1295200045 dashdot { dd: 10.8 @@ -9015,7 +9015,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1295200045 dashdot { dd: 13.5 @@ -9027,10 +9027,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 1295200045 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 120 @@ -9039,10 +9039,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 1295200045 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 120 @@ -9054,7 +9054,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9062,7 +9062,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9070,7 +9070,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9081,7 +9081,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9089,7 +9089,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9097,7 +9097,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9108,7 +9108,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9116,7 +9116,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9124,7 +9124,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9135,7 +9135,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9143,7 +9143,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9151,7 +9151,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9162,7 +9162,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9170,7 +9170,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9178,7 +9178,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9189,7 +9189,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9197,7 +9197,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9205,7 +9205,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1718500679 priority: 130 } @@ -9219,8 +9219,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9231,8 +9231,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9243,8 +9243,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9258,8 +9258,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9270,8 +9270,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9282,8 +9282,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9297,8 +9297,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9309,8 +9309,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9321,8 +9321,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9336,8 +9336,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9348,8 +9348,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9360,8 +9360,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9375,8 +9375,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9387,8 +9387,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9399,8 +9399,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9414,8 +9414,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9426,8 +9426,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9566,7 +9566,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 170 } @@ -9582,7 +9582,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 170 } @@ -9598,7 +9598,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -9614,7 +9614,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -9702,7 +9702,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 170 } @@ -9718,7 +9718,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 170 } @@ -9734,7 +9734,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -9750,7 +9750,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -9825,8 +9825,8 @@ cont { width: 7.1 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP @@ -9848,17 +9848,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 858466343 priority: 170 } @@ -9874,17 +9874,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858466343 priority: 170 } @@ -9900,17 +9900,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 170 } @@ -9926,17 +9926,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 170 } @@ -10135,7 +10135,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4991513 priority: 250 cap: BUTTCAP @@ -10166,7 +10166,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 4991513 priority: 250 } @@ -10196,7 +10196,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 4991513 priority: 250 } @@ -10226,7 +10226,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 4991513 priority: 250 } @@ -10250,13 +10250,13 @@ cont { element { scale: 19 lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -10280,13 +10280,13 @@ cont { element { scale: 20 lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -10431,7 +10431,7 @@ cont { element { scale: 13 lines { - width: 10 + width: 10.0 color: 1292700941 priority: 100 cap: BUTTCAP @@ -10517,7 +10517,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -10529,7 +10529,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4991513 priority: 250 cap: BUTTCAP @@ -10560,7 +10560,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -10572,7 +10572,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 4991513 priority: 250 } @@ -10614,7 +10614,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 4991513 priority: 250 } @@ -10638,13 +10638,13 @@ cont { element { scale: 18 lines { - width: 54 + width: 54.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 52 + width: 52.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -10656,7 +10656,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 4991513 priority: 250 } @@ -10680,25 +10680,25 @@ cont { element { scale: 19 lines { - width: 72 + width: 72.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 856822290 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -10722,25 +10722,25 @@ cont { element { scale: 20 lines { - width: 72 + width: 72.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 856822290 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -10862,8 +10862,8 @@ cont { width: 4.7 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 249 cap: BUTTCAP @@ -10898,8 +10898,8 @@ cont { width: 6.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -10933,8 +10933,8 @@ cont { width: 6.5 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -10965,17 +10965,17 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 859315988 priority: 250 cap: BUTTCAP @@ -11000,17 +11000,17 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 859315988 priority: 250 } @@ -11034,17 +11034,17 @@ cont { element { scale: 17 lines { - width: 17 + width: 17.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 859315988 priority: 250 } @@ -11068,17 +11068,17 @@ cont { element { scale: 18 lines { - width: 27 + width: 27.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 859315988 priority: 250 } @@ -11102,17 +11102,17 @@ cont { element { scale: 19 lines { - width: 36 + width: 36.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 859315988 priority: 250 } @@ -11136,17 +11136,17 @@ cont { element { scale: 20 lines { - width: 36 + width: 36.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 859315988 priority: 250 } @@ -11262,7 +11262,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -11376,7 +11376,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4991513 priority: 168 cap: BUTTCAP @@ -11431,13 +11431,13 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1292700941 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1296837145 priority: 168 } @@ -11467,7 +11467,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1296837145 priority: 168 } @@ -11497,7 +11497,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -11527,7 +11527,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -11580,7 +11580,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -11706,7 +11706,7 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -11718,7 +11718,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4991513 priority: 168 cap: BUTTCAP @@ -11797,13 +11797,13 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 1292700941 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1296837145 priority: 168 } @@ -11827,13 +11827,13 @@ cont { element { scale: 18 lines { - width: 40 + width: 40.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 38 + width: 38.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -11845,7 +11845,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1296837145 priority: 168 } @@ -11869,13 +11869,13 @@ cont { element { scale: 19 lines { - width: 52 + width: 52.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -11887,7 +11887,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -11911,13 +11911,13 @@ cont { element { scale: 20 lines { - width: 52 + width: 52.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -11929,7 +11929,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -11982,7 +11982,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -12037,8 +12037,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -12072,8 +12072,8 @@ cont { width: 4.97 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -12104,17 +12104,17 @@ cont { element { scale: 15 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 859315988 priority: 168 cap: BUTTCAP @@ -12142,8 +12142,8 @@ cont { width: 9.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP @@ -12173,17 +12173,17 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 859315988 priority: 168 } @@ -12207,17 +12207,17 @@ cont { element { scale: 18 lines { - width: 20 + width: 20.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 859315988 priority: 168 } @@ -12241,17 +12241,17 @@ cont { element { scale: 19 lines { - width: 26 + width: 26.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 859315988 priority: 168 } @@ -12275,17 +12275,17 @@ cont { element { scale: 20 lines { - width: 26 + width: 26.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 859315988 priority: 168 } @@ -12316,7 +12316,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12328,7 +12328,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12339,7 +12339,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12351,7 +12351,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12367,7 +12367,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12379,7 +12379,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12390,7 +12390,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12402,7 +12402,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12418,7 +12418,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12430,7 +12430,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12441,7 +12441,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12453,7 +12453,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12469,7 +12469,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12481,7 +12481,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12492,7 +12492,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12504,7 +12504,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12520,7 +12520,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12532,7 +12532,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12543,7 +12543,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12555,7 +12555,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12571,7 +12571,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12583,7 +12583,7 @@ cont { color: 1720994322 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12594,7 +12594,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12606,7 +12606,7 @@ cont { width: 1.5 color: 1720994322 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12618,11 +12618,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12630,11 +12630,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12642,11 +12642,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12657,11 +12657,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12669,11 +12669,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12681,11 +12681,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12696,11 +12696,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12708,11 +12708,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12720,11 +12720,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1296910148 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12833,7 +12833,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 230 cap: BUTTCAP @@ -12956,7 +12956,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 6173981 priority: 230 } @@ -12986,7 +12986,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 6173981 priority: 230 } @@ -13016,7 +13016,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 230 } @@ -13046,7 +13046,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 230 } @@ -13171,7 +13171,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 230 cap: BUTTCAP @@ -13202,7 +13202,7 @@ cont { cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -13288,7 +13288,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -13342,7 +13342,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 6173981 priority: 230 } @@ -13366,13 +13366,13 @@ cont { element { scale: 18 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -13384,7 +13384,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 6173981 priority: 230 } @@ -13408,13 +13408,13 @@ cont { element { scale: 19 lines { - width: 58 + width: 58.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -13426,7 +13426,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 230 } @@ -13450,13 +13450,13 @@ cont { element { scale: 20 lines { - width: 58 + width: 58.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -13468,7 +13468,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 230 } @@ -13593,7 +13593,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 230 cap: BUTTCAP @@ -13621,8 +13621,8 @@ cont { width: 5.1 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 229 cap: BUTTCAP @@ -13656,8 +13656,8 @@ cont { width: 6.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -13691,8 +13691,8 @@ cont { width: 8.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -13722,17 +13722,17 @@ cont { element { scale: 17 lines { - width: 15 + width: 15.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 860629531 priority: 230 } @@ -13756,17 +13756,17 @@ cont { element { scale: 18 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 860629531 priority: 230 } @@ -13790,17 +13790,17 @@ cont { element { scale: 19 lines { - width: 29 + width: 29.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 860629531 priority: 230 } @@ -13824,17 +13824,17 @@ cont { element { scale: 20 lines { - width: 29 + width: 29.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 860629531 priority: 230 } @@ -13913,7 +13913,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 166 cap: BUTTCAP @@ -14036,7 +14036,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 6173981 priority: 166 } @@ -14066,7 +14066,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 6173981 priority: 166 } @@ -14096,7 +14096,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 166 } @@ -14126,7 +14126,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 166 } @@ -14205,7 +14205,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 166 cap: BUTTCAP @@ -14236,7 +14236,7 @@ cont { cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -14322,7 +14322,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -14376,7 +14376,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 6173981 priority: 166 } @@ -14400,13 +14400,13 @@ cont { element { scale: 18 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -14418,7 +14418,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 6173981 priority: 166 } @@ -14442,13 +14442,13 @@ cont { element { scale: 19 lines { - width: 58 + width: 58.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -14460,7 +14460,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 166 } @@ -14484,13 +14484,13 @@ cont { element { scale: 20 lines { - width: 58 + width: 58.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -14502,7 +14502,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 6173981 priority: 166 } @@ -14581,7 +14581,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1298019613 priority: 166 cap: BUTTCAP @@ -14609,8 +14609,8 @@ cont { width: 5.1 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 165 cap: BUTTCAP @@ -14644,8 +14644,8 @@ cont { width: 6.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP @@ -14679,8 +14679,8 @@ cont { width: 8.5 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP @@ -14710,17 +14710,17 @@ cont { element { scale: 17 lines { - width: 15 + width: 15.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 860629531 priority: 166 } @@ -14744,17 +14744,17 @@ cont { element { scale: 18 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 860629531 priority: 166 } @@ -14778,17 +14778,17 @@ cont { element { scale: 19 lines { - width: 29 + width: 29.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 860629531 priority: 166 } @@ -14812,17 +14812,17 @@ cont { element { scale: 20 lines { - width: 29 + width: 29.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 860629531 priority: 166 } @@ -14968,7 +14968,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 3552308 priority: 170 } @@ -14998,7 +14998,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 3552308 priority: 170 } @@ -15022,13 +15022,13 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15052,13 +15052,13 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15204,7 +15204,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 3552308 priority: 170 } @@ -15234,7 +15234,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 3552308 priority: 170 } @@ -15258,13 +15258,13 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15288,13 +15288,13 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15385,7 +15385,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 855309 priority: 100 cap: BUTTCAP @@ -15428,7 +15428,7 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 855309 priority: 100 cap: BUTTCAP @@ -15488,7 +15488,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 3552308 priority: 170 } @@ -15512,13 +15512,13 @@ cont { element { scale: 18 lines { - width: 28 + width: 28.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 26 + width: 26.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -15530,7 +15530,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 3552308 priority: 170 } @@ -15554,25 +15554,25 @@ cont { element { scale: 19 lines { - width: 38 + width: 38.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15596,25 +15596,25 @@ cont { element { scale: 20 lines { - width: 38 + width: 38.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 19 + width: 19.0 color: 855309 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3552308 priority: 170 } @@ -15727,8 +15727,8 @@ cont { width: 7.1 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP @@ -15758,17 +15758,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 858466343 priority: 170 } @@ -15792,17 +15792,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858466343 priority: 170 } @@ -15826,17 +15826,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 170 } @@ -15860,17 +15860,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 170 } @@ -16082,7 +16082,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 170 } @@ -16098,7 +16098,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 170 } @@ -16114,7 +16114,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16130,7 +16130,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16218,7 +16218,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 170 } @@ -16234,7 +16234,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 170 } @@ -16250,7 +16250,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16266,7 +16266,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16354,7 +16354,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 170 } @@ -16370,7 +16370,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 170 } @@ -16386,7 +16386,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16402,7 +16402,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 170 } @@ -16576,7 +16576,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3881273 priority: 210 } @@ -16636,7 +16636,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 3881273 priority: 210 } @@ -16666,7 +16666,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 210 } @@ -16696,7 +16696,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 210 } @@ -16902,7 +16902,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -16914,7 +16914,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3881273 priority: 210 } @@ -16980,13 +16980,13 @@ cont { element { scale: 18 lines { - width: 34 + width: 34.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 32 + width: 32.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -16998,7 +16998,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 3881273 priority: 210 } @@ -17022,13 +17022,13 @@ cont { element { scale: 19 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17040,7 +17040,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 210 } @@ -17064,13 +17064,13 @@ cont { element { scale: 20 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17082,7 +17082,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 210 } @@ -17258,17 +17258,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858466343 priority: 210 } @@ -17295,8 +17295,8 @@ cont { width: 11.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -17326,17 +17326,17 @@ cont { element { scale: 18 lines { - width: 17 + width: 17.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 858466343 priority: 210 } @@ -17360,17 +17360,17 @@ cont { element { scale: 19 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 858466343 priority: 210 } @@ -17394,17 +17394,17 @@ cont { element { scale: 20 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 858466343 priority: 210 } @@ -17476,7 +17476,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3881273 priority: 164 } @@ -17520,7 +17520,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 3881273 priority: 164 } @@ -17542,7 +17542,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 164 } @@ -17564,7 +17564,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 164 } @@ -17652,7 +17652,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17664,7 +17664,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 3881273 priority: 164 } @@ -17714,13 +17714,13 @@ cont { element { scale: 18 lines { - width: 34 + width: 34.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 32 + width: 32.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17732,7 +17732,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 3881273 priority: 164 } @@ -17748,13 +17748,13 @@ cont { element { scale: 19 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17766,7 +17766,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 164 } @@ -17782,13 +17782,13 @@ cont { element { scale: 20 lines { - width: 48 + width: 48.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -17800,7 +17800,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 3881273 priority: 164 } @@ -17858,17 +17858,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 858466343 priority: 164 } @@ -17887,8 +17887,8 @@ cont { width: 11.6 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP @@ -17910,17 +17910,17 @@ cont { element { scale: 18 lines { - width: 17 + width: 17.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 858466343 priority: 164 } @@ -17936,17 +17936,17 @@ cont { element { scale: 19 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 858466343 priority: 164 } @@ -17962,17 +17962,17 @@ cont { element { scale: 20 lines { - width: 24 + width: 24.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 858466343 priority: 164 } @@ -17991,7 +17991,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295200561 priority: 140 cap: BUTTCAP @@ -18009,7 +18009,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18092,7 +18092,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295200561 priority: 140 cap: BUTTCAP @@ -18110,7 +18110,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18193,7 +18193,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295200561 priority: 140 cap: BUTTCAP @@ -18211,7 +18211,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18303,7 +18303,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18386,7 +18386,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295200561 priority: 140 cap: BUTTCAP @@ -18404,7 +18404,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18487,7 +18487,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1295200561 priority: 140 cap: BUTTCAP @@ -18505,7 +18505,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1295200561 priority: 140 } @@ -18793,8 +18793,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18805,8 +18805,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18817,8 +18817,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18832,8 +18832,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18844,8 +18844,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18856,8 +18856,8 @@ cont { width: 1.5 color: 1294673959 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -19043,7 +19043,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 3552308 priority: 190 } @@ -19073,7 +19073,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 190 } @@ -19103,7 +19103,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 190 } @@ -19305,7 +19305,7 @@ cont { element { scale: 17 lines { - width: 20 + width: 20.0 color: 855309 priority: 100 cap: BUTTCAP @@ -19347,13 +19347,13 @@ cont { element { scale: 18 lines { - width: 32 + width: 32.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 30 + width: 30.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -19365,7 +19365,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 3552308 priority: 190 } @@ -19389,13 +19389,13 @@ cont { element { scale: 19 lines { - width: 44 + width: 44.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -19407,7 +19407,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 190 } @@ -19431,13 +19431,13 @@ cont { element { scale: 20 lines { - width: 44 + width: 44.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -19449,7 +19449,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 190 } @@ -19588,8 +19588,8 @@ cont { width: 7.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -19622,8 +19622,8 @@ cont { width: 10.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -19653,17 +19653,17 @@ cont { element { scale: 18 lines { - width: 16 + width: 16.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 858466343 priority: 190 } @@ -19687,17 +19687,17 @@ cont { element { scale: 19 lines { - width: 22 + width: 22.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 858466343 priority: 190 } @@ -19721,17 +19721,17 @@ cont { element { scale: 20 lines { - width: 22 + width: 22.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 858466343 priority: 190 } @@ -19816,7 +19816,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 3552308 priority: 162 } @@ -19838,7 +19838,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 162 } @@ -19860,7 +19860,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 162 } @@ -19953,7 +19953,7 @@ cont { element { scale: 17 lines { - width: 20 + width: 20.0 color: 855309 priority: 100 cap: BUTTCAP @@ -19979,13 +19979,13 @@ cont { element { scale: 18 lines { - width: 32 + width: 32.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 30 + width: 30.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -19997,7 +19997,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 3552308 priority: 162 } @@ -20013,13 +20013,13 @@ cont { element { scale: 19 lines { - width: 44 + width: 44.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -20031,7 +20031,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 162 } @@ -20047,13 +20047,13 @@ cont { element { scale: 20 lines { - width: 44 + width: 44.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -20065,7 +20065,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 3552308 priority: 162 } @@ -20111,8 +20111,8 @@ cont { width: 7.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP @@ -20129,8 +20129,8 @@ cont { width: 10.4 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP @@ -20144,17 +20144,17 @@ cont { element { scale: 18 lines { - width: 16 + width: 16.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 858466343 priority: 162 } @@ -20170,17 +20170,17 @@ cont { element { scale: 19 lines { - width: 22 + width: 22.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 858466343 priority: 162 } @@ -20196,17 +20196,17 @@ cont { element { scale: 20 lines { - width: 22 + width: 22.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 858466343 priority: 162 } @@ -20228,7 +20228,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20240,7 +20240,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20252,8 +20252,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20264,8 +20264,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20276,8 +20276,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20291,7 +20291,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20303,7 +20303,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20315,8 +20315,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20327,8 +20327,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20339,8 +20339,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20354,7 +20354,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20366,7 +20366,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20378,8 +20378,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20390,8 +20390,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20402,8 +20402,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20417,7 +20417,7 @@ cont { width: 1.1 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20429,7 +20429,7 @@ cont { width: 1.4 color: 1717523245 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20441,8 +20441,8 @@ cont { width: 1.9 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20453,8 +20453,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20465,8 +20465,8 @@ cont { width: 2.5 color: 1717523245 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20674,7 +20674,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4991513 priority: 250 cap: BUTTCAP @@ -20705,7 +20705,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 4991513 priority: 250 } @@ -20735,7 +20735,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 4991513 priority: 250 } @@ -20765,7 +20765,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 4991513 priority: 250 } @@ -20789,13 +20789,13 @@ cont { element { scale: 19 lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -20819,13 +20819,13 @@ cont { element { scale: 20 lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -20970,7 +20970,7 @@ cont { element { scale: 13 lines { - width: 10 + width: 10.0 color: 1292700941 priority: 100 cap: BUTTCAP @@ -21056,7 +21056,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -21068,7 +21068,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 4991513 priority: 250 cap: BUTTCAP @@ -21099,7 +21099,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -21111,7 +21111,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 4991513 priority: 250 } @@ -21153,7 +21153,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 4991513 priority: 250 } @@ -21177,13 +21177,13 @@ cont { element { scale: 18 lines { - width: 54 + width: 54.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 52 + width: 52.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -21195,7 +21195,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 4991513 priority: 250 } @@ -21219,25 +21219,25 @@ cont { element { scale: 19 lines { - width: 72 + width: 72.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 856822290 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -21261,25 +21261,25 @@ cont { element { scale: 20 lines { - width: 72 + width: 72.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 856822290 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1292700941 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 4991513 priority: 250 } @@ -21401,8 +21401,8 @@ cont { width: 4.7 color: 1291845632 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 249 cap: BUTTCAP @@ -21437,8 +21437,8 @@ cont { width: 6.2 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -21472,8 +21472,8 @@ cont { width: 6.5 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -21504,17 +21504,17 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 859315988 priority: 250 cap: BUTTCAP @@ -21539,17 +21539,17 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 859315988 priority: 250 } @@ -21573,17 +21573,17 @@ cont { element { scale: 17 lines { - width: 17 + width: 17.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 859315988 priority: 250 } @@ -21607,17 +21607,17 @@ cont { element { scale: 18 lines { - width: 27 + width: 27.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 859315988 priority: 250 } @@ -21641,17 +21641,17 @@ cont { element { scale: 19 lines { - width: 36 + width: 36.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 859315988 priority: 250 } @@ -21675,17 +21675,17 @@ cont { element { scale: 20 lines { - width: 36 + width: 36.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 859315988 priority: 250 } @@ -21738,7 +21738,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -21852,7 +21852,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4991513 priority: 168 cap: BUTTCAP @@ -21907,13 +21907,13 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1292700941 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1296837145 priority: 168 } @@ -21943,7 +21943,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1296837145 priority: 168 } @@ -21973,7 +21973,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -22003,7 +22003,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -22056,7 +22056,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -22182,7 +22182,7 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -22194,7 +22194,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 4991513 priority: 168 cap: BUTTCAP @@ -22273,13 +22273,13 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 1292700941 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1296837145 priority: 168 } @@ -22303,13 +22303,13 @@ cont { element { scale: 18 lines { - width: 40 + width: 40.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 38 + width: 38.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -22321,7 +22321,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1296837145 priority: 168 } @@ -22345,13 +22345,13 @@ cont { element { scale: 19 lines { - width: 52 + width: 52.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -22363,7 +22363,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -22387,13 +22387,13 @@ cont { element { scale: 20 lines { - width: 52 + width: 52.0 color: 1292700941 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 856822290 priority: 110 cap: BUTTCAP @@ -22405,7 +22405,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1296837145 priority: 168 } @@ -22458,7 +22458,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1296837145 priority: 168 join: BEVELJOIN @@ -22513,8 +22513,8 @@ cont { width: 4.4 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -22548,8 +22548,8 @@ cont { width: 4.97 color: 1291845632 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -22580,17 +22580,17 @@ cont { element { scale: 15 lines { - width: 7 + width: 7.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 859315988 priority: 168 cap: BUTTCAP @@ -22618,8 +22618,8 @@ cont { width: 9.2 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP @@ -22649,17 +22649,17 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 859315988 priority: 168 } @@ -22683,17 +22683,17 @@ cont { element { scale: 18 lines { - width: 20 + width: 20.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 859315988 priority: 168 } @@ -22717,17 +22717,17 @@ cont { element { scale: 19 lines { - width: 26 + width: 26.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 859315988 priority: 168 } @@ -22751,17 +22751,17 @@ cont { element { scale: 20 lines { - width: 26 + width: 26.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 859315988 priority: 168 } @@ -22867,7 +22867,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 190 } @@ -22883,7 +22883,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 190 } @@ -22899,7 +22899,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -22915,7 +22915,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -23013,7 +23013,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 3354929 priority: 190 } @@ -23029,7 +23029,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 3354929 priority: 190 } @@ -23045,7 +23045,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -23061,7 +23061,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -23138,7 +23138,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 855309 priority: 100 cap: BUTTCAP @@ -23167,7 +23167,7 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 855309 priority: 100 cap: BUTTCAP @@ -23207,7 +23207,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 3354929 priority: 190 } @@ -23223,19 +23223,19 @@ cont { element { scale: 18 lines { - width: 28 + width: 28.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 26 + width: 26.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 3354929 priority: 190 } @@ -23251,19 +23251,19 @@ cont { element { scale: 19 lines { - width: 38 + width: 38.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -23279,19 +23279,19 @@ cont { element { scale: 20 lines { - width: 38 + width: 38.0 color: 855309 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 3354929 priority: 190 } @@ -23376,8 +23376,8 @@ cont { width: 7.1 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -23399,17 +23399,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 858466343 priority: 190 } @@ -23425,17 +23425,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 858466343 priority: 190 } @@ -23451,17 +23451,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 190 } @@ -23477,17 +23477,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1291845632 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 858466343 priority: 190 } @@ -23536,7 +23536,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 4991511 priority: 250 join: BEVELJOIN @@ -23579,7 +23579,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 4991511 priority: 250 join: BEVELJOIN @@ -25322,7 +25322,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1293753629 priority: 280 cap: BUTTCAP @@ -25342,10 +25342,10 @@ cont { width: 4.5 color: 1293490457 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 280 } @@ -25356,10 +25356,10 @@ cont { width: 5.9 color: 1293490457 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 280 } @@ -25370,10 +25370,10 @@ cont { width: 8.5 color: 1293490457 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 280 } @@ -25384,10 +25384,10 @@ cont { width: 8.5 color: 1293490457 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 280 } @@ -26756,8 +26756,8 @@ cont { priority: 270 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -26767,8 +26767,8 @@ cont { priority: 270 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -26778,8 +26778,8 @@ cont { priority: 270 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -26789,8 +26789,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -26800,8 +26800,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -26811,8 +26811,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -31943,7 +31943,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2147812613 priority: 20 cap: BUTTCAP @@ -31956,7 +31956,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2147812613 priority: 20 } @@ -31980,7 +31980,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2147812613 priority: 20 } @@ -31992,7 +31992,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2147812613 priority: 20 } @@ -32004,7 +32004,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2147812613 priority: 20 } @@ -32066,7 +32066,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 3003715338 priority: 60 } @@ -32074,7 +32074,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 3003715338 priority: 60 } @@ -32090,7 +32090,7 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 3003715338 priority: 60 } @@ -32098,7 +32098,7 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 3003715338 priority: 60 } @@ -32112,9 +32112,9 @@ cont { width: 3.5 color: 1713184029 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 80 @@ -32123,13 +32123,13 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 1713184029 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -32137,13 +32137,13 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1713184029 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -32151,13 +32151,13 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1713184029 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -32182,7 +32182,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2147812613 priority: 20 cap: BUTTCAP @@ -32195,7 +32195,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2147812613 priority: 20 } @@ -32219,7 +32219,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2147812613 priority: 20 } @@ -32231,7 +32231,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2147812613 priority: 20 } @@ -32243,7 +32243,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2147812613 priority: 20 } @@ -32836,7 +32836,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2575126307 dashdot { dd: 1.4 @@ -32848,7 +32848,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2575126307 dashdot { dd: 1.5 @@ -32863,7 +32863,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -32878,8 +32878,8 @@ cont { color: 2155695907 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -32892,8 +32892,8 @@ cont { color: 2155695907 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -33240,7 +33240,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2575126307 dashdot { dd: 1.4 @@ -33252,7 +33252,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2575126307 dashdot { dd: 1.5 @@ -33267,7 +33267,7 @@ cont { width: 6.2 color: 2575126307 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -33282,8 +33282,8 @@ cont { color: 2155695907 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -33296,8 +33296,8 @@ cont { color: 2155695907 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -43042,7 +43042,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -43066,7 +43066,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -43090,7 +43090,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -43180,7 +43180,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43192,7 +43192,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43204,7 +43204,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43216,7 +43216,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43228,7 +43228,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43243,7 +43243,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43255,7 +43255,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43267,7 +43267,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43279,7 +43279,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43291,7 +43291,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1715089216 dashdot { dd: 1.8 @@ -43578,7 +43578,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43586,7 +43586,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -43595,7 +43595,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43603,7 +43603,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -43612,7 +43612,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43647,7 +43647,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 1184274 priority: 40 cap: BUTTCAP @@ -43741,7 +43741,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43755,13 +43755,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 40 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -43770,7 +43770,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43784,13 +43784,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 40 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -43799,7 +43799,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -43810,7 +43810,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1294738992 priority: 260 cap: BUTTCAP @@ -43836,7 +43836,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43844,7 +43844,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43852,7 +43852,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43860,7 +43860,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43871,7 +43871,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1294738992 priority: 260 cap: BUTTCAP @@ -43897,7 +43897,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43905,7 +43905,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43913,7 +43913,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43921,7 +43921,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43932,7 +43932,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1294738992 priority: 260 cap: BUTTCAP @@ -43958,7 +43958,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43966,7 +43966,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43974,7 +43974,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -43982,7 +43982,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44010,7 +44010,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44018,7 +44018,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44026,7 +44026,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44034,7 +44034,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44062,7 +44062,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44070,7 +44070,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44078,7 +44078,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44086,7 +44086,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44114,7 +44114,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44122,7 +44122,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44130,7 +44130,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44138,7 +44138,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1715089216 priority: 260 } @@ -44260,7 +44260,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44284,7 +44284,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44308,7 +44308,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44496,7 +44496,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -44513,7 +44513,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -44533,7 +44533,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -44597,7 +44597,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -44623,7 +44623,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44640,7 +44640,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44657,7 +44657,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44668,7 +44668,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -44697,7 +44697,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -44756,7 +44756,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44768,7 +44768,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -44785,7 +44785,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44806,7 +44806,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44814,7 +44814,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44835,7 +44835,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44843,7 +44843,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -44864,7 +44864,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -44875,7 +44875,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -44907,8 +44907,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44926,8 +44926,8 @@ cont { width: 3.6 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44954,8 +44954,8 @@ cont { width: 4.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44969,7 +44969,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -44981,8 +44981,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45005,17 +45005,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45032,17 +45032,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45059,17 +45059,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45124,7 +45124,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -45232,13 +45232,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -45261,13 +45261,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -45326,7 +45326,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2151296832 priority: 220 cap: BUTTCAP @@ -45347,8 +45347,8 @@ cont { width: 1.2 color: 1292174597 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -45364,8 +45364,8 @@ cont { width: 1.6 color: 1292174597 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -45381,13 +45381,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45398,13 +45398,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45415,13 +45415,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45477,7 +45477,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 2151296832 priority: 220 cap: BUTTCAP @@ -45516,8 +45516,8 @@ cont { width: 1.2 color: 1292174597 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -45545,8 +45545,8 @@ cont { width: 1.6 color: 1292174597 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -45559,7 +45559,7 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 855309 priority: 100 cap: BUTTCAP @@ -45574,13 +45574,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45588,7 +45588,7 @@ cont { element { scale: 19 lines { - width: 13 + width: 13.0 color: 855309 priority: 100 cap: BUTTCAP @@ -45603,13 +45603,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45617,7 +45617,7 @@ cont { element { scale: 20 lines { - width: 13 + width: 13.0 color: 855309 priority: 100 cap: BUTTCAP @@ -45632,13 +45632,13 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45688,17 +45688,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 2151296832 priority: 220 cap: BUTTCAP @@ -45710,8 +45710,8 @@ cont { width: 4.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45729,8 +45729,8 @@ cont { width: 1.2 color: 1292174597 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -45738,8 +45738,8 @@ cont { width: 4.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45756,8 +45756,8 @@ cont { width: 1.6 color: 1292174597 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -45765,8 +45765,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45783,23 +45783,23 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45810,23 +45810,23 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45837,23 +45837,23 @@ cont { width: 2.1 color: 1292174597 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -45864,7 +45864,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -45874,7 +45874,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -45938,7 +45938,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -45964,7 +45964,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45981,7 +45981,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -45998,7 +45998,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -46009,7 +46009,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -46019,7 +46019,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -46048,7 +46048,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -46107,7 +46107,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46119,7 +46119,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -46136,7 +46136,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46157,7 +46157,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -46165,7 +46165,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46186,7 +46186,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -46194,7 +46194,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46215,7 +46215,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295658816 priority: 220 } @@ -46226,7 +46226,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -46236,7 +46236,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151296832 priority: 220 join: BEVELJOIN @@ -46268,8 +46268,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -46287,8 +46287,8 @@ cont { width: 3.6 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -46315,8 +46315,8 @@ cont { width: 4.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -46330,7 +46330,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -46342,8 +46342,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -46366,17 +46366,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -46393,17 +46393,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -46420,17 +46420,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151296832 priority: 220 } @@ -46449,7 +46449,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -46475,7 +46475,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46492,7 +46492,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46509,7 +46509,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46520,7 +46520,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46540,7 +46540,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46552,7 +46552,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -46569,7 +46569,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46590,7 +46590,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46598,7 +46598,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46619,7 +46619,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46627,7 +46627,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46648,7 +46648,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46662,8 +46662,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46677,7 +46677,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -46689,8 +46689,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46713,17 +46713,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -46740,17 +46740,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -46767,17 +46767,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -46805,7 +46805,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -46831,7 +46831,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46848,7 +46848,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46865,7 +46865,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46891,7 +46891,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46911,7 +46911,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46923,7 +46923,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -46940,7 +46940,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46961,7 +46961,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46969,7 +46969,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -46990,7 +46990,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -46998,7 +46998,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -47019,7 +47019,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -47033,8 +47033,8 @@ cont { width: 3.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47052,8 +47052,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47067,7 +47067,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -47079,8 +47079,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47103,17 +47103,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -47130,17 +47130,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -47157,17 +47157,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -47178,7 +47178,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47188,7 +47188,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47260,7 +47260,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -47294,7 +47294,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47319,7 +47319,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47344,7 +47344,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47363,7 +47363,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47373,7 +47373,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47402,7 +47402,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -47469,7 +47469,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -47481,7 +47481,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -47506,7 +47506,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -47527,7 +47527,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47543,7 +47543,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -47564,7 +47564,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47580,7 +47580,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -47601,7 +47601,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1295855912 priority: 220 } @@ -47620,7 +47620,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47630,7 +47630,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2151493928 priority: 220 join: BEVELJOIN @@ -47662,8 +47662,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47681,8 +47681,8 @@ cont { width: 3.6 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47709,8 +47709,8 @@ cont { width: 4.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47732,7 +47732,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292174597 dashdot { dd: 6.3 @@ -47744,8 +47744,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47776,17 +47776,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151493928 priority: 220 } @@ -47811,17 +47811,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151493928 priority: 220 } @@ -47846,17 +47846,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2151493928 priority: 220 } @@ -47907,8 +47907,8 @@ cont { width: 3.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47926,8 +47926,8 @@ cont { width: 3.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47954,8 +47954,8 @@ cont { width: 4.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47981,8 +47981,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48008,8 +48008,8 @@ cont { width: 6.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48023,7 +48023,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -48035,8 +48035,8 @@ cont { width: 7.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48050,7 +48050,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 8.1 @@ -48062,8 +48062,8 @@ cont { width: 7.8 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48080,7 +48080,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2150377008 priority: 150 cap: BUTTCAP @@ -48115,7 +48115,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -48141,7 +48141,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48158,7 +48158,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48175,7 +48175,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48186,7 +48186,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2150377008 priority: 150 cap: BUTTCAP @@ -48225,7 +48225,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 855309 priority: 100 cap: BUTTCAP @@ -48245,7 +48245,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 855309 priority: 100 cap: BUTTCAP @@ -48257,7 +48257,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -48274,7 +48274,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -48295,7 +48295,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48303,7 +48303,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -48324,7 +48324,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48332,7 +48332,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 855309 priority: 100 cap: BUTTCAP @@ -48353,7 +48353,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -48364,7 +48364,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2150377008 priority: 150 cap: BUTTCAP @@ -48376,8 +48376,8 @@ cont { width: 3.1 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48395,8 +48395,8 @@ cont { width: 3.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48414,8 +48414,8 @@ cont { width: 3.3 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48429,7 +48429,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1292700173 dashdot { dd: 6.3 @@ -48441,8 +48441,8 @@ cont { width: 5.2 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -48465,17 +48465,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -48492,17 +48492,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -48519,17 +48519,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2149720610 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2150377008 priority: 150 } @@ -67570,7 +67570,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -67578,7 +67578,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -67587,7 +67587,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -67595,7 +67595,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -67604,7 +67604,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -67639,7 +67639,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 1184274 priority: 110 cap: BUTTCAP @@ -67733,7 +67733,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -67747,13 +67747,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -67762,7 +67762,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -67776,13 +67776,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 1184274 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1292174597 dashdot { dd: 10.1 @@ -67791,7 +67791,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1294738992 priority: 150 } @@ -79854,7 +79854,7 @@ cont { color: 1717328977 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -79868,11 +79868,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1717328977 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -79890,7 +79890,7 @@ cont { color: 1717328977 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -79899,7 +79899,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -79908,7 +79908,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79917,7 +79917,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -79926,7 +79926,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79947,7 +79947,7 @@ cont { color: 1717328977 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -79961,11 +79961,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1717328977 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -79983,7 +79983,7 @@ cont { color: 1717328977 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -79992,7 +79992,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -80001,7 +80001,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -80010,7 +80010,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -80019,7 +80019,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -80040,7 +80040,7 @@ cont { color: 1717328977 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -80054,11 +80054,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1717328977 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -80076,7 +80076,7 @@ cont { color: 1717328977 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -80085,7 +80085,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -80094,7 +80094,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -80103,7 +80103,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1717328977 priority: 270 } @@ -80112,7 +80112,7 @@ cont { color: 1717328977 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -81792,7 +81792,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2568822045 priority: 20 cap: BUTTCAP @@ -81800,7 +81800,7 @@ cont { area { color: 1511594265 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -81809,14 +81809,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2568822045 priority: 20 } area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -81832,7 +81832,7 @@ cont { area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -81841,14 +81841,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2568822045 priority: 20 } area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -81857,14 +81857,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2568822045 priority: 20 } area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -81873,14 +81873,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2568822045 priority: 20 } area { color: 1931024665 border { - width: 1 + width: 1.0 color: 1842204 } priority: 20 @@ -82073,7 +82073,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1711677478 priority: -990 join: BEVELJOIN @@ -82243,7 +82243,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2568822045 priority: 270 cap: BUTTCAP @@ -82252,7 +82252,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2568822045 priority: 270 } @@ -82268,7 +82268,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2568822045 priority: 270 } @@ -82276,7 +82276,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2568822045 priority: 270 } @@ -82284,7 +82284,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2568822045 priority: 270 } diff --git a/data/drules_proto_vehicle_light.txt b/data/drules_proto_vehicle_light.txt index f283cc90b6..19ff91af92 100644 --- a/data/drules_proto_vehicle_light.txt +++ b/data/drules_proto_vehicle_light.txt @@ -550,7 +550,7 @@ cont { area { color: 869585866 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -561,7 +561,7 @@ cont { area { color: 869585866 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -579,7 +579,7 @@ cont { area { color: 13947850 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -597,7 +597,7 @@ cont { area { color: 13947850 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -615,7 +615,7 @@ cont { area { color: 13947850 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -633,7 +633,7 @@ cont { area { color: 13947850 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -651,7 +651,7 @@ cont { area { color: 13947850 border { - width: 1 + width: 1.0 color: 13947850 } priority: -1890 @@ -5850,7 +5850,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1304938175 priority: 260 cap: BUTTCAP @@ -5870,10 +5870,10 @@ cont { width: 4.5 color: 1305793482 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 260 } @@ -5884,10 +5884,10 @@ cont { width: 5.9 color: 1305793482 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 260 } @@ -5898,10 +5898,10 @@ cont { width: 8.5 color: 1305793482 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 260 } @@ -5912,10 +5912,10 @@ cont { width: 8.5 color: 1305793482 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 260 } @@ -5977,7 +5977,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2156431496 priority: 260 } @@ -6012,7 +6012,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 3006694172 priority: 260 } @@ -6020,7 +6020,7 @@ cont { element { scale: 19 lines { - width: 3 + width: 3.0 color: 2570486556 priority: 260 } @@ -6028,7 +6028,7 @@ cont { element { scale: 20 lines { - width: 3 + width: 3.0 color: 2570486556 priority: 260 } @@ -6133,7 +6133,7 @@ cont { dd: 2.8 dd: 1.4 dd: 1.4 - dd: 1 + dd: 1.0 } priority: 80 } @@ -6144,9 +6144,9 @@ cont { width: 3.2 color: 1720223880 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6158,9 +6158,9 @@ cont { width: 3.2 color: 1720223880 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6172,9 +6172,9 @@ cont { width: 3.2 color: 1720223880 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.2 } priority: 80 @@ -6324,7 +6324,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 2156431496 priority: 260 } @@ -6409,7 +6409,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 1298359132 priority: 70 join: BEVELJOIN @@ -6612,7 +6612,7 @@ cont { element { scale: 9 lines { - width: 1 + width: 1.0 color: 1299411563 dashdot { dd: 1.8 @@ -8136,7 +8136,7 @@ cont { area { color: 1523897290 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8147,7 +8147,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8158,7 +8158,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8169,7 +8169,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8192,7 +8192,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8215,7 +8215,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8289,7 +8289,7 @@ cont { area { color: 1523897290 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8300,7 +8300,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8311,7 +8311,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8322,7 +8322,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8345,7 +8345,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8368,7 +8368,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8394,7 +8394,7 @@ cont { area { color: 1523897290 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8405,7 +8405,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8416,7 +8416,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8427,7 +8427,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8450,7 +8450,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8473,7 +8473,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8499,7 +8499,7 @@ cont { area { color: 1523897290 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8510,7 +8510,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8521,7 +8521,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8532,7 +8532,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8555,7 +8555,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8578,7 +8578,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 50 @@ -8604,7 +8604,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 90 @@ -8615,7 +8615,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 90 @@ -8626,7 +8626,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 90 @@ -8637,7 +8637,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 90 @@ -8648,7 +8648,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 90 @@ -8978,7 +8978,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1304148906 dashdot { dd: 7.2 @@ -8994,7 +8994,7 @@ cont { width: 2.6 color: 1304148906 dashdot { - dd: 9 + dd: 9.0 dd: 3.6 } priority: 120 @@ -9003,7 +9003,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 1304148906 dashdot { dd: 10.8 @@ -9015,7 +9015,7 @@ cont { element { scale: 18 lines { - width: 4 + width: 4.0 color: 1304148906 dashdot { dd: 13.5 @@ -9027,10 +9027,10 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 1304148906 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 120 @@ -9039,10 +9039,10 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 1304148906 dashdot { - dd: 18 + dd: 18.0 dd: 6.2 } priority: 120 @@ -9054,7 +9054,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9062,7 +9062,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9070,7 +9070,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9081,7 +9081,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9089,7 +9089,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9097,7 +9097,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9108,7 +9108,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9116,7 +9116,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9124,7 +9124,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9135,7 +9135,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9143,7 +9143,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9151,7 +9151,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9162,7 +9162,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9170,7 +9170,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9178,7 +9178,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9189,7 +9189,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9197,7 +9197,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9205,7 +9205,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1716933887 priority: 130 } @@ -9219,8 +9219,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9231,8 +9231,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9243,8 +9243,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9258,8 +9258,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9270,8 +9270,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9282,8 +9282,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9297,8 +9297,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9309,8 +9309,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9321,8 +9321,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9336,8 +9336,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9348,8 +9348,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9360,8 +9360,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9375,8 +9375,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9387,8 +9387,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9399,8 +9399,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 245 } @@ -9414,8 +9414,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9426,8 +9426,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 130 } @@ -9566,7 +9566,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -9582,7 +9582,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -9598,7 +9598,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -9614,7 +9614,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -9702,7 +9702,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -9718,7 +9718,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -9734,7 +9734,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -9750,7 +9750,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -9825,8 +9825,8 @@ cont { width: 7.1 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP @@ -9848,17 +9848,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 872415231 priority: 170 } @@ -9874,17 +9874,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 872415231 priority: 170 } @@ -9900,17 +9900,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 170 } @@ -9926,17 +9926,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 170 } @@ -10125,7 +10125,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16748864 priority: 250 cap: BUTTCAP @@ -10154,7 +10154,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 16748864 priority: 250 } @@ -10182,7 +10182,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16748864 priority: 250 } @@ -10210,7 +10210,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 16748864 priority: 250 } @@ -10232,13 +10232,13 @@ cont { element { scale: 19 lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -10260,13 +10260,13 @@ cont { element { scale: 20 lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -10403,7 +10403,7 @@ cont { element { scale: 13 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 100 cap: BUTTCAP @@ -10485,7 +10485,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -10497,7 +10497,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16748864 priority: 250 cap: BUTTCAP @@ -10526,7 +10526,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -10538,7 +10538,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 16748864 priority: 250 } @@ -10578,7 +10578,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16748864 priority: 250 } @@ -10600,13 +10600,13 @@ cont { element { scale: 18 lines { - width: 54 + width: 54.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 52 + width: 52.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -10618,7 +10618,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 16748864 priority: 250 } @@ -10640,25 +10640,25 @@ cont { element { scale: 19 lines { - width: 72 + width: 72.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 870704341 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -10680,25 +10680,25 @@ cont { element { scale: 20 lines { - width: 72 + width: 72.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 870704341 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -10814,8 +10814,8 @@ cont { width: 4.7 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 249 cap: BUTTCAP @@ -10848,8 +10848,8 @@ cont { width: 6.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -10881,8 +10881,8 @@ cont { width: 6.5 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -10911,17 +10911,17 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 872195170 priority: 250 cap: BUTTCAP @@ -10944,17 +10944,17 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 872195170 priority: 250 } @@ -10976,17 +10976,17 @@ cont { element { scale: 17 lines { - width: 17 + width: 17.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 872195170 priority: 250 } @@ -11008,17 +11008,17 @@ cont { element { scale: 18 lines { - width: 27 + width: 27.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 872195170 priority: 250 } @@ -11040,17 +11040,17 @@ cont { element { scale: 19 lines { - width: 36 + width: 36.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 872195170 priority: 250 } @@ -11072,17 +11072,17 @@ cont { element { scale: 20 lines { - width: 36 + width: 36.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 872195170 priority: 250 } @@ -11194,7 +11194,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -11300,7 +11300,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16748864 priority: 168 cap: BUTTCAP @@ -11351,13 +11351,13 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1307964388 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1308594496 priority: 168 } @@ -11385,7 +11385,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1308594496 priority: 168 } @@ -11413,7 +11413,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -11441,7 +11441,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -11490,7 +11490,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -11608,7 +11608,7 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -11620,7 +11620,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16748864 priority: 168 cap: BUTTCAP @@ -11695,13 +11695,13 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 1307964388 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1308594496 priority: 168 } @@ -11723,13 +11723,13 @@ cont { element { scale: 18 lines { - width: 40 + width: 40.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 38 + width: 38.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -11741,7 +11741,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1308594496 priority: 168 } @@ -11763,13 +11763,13 @@ cont { element { scale: 19 lines { - width: 52 + width: 52.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -11781,7 +11781,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -11803,13 +11803,13 @@ cont { element { scale: 20 lines { - width: 52 + width: 52.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -11821,7 +11821,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -11870,7 +11870,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -11921,8 +11921,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -11954,8 +11954,8 @@ cont { width: 4.97 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -11984,17 +11984,17 @@ cont { element { scale: 15 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 872195170 priority: 168 cap: BUTTCAP @@ -12020,8 +12020,8 @@ cont { width: 9.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP @@ -12049,17 +12049,17 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 872195170 priority: 168 } @@ -12081,17 +12081,17 @@ cont { element { scale: 18 lines { - width: 20 + width: 20.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 872195170 priority: 168 } @@ -12113,17 +12113,17 @@ cont { element { scale: 19 lines { - width: 26 + width: 26.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 872195170 priority: 168 } @@ -12145,17 +12145,17 @@ cont { element { scale: 20 lines { - width: 26 + width: 26.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 872195170 priority: 168 } @@ -12184,7 +12184,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12196,7 +12196,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12207,7 +12207,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12219,7 +12219,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12235,7 +12235,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12247,7 +12247,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12258,7 +12258,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12270,7 +12270,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12286,7 +12286,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12298,7 +12298,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12309,7 +12309,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12321,7 +12321,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12337,7 +12337,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12349,7 +12349,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12360,7 +12360,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12372,7 +12372,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12388,7 +12388,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12400,7 +12400,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12411,7 +12411,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12423,7 +12423,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12439,7 +12439,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12451,7 +12451,7 @@ cont { color: 1721782290 dashdot { dd: 3.5 - dd: 2 + dd: 2.0 } priority: 130 } @@ -12462,7 +12462,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12474,7 +12474,7 @@ cont { width: 1.5 color: 1721782290 dashdot { - dd: 4 + dd: 4.0 dd: 2.5 } priority: 130 @@ -12486,11 +12486,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12498,11 +12498,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12510,11 +12510,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12525,11 +12525,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12537,11 +12537,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12549,11 +12549,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12564,11 +12564,11 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12576,11 +12576,11 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12588,11 +12588,11 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1308425468 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -12695,7 +12695,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 230 cap: BUTTCAP @@ -12810,7 +12810,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 16756055 priority: 230 } @@ -12838,7 +12838,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16756055 priority: 230 } @@ -12866,7 +12866,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 230 } @@ -12894,7 +12894,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 230 } @@ -13011,7 +13011,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 230 cap: BUTTCAP @@ -13040,7 +13040,7 @@ cont { cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -13122,7 +13122,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -13174,7 +13174,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 16756055 priority: 230 } @@ -13196,13 +13196,13 @@ cont { element { scale: 18 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -13214,7 +13214,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16756055 priority: 230 } @@ -13236,13 +13236,13 @@ cont { element { scale: 19 lines { - width: 58 + width: 58.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -13254,7 +13254,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 230 } @@ -13276,13 +13276,13 @@ cont { element { scale: 20 lines { - width: 58 + width: 58.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -13294,7 +13294,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 230 } @@ -13411,7 +13411,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 230 cap: BUTTCAP @@ -13437,8 +13437,8 @@ cont { width: 5.1 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 229 cap: BUTTCAP @@ -13470,8 +13470,8 @@ cont { width: 6.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -13503,8 +13503,8 @@ cont { width: 8.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP @@ -13532,17 +13532,17 @@ cont { element { scale: 17 lines { - width: 15 + width: 15.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 872195170 priority: 230 } @@ -13564,17 +13564,17 @@ cont { element { scale: 18 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872195170 priority: 230 } @@ -13596,17 +13596,17 @@ cont { element { scale: 19 lines { - width: 29 + width: 29.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 872195170 priority: 230 } @@ -13628,17 +13628,17 @@ cont { element { scale: 20 lines { - width: 29 + width: 29.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 229 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 872195170 priority: 230 } @@ -13711,7 +13711,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 166 cap: BUTTCAP @@ -13826,7 +13826,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 16756055 priority: 166 } @@ -13854,7 +13854,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16756055 priority: 166 } @@ -13882,7 +13882,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 166 } @@ -13910,7 +13910,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 166 } @@ -13983,7 +13983,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 166 cap: BUTTCAP @@ -14012,7 +14012,7 @@ cont { cap: BUTTCAP } lines { - width: 7 + width: 7.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -14094,7 +14094,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -14146,7 +14146,7 @@ cont { cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 16756055 priority: 166 } @@ -14168,13 +14168,13 @@ cont { element { scale: 18 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -14186,7 +14186,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16756055 priority: 166 } @@ -14208,13 +14208,13 @@ cont { element { scale: 19 lines { - width: 58 + width: 58.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -14226,7 +14226,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 166 } @@ -14248,13 +14248,13 @@ cont { element { scale: 20 lines { - width: 58 + width: 58.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 56 + width: 56.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -14266,7 +14266,7 @@ cont { cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 16756055 priority: 166 } @@ -14339,7 +14339,7 @@ cont { element { scale: 13 lines { - width: 3 + width: 3.0 color: 1308601687 priority: 166 cap: BUTTCAP @@ -14365,8 +14365,8 @@ cont { width: 5.1 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 165 cap: BUTTCAP @@ -14398,8 +14398,8 @@ cont { width: 6.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP @@ -14431,8 +14431,8 @@ cont { width: 8.5 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP @@ -14460,17 +14460,17 @@ cont { element { scale: 17 lines { - width: 15 + width: 15.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 13 + width: 13.0 color: 872195170 priority: 166 } @@ -14492,17 +14492,17 @@ cont { element { scale: 18 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872195170 priority: 166 } @@ -14524,17 +14524,17 @@ cont { element { scale: 19 lines { - width: 29 + width: 29.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 872195170 priority: 166 } @@ -14556,17 +14556,17 @@ cont { element { scale: 20 lines { - width: 29 + width: 29.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 165 cap: BUTTCAP } lines { - width: 27 + width: 27.0 color: 872195170 priority: 166 } @@ -14706,7 +14706,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -14734,7 +14734,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -14756,13 +14756,13 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -14784,13 +14784,13 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -14930,7 +14930,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -14958,7 +14958,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -14980,13 +14980,13 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15008,13 +15008,13 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15103,7 +15103,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -15144,7 +15144,7 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -15202,7 +15202,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -15224,13 +15224,13 @@ cont { element { scale: 18 lines { - width: 28 + width: 28.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 26 + width: 26.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -15242,7 +15242,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -15264,25 +15264,25 @@ cont { element { scale: 19 lines { - width: 38 + width: 38.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15304,25 +15304,25 @@ cont { element { scale: 20 lines { - width: 38 + width: 38.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 19 + width: 19.0 color: 16118756 priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15431,8 +15431,8 @@ cont { width: 7.1 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP @@ -15460,17 +15460,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 872415231 priority: 170 } @@ -15492,17 +15492,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 872415231 priority: 170 } @@ -15524,17 +15524,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 170 } @@ -15556,17 +15556,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 169 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 170 } @@ -15776,7 +15776,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -15792,7 +15792,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -15808,7 +15808,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15824,7 +15824,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15912,7 +15912,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -15928,7 +15928,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -15944,7 +15944,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -15960,7 +15960,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -16048,7 +16048,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 170 } @@ -16064,7 +16064,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 170 } @@ -16080,7 +16080,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -16096,7 +16096,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 170 } @@ -16262,7 +16262,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16777215 priority: 210 } @@ -16318,7 +16318,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16777215 priority: 210 } @@ -16346,7 +16346,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 210 } @@ -16374,7 +16374,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 210 } @@ -16570,7 +16570,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -16582,7 +16582,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16777215 priority: 210 } @@ -16644,13 +16644,13 @@ cont { element { scale: 18 lines { - width: 34 + width: 34.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 32 + width: 32.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -16662,7 +16662,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16777215 priority: 210 } @@ -16684,13 +16684,13 @@ cont { element { scale: 19 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -16702,7 +16702,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 210 } @@ -16724,13 +16724,13 @@ cont { element { scale: 20 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -16742,7 +16742,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 210 } @@ -16908,17 +16908,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 872415231 priority: 210 } @@ -16943,8 +16943,8 @@ cont { width: 11.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP @@ -16972,17 +16972,17 @@ cont { element { scale: 18 lines { - width: 17 + width: 17.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 872415231 priority: 210 } @@ -17004,17 +17004,17 @@ cont { element { scale: 19 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872415231 priority: 210 } @@ -17036,17 +17036,17 @@ cont { element { scale: 20 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 209 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872415231 priority: 210 } @@ -17116,7 +17116,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16777215 priority: 164 } @@ -17160,7 +17160,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16777215 priority: 164 } @@ -17182,7 +17182,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 164 } @@ -17204,7 +17204,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 164 } @@ -17292,7 +17292,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -17304,7 +17304,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16777215 priority: 164 } @@ -17354,13 +17354,13 @@ cont { element { scale: 18 lines { - width: 34 + width: 34.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 32 + width: 32.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -17372,7 +17372,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16777215 priority: 164 } @@ -17388,13 +17388,13 @@ cont { element { scale: 19 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -17406,7 +17406,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 164 } @@ -17422,13 +17422,13 @@ cont { element { scale: 20 lines { - width: 48 + width: 48.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 46 + width: 46.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -17440,7 +17440,7 @@ cont { cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 16777215 priority: 164 } @@ -17498,17 +17498,17 @@ cont { element { scale: 16 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 872415231 priority: 164 } @@ -17527,8 +17527,8 @@ cont { width: 11.6 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP @@ -17550,17 +17550,17 @@ cont { element { scale: 18 lines { - width: 17 + width: 17.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 872415231 priority: 164 } @@ -17576,17 +17576,17 @@ cont { element { scale: 19 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872415231 priority: 164 } @@ -17602,17 +17602,17 @@ cont { element { scale: 20 lines { - width: 24 + width: 24.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 163 cap: BUTTCAP } lines { - width: 22 + width: 22.0 color: 872415231 priority: 164 } @@ -17631,7 +17631,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1308425468 priority: 140 cap: BUTTCAP @@ -17649,7 +17649,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -17732,7 +17732,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1308425468 priority: 140 cap: BUTTCAP @@ -17750,7 +17750,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -17833,7 +17833,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1308425468 priority: 140 cap: BUTTCAP @@ -17851,7 +17851,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -17943,7 +17943,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -18026,7 +18026,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1308425468 priority: 140 cap: BUTTCAP @@ -18044,7 +18044,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -18127,7 +18127,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1308425468 priority: 140 cap: BUTTCAP @@ -18145,7 +18145,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 1308425468 priority: 140 } @@ -18433,8 +18433,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18445,8 +18445,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18457,8 +18457,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18472,8 +18472,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18484,8 +18484,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18496,8 +18496,8 @@ cont { width: 1.5 color: 1308425468 dashdot { - dd: 5 - dd: 2 + dd: 5.0 + dd: 2.0 } priority: 270 } @@ -18673,7 +18673,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 16579836 priority: 190 } @@ -18701,7 +18701,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 190 } @@ -18729,7 +18729,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 190 } @@ -18921,7 +18921,7 @@ cont { element { scale: 17 lines { - width: 20 + width: 20.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -18961,13 +18961,13 @@ cont { element { scale: 18 lines { - width: 32 + width: 32.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 30 + width: 30.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -18979,7 +18979,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 16579836 priority: 190 } @@ -19001,13 +19001,13 @@ cont { element { scale: 19 lines { - width: 44 + width: 44.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -19019,7 +19019,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 190 } @@ -19041,13 +19041,13 @@ cont { element { scale: 20 lines { - width: 44 + width: 44.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -19059,7 +19059,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 190 } @@ -19190,8 +19190,8 @@ cont { width: 7.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -19222,8 +19222,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -19251,17 +19251,17 @@ cont { element { scale: 18 lines { - width: 16 + width: 16.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 872415231 priority: 190 } @@ -19283,17 +19283,17 @@ cont { element { scale: 19 lines { - width: 22 + width: 22.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 872415231 priority: 190 } @@ -19315,17 +19315,17 @@ cont { element { scale: 20 lines { - width: 22 + width: 22.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 872415231 priority: 190 } @@ -19408,7 +19408,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 16579836 priority: 162 } @@ -19430,7 +19430,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 162 } @@ -19452,7 +19452,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 162 } @@ -19545,7 +19545,7 @@ cont { element { scale: 17 lines { - width: 20 + width: 20.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -19571,13 +19571,13 @@ cont { element { scale: 18 lines { - width: 32 + width: 32.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 30 + width: 30.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -19589,7 +19589,7 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 16579836 priority: 162 } @@ -19605,13 +19605,13 @@ cont { element { scale: 19 lines { - width: 44 + width: 44.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -19623,7 +19623,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 162 } @@ -19639,13 +19639,13 @@ cont { element { scale: 20 lines { - width: 44 + width: 44.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 42 + width: 42.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -19657,7 +19657,7 @@ cont { cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 16579836 priority: 162 } @@ -19703,8 +19703,8 @@ cont { width: 7.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP @@ -19721,8 +19721,8 @@ cont { width: 10.4 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP @@ -19736,17 +19736,17 @@ cont { element { scale: 18 lines { - width: 16 + width: 16.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 872415231 priority: 162 } @@ -19762,17 +19762,17 @@ cont { element { scale: 19 lines { - width: 22 + width: 22.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 872415231 priority: 162 } @@ -19788,17 +19788,17 @@ cont { element { scale: 20 lines { - width: 22 + width: 22.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 161 cap: BUTTCAP } lines { - width: 20 + width: 20.0 color: 872415231 priority: 162 } @@ -19820,7 +19820,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19832,7 +19832,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19844,8 +19844,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19856,8 +19856,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19868,8 +19868,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19883,7 +19883,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19895,7 +19895,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19907,8 +19907,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19919,8 +19919,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19931,8 +19931,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19946,7 +19946,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19958,7 +19958,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -19970,8 +19970,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19982,8 +19982,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -19994,8 +19994,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20009,7 +20009,7 @@ cont { width: 1.1 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20021,7 +20021,7 @@ cont { width: 1.4 color: 1717786416 dashdot { - dd: 6 + dd: 6.0 dd: 2.5 } priority: 130 @@ -20033,8 +20033,8 @@ cont { width: 1.9 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20045,8 +20045,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20057,8 +20057,8 @@ cont { width: 2.5 color: 1717786416 dashdot { - dd: 7 - dd: 3 + dd: 7.0 + dd: 3.0 } priority: 130 } @@ -20256,7 +20256,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16748864 priority: 250 cap: BUTTCAP @@ -20285,7 +20285,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 16748864 priority: 250 } @@ -20313,7 +20313,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16748864 priority: 250 } @@ -20341,7 +20341,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 16748864 priority: 250 } @@ -20363,13 +20363,13 @@ cont { element { scale: 19 lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -20391,13 +20391,13 @@ cont { element { scale: 20 lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -20534,7 +20534,7 @@ cont { element { scale: 13 lines { - width: 10 + width: 10.0 color: 1300267136 priority: 100 cap: BUTTCAP @@ -20616,7 +20616,7 @@ cont { cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -20628,7 +20628,7 @@ cont { cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 16748864 priority: 250 cap: BUTTCAP @@ -20657,7 +20657,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -20669,7 +20669,7 @@ cont { cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 16748864 priority: 250 } @@ -20709,7 +20709,7 @@ cont { cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 16748864 priority: 250 } @@ -20731,13 +20731,13 @@ cont { element { scale: 18 lines { - width: 54 + width: 54.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 52 + width: 52.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -20749,7 +20749,7 @@ cont { cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 16748864 priority: 250 } @@ -20771,25 +20771,25 @@ cont { element { scale: 19 lines { - width: 72 + width: 72.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 870704341 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -20811,25 +20811,25 @@ cont { element { scale: 20 lines { - width: 72 + width: 72.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 70 + width: 70.0 color: 870704341 priority: 110 cap: BUTTCAP } lines { - width: 37 + width: 37.0 color: 1307964388 priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 16748864 priority: 250 } @@ -20945,8 +20945,8 @@ cont { width: 4.7 color: 1300267136 dashdot { - dd: 2 - dd: 2 + dd: 2.0 + dd: 2.0 } priority: 249 cap: BUTTCAP @@ -20979,8 +20979,8 @@ cont { width: 6.2 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -21012,8 +21012,8 @@ cont { width: 6.5 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 249 cap: BUTTCAP @@ -21042,17 +21042,17 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 6 + width: 6.0 color: 872195170 priority: 250 cap: BUTTCAP @@ -21075,17 +21075,17 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 9 + width: 9.0 color: 872195170 priority: 250 } @@ -21107,17 +21107,17 @@ cont { element { scale: 17 lines { - width: 17 + width: 17.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 15 + width: 15.0 color: 872195170 priority: 250 } @@ -21139,17 +21139,17 @@ cont { element { scale: 18 lines { - width: 27 + width: 27.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 25 + width: 25.0 color: 872195170 priority: 250 } @@ -21171,17 +21171,17 @@ cont { element { scale: 19 lines { - width: 36 + width: 36.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 872195170 priority: 250 } @@ -21203,17 +21203,17 @@ cont { element { scale: 20 lines { - width: 36 + width: 36.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 249 cap: BUTTCAP } lines { - width: 34 + width: 34.0 color: 872195170 priority: 250 } @@ -21262,7 +21262,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -21368,7 +21368,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16748864 priority: 168 cap: BUTTCAP @@ -21419,13 +21419,13 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1307964388 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1308594496 priority: 168 } @@ -21453,7 +21453,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1308594496 priority: 168 } @@ -21481,7 +21481,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -21509,7 +21509,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -21558,7 +21558,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -21676,7 +21676,7 @@ cont { cap: BUTTCAP } lines { - width: 10 + width: 10.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -21688,7 +21688,7 @@ cont { cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 16748864 priority: 168 cap: BUTTCAP @@ -21763,13 +21763,13 @@ cont { cap: BUTTCAP } lines { - width: 14 + width: 14.0 color: 1307964388 priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 1308594496 priority: 168 } @@ -21791,13 +21791,13 @@ cont { element { scale: 18 lines { - width: 40 + width: 40.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 38 + width: 38.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -21809,7 +21809,7 @@ cont { cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 1308594496 priority: 168 } @@ -21831,13 +21831,13 @@ cont { element { scale: 19 lines { - width: 52 + width: 52.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -21849,7 +21849,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -21871,13 +21871,13 @@ cont { element { scale: 20 lines { - width: 52 + width: 52.0 color: 1300267136 priority: 100 cap: BUTTCAP } lines { - width: 50 + width: 50.0 color: 870704341 priority: 110 cap: BUTTCAP @@ -21889,7 +21889,7 @@ cont { cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 1308594496 priority: 168 } @@ -21938,7 +21938,7 @@ cont { element { scale: 11 lines { - width: 2 + width: 2.0 color: 1308594496 priority: 168 join: BEVELJOIN @@ -21989,8 +21989,8 @@ cont { width: 4.4 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -22022,8 +22022,8 @@ cont { width: 4.97 color: 1300267136 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 } priority: 167 cap: BUTTCAP @@ -22052,17 +22052,17 @@ cont { element { scale: 15 lines { - width: 7 + width: 7.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 872195170 priority: 168 cap: BUTTCAP @@ -22088,8 +22088,8 @@ cont { width: 9.2 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP @@ -22117,17 +22117,17 @@ cont { element { scale: 17 lines { - width: 14 + width: 14.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 872195170 priority: 168 } @@ -22149,17 +22149,17 @@ cont { element { scale: 18 lines { - width: 20 + width: 20.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 18 + width: 18.0 color: 872195170 priority: 168 } @@ -22181,17 +22181,17 @@ cont { element { scale: 19 lines { - width: 26 + width: 26.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 872195170 priority: 168 } @@ -22213,17 +22213,17 @@ cont { element { scale: 20 lines { - width: 26 + width: 26.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 167 cap: BUTTCAP } lines { - width: 24 + width: 24.0 color: 872195170 priority: 168 } @@ -22327,7 +22327,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 190 } @@ -22343,7 +22343,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 190 } @@ -22359,7 +22359,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22375,7 +22375,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22473,7 +22473,7 @@ cont { element { scale: 17 lines { - width: 8 + width: 8.0 color: 16579836 priority: 190 } @@ -22489,7 +22489,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 16579836 priority: 190 } @@ -22505,7 +22505,7 @@ cont { element { scale: 19 lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22521,7 +22521,7 @@ cont { element { scale: 20 lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22598,7 +22598,7 @@ cont { element { scale: 15 lines { - width: 8 + width: 8.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -22627,7 +22627,7 @@ cont { element { scale: 16 lines { - width: 11 + width: 11.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -22667,7 +22667,7 @@ cont { cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 16579836 priority: 190 } @@ -22683,19 +22683,19 @@ cont { element { scale: 18 lines { - width: 28 + width: 28.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 26 + width: 26.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 16579836 priority: 190 } @@ -22711,19 +22711,19 @@ cont { element { scale: 19 lines { - width: 38 + width: 38.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22739,19 +22739,19 @@ cont { element { scale: 20 lines { - width: 38 + width: 38.0 color: 8421504 priority: 100 cap: BUTTCAP } lines { - width: 36 + width: 36.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 16579836 priority: 190 } @@ -22836,8 +22836,8 @@ cont { width: 7.1 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP @@ -22859,17 +22859,17 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 8 + width: 8.0 color: 872415231 priority: 190 } @@ -22885,17 +22885,17 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 12 + width: 12.0 color: 872415231 priority: 190 } @@ -22911,17 +22911,17 @@ cont { element { scale: 19 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 190 } @@ -22937,17 +22937,17 @@ cont { element { scale: 20 lines { - width: 19 + width: 19.0 color: 1300267136 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 189 cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 872415231 priority: 190 } @@ -22996,7 +22996,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 16746306 priority: 250 join: BEVELJOIN @@ -23039,7 +23039,7 @@ cont { element { scale: 7 lines { - width: 1 + width: 1.0 color: 16746306 priority: 250 join: BEVELJOIN @@ -24782,7 +24782,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 1304938175 priority: 280 cap: BUTTCAP @@ -24802,10 +24802,10 @@ cont { width: 4.5 color: 1305793482 dashdot { - dd: 3 - dd: 3 + dd: 3.0 + dd: 3.0 dd: 1.5 - dd: 3 + dd: 3.0 } priority: 280 } @@ -24816,10 +24816,10 @@ cont { width: 5.9 color: 1305793482 dashdot { - dd: 4 - dd: 4 + dd: 4.0 + dd: 4.0 dd: 1.9 - dd: 4 + dd: 4.0 } priority: 280 } @@ -24830,10 +24830,10 @@ cont { width: 8.5 color: 1305793482 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 280 } @@ -24844,10 +24844,10 @@ cont { width: 8.5 color: 1305793482 dashdot { - dd: 6 - dd: 6 + dd: 6.0 + dd: 6.0 dd: 2.5 - dd: 6 + dd: 6.0 } priority: 280 } @@ -26216,8 +26216,8 @@ cont { priority: 270 pathsym { name: "arrow-xs" - step: 44 - offset: 30 + step: 44.0 + offset: 30.0 } } } @@ -26227,8 +26227,8 @@ cont { priority: 270 pathsym { name: "arrow-s" - step: 54 - offset: 50 + step: 54.0 + offset: 50.0 } } } @@ -26238,8 +26238,8 @@ cont { priority: 270 pathsym { name: "arrow-s" - step: 64 - offset: 70 + step: 64.0 + offset: 70.0 } } } @@ -26249,8 +26249,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -26260,8 +26260,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -26271,8 +26271,8 @@ cont { priority: 270 pathsym { name: "arrow-m" - step: 74 - offset: 90 + step: 74.0 + offset: 90.0 } } } @@ -31403,7 +31403,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2162418130 priority: 20 cap: BUTTCAP @@ -31416,7 +31416,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2162418130 priority: 20 } @@ -31440,7 +31440,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2162418130 priority: 20 } @@ -31452,7 +31452,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2162418130 priority: 20 } @@ -31464,7 +31464,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2162418130 priority: 20 } @@ -31526,7 +31526,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 3016153515 priority: 60 } @@ -31534,7 +31534,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 3016153515 priority: 60 } @@ -31550,7 +31550,7 @@ cont { element { scale: 19 lines { - width: 6 + width: 6.0 color: 3016153515 priority: 60 } @@ -31558,7 +31558,7 @@ cont { element { scale: 20 lines { - width: 6 + width: 6.0 color: 3016153515 priority: 60 } @@ -31572,9 +31572,9 @@ cont { width: 3.5 color: 1724368575 dashdot { - dd: 4 - dd: 2 - dd: 2 + dd: 4.0 + dd: 2.0 + dd: 2.0 dd: 1.5 } priority: 80 @@ -31583,13 +31583,13 @@ cont { element { scale: 18 lines { - width: 5 + width: 5.0 color: 1724368575 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -31597,13 +31597,13 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1724368575 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -31611,13 +31611,13 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1724368575 dashdot { - dd: 6 - dd: 3 - dd: 3 - dd: 2 + dd: 6.0 + dd: 3.0 + dd: 3.0 + dd: 2.0 } priority: 80 } @@ -31642,7 +31642,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2162418130 priority: 20 cap: BUTTCAP @@ -31655,7 +31655,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2162418130 priority: 20 } @@ -31679,7 +31679,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2162418130 priority: 20 } @@ -31691,7 +31691,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2162418130 priority: 20 } @@ -31703,7 +31703,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2162418130 priority: 20 } @@ -32296,7 +32296,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2576111654 dashdot { dd: 1.4 @@ -32308,7 +32308,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2576111654 dashdot { dd: 1.5 @@ -32323,7 +32323,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -32338,8 +32338,8 @@ cont { color: 2156681254 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -32352,8 +32352,8 @@ cont { color: 2156681254 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -32700,7 +32700,7 @@ cont { element { scale: 16 lines { - width: 2 + width: 2.0 color: 2576111654 dashdot { dd: 1.4 @@ -32712,7 +32712,7 @@ cont { element { scale: 17 lines { - width: 3 + width: 3.0 color: 2576111654 dashdot { dd: 1.5 @@ -32727,7 +32727,7 @@ cont { width: 6.2 color: 2576111654 dashdot { - dd: 3 + dd: 3.0 dd: 3.5 dd: 4.5 dd: 1.2 @@ -32742,8 +32742,8 @@ cont { color: 2156681254 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -32756,8 +32756,8 @@ cont { color: 2156681254 dashdot { dd: 3.5 - dd: 5 - dd: 6 + dd: 5.0 + dd: 6.0 dd: 1.4 } priority: 80 @@ -42502,7 +42502,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -42526,7 +42526,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -42550,7 +42550,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -42640,7 +42640,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42652,7 +42652,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42664,7 +42664,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42676,7 +42676,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42688,7 +42688,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42703,7 +42703,7 @@ cont { element { scale: 16 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42715,7 +42715,7 @@ cont { element { scale: 17 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42727,7 +42727,7 @@ cont { element { scale: 18 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42739,7 +42739,7 @@ cont { element { scale: 19 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -42751,7 +42751,7 @@ cont { element { scale: 20 lines { - width: 1 + width: 1.0 color: 1720486784 dashdot { dd: 1.8 @@ -43038,7 +43038,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43046,7 +43046,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -43055,7 +43055,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43063,7 +43063,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -43072,7 +43072,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43107,7 +43107,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 15066325 priority: 40 cap: BUTTCAP @@ -43201,7 +43201,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43215,13 +43215,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 40 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -43230,7 +43230,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43244,13 +43244,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 40 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -43259,7 +43259,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -43270,7 +43270,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 260 cap: BUTTCAP @@ -43296,7 +43296,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43304,7 +43304,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43312,7 +43312,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43320,7 +43320,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43331,7 +43331,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 260 cap: BUTTCAP @@ -43357,7 +43357,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43365,7 +43365,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43373,7 +43373,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43381,7 +43381,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43392,7 +43392,7 @@ cont { element { scale: 14 lines { - width: 1 + width: 1.0 color: 1303556514 priority: 260 cap: BUTTCAP @@ -43418,7 +43418,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43426,7 +43426,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43434,7 +43434,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43442,7 +43442,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43470,7 +43470,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43478,7 +43478,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43486,7 +43486,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43494,7 +43494,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43522,7 +43522,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43530,7 +43530,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43538,7 +43538,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43546,7 +43546,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43574,7 +43574,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43582,7 +43582,7 @@ cont { element { scale: 18 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43590,7 +43590,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43598,7 +43598,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1720486784 priority: 260 } @@ -43720,7 +43720,7 @@ cont { element { scale: 18 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -43744,7 +43744,7 @@ cont { element { scale: 19 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -43768,7 +43768,7 @@ cont { element { scale: 20 lines { - width: 12 + width: 12.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -43956,7 +43956,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -43973,7 +43973,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -43993,7 +43993,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -44057,7 +44057,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -44083,7 +44083,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44100,7 +44100,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44117,7 +44117,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44128,7 +44128,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -44157,7 +44157,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -44216,7 +44216,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -44228,7 +44228,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -44245,7 +44245,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -44266,7 +44266,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44274,7 +44274,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -44295,7 +44295,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44303,7 +44303,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -44324,7 +44324,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44335,7 +44335,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -44367,8 +44367,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44386,8 +44386,8 @@ cont { width: 3.6 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44414,8 +44414,8 @@ cont { width: 4.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44429,7 +44429,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -44441,8 +44441,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -44465,17 +44465,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -44492,17 +44492,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -44519,17 +44519,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -44584,7 +44584,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -44692,13 +44692,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -44721,13 +44721,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -44786,7 +44786,7 @@ cont { element { scale: 14 lines { - width: 2 + width: 2.0 color: 2156694400 priority: 220 cap: BUTTCAP @@ -44807,8 +44807,8 @@ cont { width: 1.2 color: 1307504366 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -44824,8 +44824,8 @@ cont { width: 1.6 color: 1307504366 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -44841,13 +44841,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44858,13 +44858,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44875,13 +44875,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -44937,7 +44937,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 2156694400 priority: 220 cap: BUTTCAP @@ -44976,8 +44976,8 @@ cont { width: 1.2 color: 1307504366 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -45005,8 +45005,8 @@ cont { width: 1.6 color: 1307504366 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -45019,7 +45019,7 @@ cont { element { scale: 18 lines { - width: 13 + width: 13.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45034,13 +45034,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45048,7 +45048,7 @@ cont { element { scale: 19 lines { - width: 13 + width: 13.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45063,13 +45063,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45077,7 +45077,7 @@ cont { element { scale: 20 lines { - width: 13 + width: 13.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45092,13 +45092,13 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45148,17 +45148,17 @@ cont { element { scale: 14 lines { - width: 4 + width: 4.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 2156694400 priority: 220 cap: BUTTCAP @@ -45170,8 +45170,8 @@ cont { width: 4.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45189,8 +45189,8 @@ cont { width: 1.2 color: 1307504366 dashdot { - dd: 10 - dd: 10 + dd: 10.0 + dd: 10.0 } priority: 230 } @@ -45198,8 +45198,8 @@ cont { width: 4.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45216,8 +45216,8 @@ cont { width: 1.6 color: 1307504366 dashdot { - dd: 13 - dd: 13 + dd: 13.0 + dd: 13.0 } priority: 230 } @@ -45225,8 +45225,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45243,23 +45243,23 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45270,23 +45270,23 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45297,23 +45297,23 @@ cont { width: 2.1 color: 1307504366 dashdot { - dd: 16 - dd: 16 + dd: 16.0 + dd: 16.0 } priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45324,7 +45324,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45334,7 +45334,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45398,7 +45398,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -45424,7 +45424,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45441,7 +45441,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45458,7 +45458,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45469,7 +45469,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45479,7 +45479,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45508,7 +45508,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -45567,7 +45567,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45579,7 +45579,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -45596,7 +45596,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45617,7 +45617,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45625,7 +45625,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45646,7 +45646,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45654,7 +45654,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -45675,7 +45675,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1301056384 priority: 220 } @@ -45686,7 +45686,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45696,7 +45696,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2156694400 priority: 220 join: BEVELJOIN @@ -45728,8 +45728,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45747,8 +45747,8 @@ cont { width: 3.6 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45775,8 +45775,8 @@ cont { width: 4.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45790,7 +45790,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -45802,8 +45802,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -45826,17 +45826,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45853,17 +45853,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45880,17 +45880,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2156694400 priority: 220 } @@ -45909,7 +45909,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -45935,7 +45935,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -45952,7 +45952,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -45969,7 +45969,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -45980,7 +45980,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46000,7 +46000,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46012,7 +46012,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -46029,7 +46029,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46050,7 +46050,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46058,7 +46058,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46079,7 +46079,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46087,7 +46087,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46108,7 +46108,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46122,8 +46122,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46137,7 +46137,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -46149,8 +46149,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46173,17 +46173,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46200,17 +46200,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46227,17 +46227,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46265,7 +46265,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -46291,7 +46291,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46308,7 +46308,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46325,7 +46325,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46351,7 +46351,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46371,7 +46371,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46383,7 +46383,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -46400,7 +46400,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46421,7 +46421,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46429,7 +46429,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46450,7 +46450,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46458,7 +46458,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46479,7 +46479,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -46493,8 +46493,8 @@ cont { width: 3.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46512,8 +46512,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46527,7 +46527,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -46539,8 +46539,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -46563,17 +46563,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46590,17 +46590,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46617,17 +46617,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -46638,7 +46638,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -46648,7 +46648,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -46720,7 +46720,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -46754,7 +46754,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -46779,7 +46779,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -46804,7 +46804,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -46823,7 +46823,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -46833,7 +46833,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -46862,7 +46862,7 @@ cont { element { scale: 14 lines { - width: 5 + width: 5.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -46929,7 +46929,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46941,7 +46941,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -46966,7 +46966,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -46987,7 +46987,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -47003,7 +47003,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47024,7 +47024,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -47040,7 +47040,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47061,7 +47061,7 @@ cont { priority: 230 } lines { - width: 4 + width: 4.0 color: 1302101349 priority: 220 } @@ -47080,7 +47080,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -47090,7 +47090,7 @@ cont { element { scale: 11 lines { - width: 1 + width: 1.0 color: 2157739365 priority: 220 join: BEVELJOIN @@ -47122,8 +47122,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47141,8 +47141,8 @@ cont { width: 3.6 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47169,8 +47169,8 @@ cont { width: 4.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47192,7 +47192,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1307504366 dashdot { dd: 6.3 @@ -47204,8 +47204,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP @@ -47236,17 +47236,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2157739365 priority: 220 } @@ -47271,17 +47271,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2157739365 priority: 220 } @@ -47306,17 +47306,17 @@ cont { priority: 230 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 219 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2157739365 priority: 220 } @@ -47367,8 +47367,8 @@ cont { width: 3.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47386,8 +47386,8 @@ cont { width: 3.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47414,8 +47414,8 @@ cont { width: 4.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47441,8 +47441,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47468,8 +47468,8 @@ cont { width: 6.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47483,7 +47483,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -47495,8 +47495,8 @@ cont { width: 7.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47510,7 +47510,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 8.1 @@ -47522,8 +47522,8 @@ cont { width: 7.8 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47540,7 +47540,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2159194530 priority: 150 cap: BUTTCAP @@ -47575,7 +47575,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -47601,7 +47601,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47618,7 +47618,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47635,7 +47635,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47646,7 +47646,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2159194530 priority: 150 cap: BUTTCAP @@ -47685,7 +47685,7 @@ cont { element { scale: 16 lines { - width: 7 + width: 7.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47705,7 +47705,7 @@ cont { element { scale: 17 lines { - width: 10 + width: 10.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47717,7 +47717,7 @@ cont { cap: BUTTCAP } lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -47734,7 +47734,7 @@ cont { element { scale: 18 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47755,7 +47755,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47763,7 +47763,7 @@ cont { element { scale: 19 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47784,7 +47784,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47792,7 +47792,7 @@ cont { element { scale: 20 lines { - width: 14 + width: 14.0 color: 8421504 priority: 100 cap: BUTTCAP @@ -47813,7 +47813,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -47824,7 +47824,7 @@ cont { element { scale: 13 lines { - width: 1 + width: 1.0 color: 2159194530 priority: 150 cap: BUTTCAP @@ -47836,8 +47836,8 @@ cont { width: 3.1 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47855,8 +47855,8 @@ cont { width: 3.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47874,8 +47874,8 @@ cont { width: 3.3 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47889,7 +47889,7 @@ cont { element { scale: 17 lines { - width: 2 + width: 2.0 color: 1306647779 dashdot { dd: 6.3 @@ -47901,8 +47901,8 @@ cont { width: 5.2 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP @@ -47925,17 +47925,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -47952,17 +47952,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -47979,17 +47979,17 @@ cont { priority: 160 } lines { - width: 6 + width: 6.0 color: 2155905152 dashdot { - dd: 5 - dd: 5 + dd: 5.0 + dd: 5.0 } priority: 149 cap: BUTTCAP } lines { - width: 4 + width: 4.0 color: 2159194530 priority: 150 } @@ -67030,7 +67030,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -67038,7 +67038,7 @@ cont { element { scale: 19 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -67047,7 +67047,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -67055,7 +67055,7 @@ cont { element { scale: 20 lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -67064,7 +67064,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -67099,7 +67099,7 @@ cont { element { scale: 15 lines { - width: 6 + width: 6.0 color: 15066325 priority: 110 cap: BUTTCAP @@ -67193,7 +67193,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -67207,13 +67207,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -67222,7 +67222,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -67236,13 +67236,13 @@ cont { cap: BUTTCAP } lines { - width: 17 + width: 17.0 color: 15066325 priority: 110 cap: BUTTCAP } lines { - width: 5 + width: 5.0 color: 1307504366 dashdot { dd: 10.1 @@ -67251,7 +67251,7 @@ cont { priority: 160 } lines { - width: 4 + width: 4.0 color: 1303556514 priority: 150 } @@ -79314,7 +79314,7 @@ cont { color: 1719302778 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -79328,11 +79328,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1719302778 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -79350,7 +79350,7 @@ cont { color: 1719302778 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -79359,7 +79359,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79368,7 +79368,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79377,7 +79377,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79386,7 +79386,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79407,7 +79407,7 @@ cont { color: 1719302778 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -79421,11 +79421,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1719302778 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -79443,7 +79443,7 @@ cont { color: 1719302778 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -79452,7 +79452,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79461,7 +79461,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79470,7 +79470,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79479,7 +79479,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79500,7 +79500,7 @@ cont { color: 1719302778 dashdot { dd: 0.8 - dd: 12 + dd: 12.0 } priority: 260 cap: BUTTCAP @@ -79514,11 +79514,11 @@ cont { priority: 270 } lines { - width: 3 + width: 3.0 color: 1719302778 dashdot { dd: 1.15 - dd: 14 + dd: 14.0 } priority: 260 cap: BUTTCAP @@ -79536,7 +79536,7 @@ cont { color: 1719302778 dashdot { dd: 1.25 - dd: 16 + dd: 16.0 } priority: 260 cap: BUTTCAP @@ -79545,7 +79545,7 @@ cont { element { scale: 19 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79554,7 +79554,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -79563,7 +79563,7 @@ cont { element { scale: 20 lines { - width: 2 + width: 2.0 color: 1719302778 priority: 270 } @@ -79572,7 +79572,7 @@ cont { color: 1719302778 dashdot { dd: 1.5 - dd: 19 + dd: 19.0 } priority: 260 cap: BUTTCAP @@ -81252,7 +81252,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2580006591 priority: 20 cap: BUTTCAP @@ -81260,7 +81260,7 @@ cont { area { color: 1523897290 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81269,14 +81269,14 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2580006591 priority: 20 } area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81292,7 +81292,7 @@ cont { area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81301,14 +81301,14 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2580006591 priority: 20 } area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81317,14 +81317,14 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2580006591 priority: 20 } area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81333,14 +81333,14 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2580006591 priority: 20 } area { color: 1943327690 border { - width: 1 + width: 1.0 color: 13947850 } priority: 20 @@ -81533,7 +81533,7 @@ cont { element { scale: 10 lines { - width: 1 + width: 1.0 color: 1714860223 priority: -990 join: BEVELJOIN @@ -81703,7 +81703,7 @@ cont { element { scale: 15 lines { - width: 2 + width: 2.0 color: 2580006591 priority: 270 cap: BUTTCAP @@ -81712,7 +81712,7 @@ cont { element { scale: 16 lines { - width: 3 + width: 3.0 color: 2580006591 priority: 270 } @@ -81728,7 +81728,7 @@ cont { element { scale: 18 lines { - width: 6 + width: 6.0 color: 2580006591 priority: 270 } @@ -81736,7 +81736,7 @@ cont { element { scale: 19 lines { - width: 8 + width: 8.0 color: 2580006591 priority: 270 } @@ -81744,7 +81744,7 @@ cont { element { scale: 20 lines { - width: 8 + width: 8.0 color: 2580006591 priority: 270 } diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 0e70292700..81b4c6b037 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -820,7 +820,7 @@ string DeterminePathGrade(OsmElement * p) string DetermineMtbRating(OsmElement * p) { - if (!p->HasTag("highway", "cycleway")) + if (!p->HasTag("highway", "cycleway") || (!p->HasTag("mtb:scale") && !p->HasTag("mtb:scale:imba") && !p->HasTag("smoothness"))) return {}; enum eMtbRating : int -- 2.45.3 From 80fefcd3bd645452d45354e6d884c20438fb1fda Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Tue, 17 Dec 2024 14:53:41 +0100 Subject: [PATCH 07/19] protobuf commit --- 3party/protobuf/protobuf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3party/protobuf/protobuf b/3party/protobuf/protobuf index a6189acd18..bda4bb9068 160000 --- a/3party/protobuf/protobuf +++ b/3party/protobuf/protobuf @@ -1 +1 @@ -Subproject commit a6189acd18b00611c1dc7042299ad75486f08a1a +Subproject commit bda4bb90688a36e1311d798030894dcd5f6105ef -- 2.45.3 From e8eb741a95058e780dcd7db295fadb6a2c0d404f Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Tue, 17 Dec 2024 22:00:07 +0100 Subject: [PATCH 08/19] redefined the roads and pattern, removed debug commands --- data/colors.txt | 16 ++ data/drules_proto.bin | Bin 425199 -> 424959 bytes data/drules_proto.txt | 202 ++++++++------------ data/drules_proto_default_dark.bin | Bin 409522 -> 409442 bytes data/drules_proto_default_dark.txt | 170 ++++++++-------- data/drules_proto_default_light.bin | Bin 410880 -> 410800 bytes data/drules_proto_default_light.txt | 170 ++++++++-------- data/drules_proto_outdoors_dark.bin | Bin 426567 -> 426487 bytes data/drules_proto_outdoors_dark.txt | 128 ++++++------- data/drules_proto_outdoors_light.bin | Bin 428036 -> 427956 bytes data/drules_proto_outdoors_light.txt | 128 ++++++------- data/patterns.txt | 23 ++- data/styles/default/dark/colors.mapcss | 2 + data/styles/default/include/Roads.mapcss | 53 ++++- data/styles/default/light/colors.mapcss | 2 + drape_frontend/rule_drawer.cpp | 21 -- generator/generator_tool/generator_tool.cpp | 104 ++-------- 17 files changed, 439 insertions(+), 580 deletions(-) diff --git a/data/colors.txt b/data/colors.txt index d6161ebd6b..146a490a83 100644 --- a/data/colors.txt +++ b/data/colors.txt @@ -340,6 +340,8 @@ 671057702 671061056 671088639 +855703636 +855900794 856032768 856756480 856756497 @@ -377,10 +379,12 @@ 865356306 865871792 866144274 +867856511 868514559 868862139 869387687 869585866 +869892242 870704341 871230427 871954680 @@ -492,6 +496,8 @@ 1545508592 1560281087 1711276032 +1711341652 +1711538810 1711670784 1711677478 1712264192 @@ -524,14 +530,18 @@ 1720994322 1721144710 1721782290 +1723494527 1724152575 1724368575 1724500155 1724896680 +1725530258 1728053247 1931024665 1943327690 2147483648 +2147549268 +2147746426 2147812613 2147878400 2147885094 @@ -572,9 +582,11 @@ 2157739365 2159194530 2159483932 +2159702143 2160246963 2160360191 2160707771 +2161737874 2162418130 2162506037 2163123456 @@ -585,6 +597,8 @@ 2370396489 2371253590 2566914048 +2566979668 +2567176826 2567571981 2567645179 2567902208 @@ -606,9 +620,11 @@ 2576111654 2576201856 2576782726 +2579132543 2579790591 2580006591 2580534696 +2581168274 2582553856 2583230712 2583432731 diff --git a/data/drules_proto.bin b/data/drules_proto.bin index 498098164f930908e0bf534fa3e4c13fdfbd9201..9894c46f6443bb6c9b2fe40ddb3e1f5af5588b7e 100644 GIT binary patch delta 707 zcmaF=Q}X|J$%ZYAKH7}4ru%9$%1tj&XY`x?RhyBY^;gS;6P(i-3mHYH7wIvIumJfD zlLeWD85yPr7&B@~0Qno(q=dKxX3YeFpY{-%bNT~4Mh)Du3i=S)8O$KPX<)$S0HMXE zGoEG?n|{WSQ3zxJ9wj_Rgp^2kigQh6;S$ZrOwTA!tkg}eOwLIKF;WwYr{}3N27r7i zH~m&FBR9x@$`DqNF{AnPGZjFwM|zB=5SEfYkhLlwC^qvrqX@`#($kmZGYUeuK$jqK zS%9`qpZ-f9D252hD-A8ckZdf5g(Q#<2}uEPNU{L=8>Y*Z0DTU$R1Jv>v>D8uF?}9L zmiaWqdLfV!WHC@^poxJTGIx4_5u+l)A(G%I1qC|;7<{mY(bEg{7)9YR%=E#2dZ00* zCP+ObiqD<_fj{;zdip~>Ms+;Wiu#P|0_ZU~z5h5cz(J9VLki>#>{9J3Oc;Tf35c12 Pm<5Pgx34f^bN2uMEeHBn delta 985 zcmezWUGn`;$%ZYAKH7}eru%9$%8BT3a0_X0o;?EsZ|nvBue>>nd-}vGMp4OAOcsnn zIvhOsrFpSSPd}r}s62gk6(jfbN7{@c)A{rm`5{~<14fPM0dQ`R4x`%i32^Qt5cdL{ zt9=Zp_n#i4B1A8kYp0LQHS84Uy2!#Mnvt2FQJz?-n_QWklL}&_CKgu$ojcr*#?S_+eH->FE!& z8O1=+&WR!8V8EyaN&%QM0Xo360Za^-G7~^Dz;waM4l`fz7^560X-K1r08 iZ%&_M$f!8v(|Y?3V@4om0%B$$W&vW>?K_Ow+&utYdTmz# diff --git a/data/drules_proto.txt b/data/drules_proto.txt index edbf48e1ee..bbcab95a8a 100644 --- a/data/drules_proto.txt +++ b/data/drules_proto.txt @@ -23139,10 +23139,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23152,10 +23148,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23165,10 +23157,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23177,10 +23165,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23190,10 +23178,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23211,10 +23199,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -23231,10 +23219,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -23251,10 +23239,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -23271,10 +23259,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -23291,10 +23279,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -23315,10 +23303,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23328,10 +23312,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23341,10 +23321,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23355,8 +23331,8 @@ cont { width: 1.1 color: 2572571903 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23368,8 +23344,8 @@ cont { width: 1.2 color: 2153141503 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23389,8 +23365,8 @@ cont { width: 1.3 color: 1716933887 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23409,8 +23385,8 @@ cont { width: 1.4 color: 1716933887 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23429,8 +23405,8 @@ cont { width: 1.6 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23449,8 +23425,8 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23469,8 +23445,8 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23491,10 +23467,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 2.2 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23504,10 +23476,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 2.2 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23517,10 +23485,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 2.2 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23529,10 +23493,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2566979668 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -23542,10 +23506,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147549268 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -23563,10 +23527,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711341652 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -23583,10 +23547,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711341652 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -23603,10 +23567,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23623,10 +23587,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23643,10 +23607,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23667,10 +23631,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23680,10 +23640,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23693,10 +23649,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23705,10 +23657,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -23718,10 +23670,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -23739,10 +23691,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -23759,10 +23711,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -23779,10 +23731,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -23799,10 +23751,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -23819,10 +23771,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } diff --git a/data/drules_proto_default_dark.bin b/data/drules_proto_default_dark.bin index d650977593ca7249f51c0ee36476a3036fca2cd3..5053aa417e1ee02add7813fa08b738eb689f1abb 100644 GIT binary patch delta 805 zcmdn=U*gd}iH0qVZBmTSrngHm%1sv%XOxLP4XE~*WxC9u$;DbGcW^hnA z#bm)K=c^0%^qbkCXz0zd5`G^fLKK1oK2 z>D97~{Djo(2C9(&nlqOfWKJ3wusJ|zvFQueGKx);VHCozV!8uCCDNVZTo0MKL^Cqe zGs+Vyb(1TTb5cQ!)WqWH0^*D^(~l|u1Lk!oBlq-o3XIASmXa)^`E;uwpcua-qd3Sv za!6dD)8(e`0?FQ5%_stNrXqp|auO1k1!(=_={0hU(ulBUoz(d39Ov|aC`M5UY=I4w zZUYCl064H&fc$OK_eU{`!5zboE(Qurkl4KG_R&Cfi`IgjC4?pf4lXn?kON;%FH-iHP~LXF%YOJ&eYdI$&}z8lnc|AyBGANgdNKtY(x0r3&ma dVDDjgo;?EsZ|nt*|JpH|d-}yBM$zd73XCGG zK>le?2!E3tqsa6JGK~DwZznNwPk$iCr~#7R%m$HGl4n#y<|je}&qES=(9U#AzyFiH+4SGfaS^_`hZJR>tbqdc)vH@Px7Cl$mDiOjK zfKozS0<&g<0HXtpo}RD3C@KLCPb|{YH^?!HfkKy)AEp6HProO}s0GrunGKsh1$jmd z+_DKkS#X>(Bk7%fcMYQ)C@Q4cVRnE;fU$up0*a8o)2$R36$ev5F;fsEiE&-G^b>GjX0z9bTe5- ze%4dKl{m#@!6@Xw!7rr2X$%IR?FE3+4U+|#g;^OK6izWsPvl}0nLbyZ zQAiRfv4KrWh)ZDBOc3~K51~07reBm~l$icNo{^uB8U+PLehHvCGnhfBFykC$as2D6ypep6&r zocg* zMS;rG_?<%n=D**ua Cnk6&< delta 730 zcmdncDcR5^*|3H2qm=P4W-h6W%=C=%#7f=d%H*6>5F;fsEiE&-G^a#Jhl5v0gY)be z5O`xR@PFmaS=`ebjTl9zbILL*PwzHj>g82p6q@dfD&~tR#?mRy^>zAf8AeHw!RD;*)A!3UN^4+qmXr{e zz^s`dz~}&@r*p_M%JIW^PZKXAKtYNra}X5Rz|h5%VUz*N00Wwn z9cF&tDn>bYSfdHUf*VyB6ykrUFI8Yv98@9R-mAn2#7scU48$xz%(}f-iA`Av03>DX AasU7T diff --git a/data/drules_proto_default_light.txt b/data/drules_proto_default_light.txt index e289c6aef5..87e439cead 100644 --- a/data/drules_proto_default_light.txt +++ b/data/drules_proto_default_light.txt @@ -21882,10 +21882,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -21894,10 +21890,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -21907,10 +21903,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -21928,10 +21924,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -21948,10 +21944,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -21968,10 +21964,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -21988,10 +21984,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -22008,10 +22004,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -22032,10 +22028,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -22046,8 +22038,8 @@ cont { width: 1.1 color: 2572571903 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22059,8 +22051,8 @@ cont { width: 1.2 color: 2153141503 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22080,8 +22072,8 @@ cont { width: 1.3 color: 1716933887 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22100,8 +22092,8 @@ cont { width: 1.4 color: 1716933887 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22120,8 +22112,8 @@ cont { width: 1.6 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -22140,8 +22132,8 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -22160,8 +22152,8 @@ cont { width: 1.8 color: 861295871 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -22182,10 +22174,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 2.2 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -22194,10 +22182,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2566979668 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -22207,10 +22195,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147549268 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -22228,10 +22216,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711341652 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -22248,10 +22236,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711341652 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -22268,10 +22256,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -22288,10 +22276,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -22308,10 +22296,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855703636 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -22332,10 +22320,6 @@ cont { lines { width: 0.9 color: 3008779519 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -22344,10 +22328,10 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -22357,10 +22341,10 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -22378,10 +22362,10 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -22398,10 +22382,10 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -22418,10 +22402,10 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -22438,10 +22422,10 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -22458,10 +22442,10 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } diff --git a/data/drules_proto_outdoors_dark.bin b/data/drules_proto_outdoors_dark.bin index a0ad6815adc5155ac8f5f744c6c8e2574929970e..96f9d8879784989af6a7875cdad038fd84522dab 100644 GIT binary patch delta 704 zcmX@!BK5sls$mP`Srx|p)6c0ehE2b(z^FH!ON&u_`Z;w*w&{}DjNH?UwHPI*dxOOI zHIT&2IDgvDnh64&(?4o4N>4uvBv8c+_|w3E%>hD-K@@sxGm2uD>B1o+!Nj#|x{5ku zAi4vklQ10!6Em0|0CI1)Jy6MKkRN~!6rJ9WET%X89Ef|`1gJ#(D5J>q1YJhf=^*!E zl>j*pO@gIUoNLeYQccESG^cTXux9`Rf$4>y(18aas)PkF#31SABEl delta 703 zcmey~EOop^s$mP`Srx|1)6c0ehKV?E@Cs>g&YB4VAMFK>|JpH|dAdLaqv-U&1B_zR z1#}n{rb|^Ya!;QG;!aRS;qqy~xWNY*MWzd=F-lDrsbCbG4&myea@81Fr(e)ul!llG z)4@8OUlUo3rBj^i+;jnT#=ybpwhPmJH5r4|v4xwI5SIWXBpDr`^mP9Nj1r(wl;TI1 znE;Xj1}F|0VAx8r!%Xo!$S4O2UIj+R=@2$BY%yfP!7GYI7#PB+!k|FDHoZriF>>$) Za{F0bMj&PaVrC#_0b6WUDVbkyHG3re}r^6^aIY*R(kzxA8eT)**6EqkVkof^> zj8fD2v>Dkrf7;KQ2?CtcC+=qyoBlw9QHmcTf+@o~{emu|D1RClusJ|zF}Oz7>HK=Q zq(5i_&BdmXrBj@1*YtjM#z2J2r(2mba!;SU59l6{!;!c^cPmWaZ3U9u&nN zMCs|Ptbs~S9D*nTy9-$i4W|BMrB5s={vL-MJK0;@<9cp zrU&RUiVK`Q0|I~SVf6HgN{r&u`*ay4a7bNHW0YWrM&9&&hZyBR0S|F8sxZi6WUDVImG3yh0kBvu1+8M|*+Sv(L_Ao*r1mC^}t8nNf0j zoerby^yn%^?&--IK<<8It{FsvWj~|HbQ@hpsp+9rjDpj_+-eXvK$DRTNy#oOVm~p( zSUSbI&P}gYXAB&iZo4pjhbCjN2DWgM655ocF=B@)`?Zfz4jjIyBA_5f6#)e>st71}QA9w2du{r6ZN|vK7r5;fdW=BK1jNih O%mT!$+b#6iY9axbVBz5a diff --git a/data/drules_proto_outdoors_light.txt b/data/drules_proto_outdoors_light.txt index aef59784e4..721744e5aa 100644 --- a/data/drules_proto_outdoors_light.txt +++ b/data/drules_proto_outdoors_light.txt @@ -22748,10 +22748,6 @@ cont { lines { width: 1.1 color: 861097451 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -22770,8 +22766,8 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22791,8 +22787,8 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22812,8 +22808,8 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -22832,8 +22828,8 @@ cont { width: 2.0 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.6 + dd: 3.2 } priority: 330 } @@ -22852,8 +22848,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -22872,8 +22868,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -22892,8 +22888,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 5.6 } priority: 330 } @@ -22934,10 +22930,6 @@ cont { lines { width: 1.1 color: 861097451 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -22956,8 +22948,8 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22977,8 +22969,8 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22998,8 +22990,8 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23018,8 +23010,8 @@ cont { width: 2.0 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23038,8 +23030,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23058,8 +23050,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23078,8 +23070,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 6.0 + dd: 3.5 } priority: 330 } @@ -23120,10 +23112,6 @@ cont { lines { width: 1.1 color: 861097451 - dashdot { - dd: 2.2 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23142,8 +23130,8 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -23163,8 +23151,8 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -23184,8 +23172,8 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -23204,8 +23192,8 @@ cont { width: 2.0 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 1.6 + dd: 6.0 } priority: 330 } @@ -23224,8 +23212,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23244,8 +23232,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23264,8 +23252,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.2 - dd: 2.2 + dd: 2.8 + dd: 8.0 } priority: 330 } @@ -23306,10 +23294,6 @@ cont { lines { width: 1.1 color: 861097451 - dashdot { - dd: 5.0 - dd: 2.2 - } priority: 330 cap: BUTTCAP } @@ -23328,8 +23312,8 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -23349,8 +23333,8 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.0 + dd: 1.0 } priority: 330 cap: BUTTCAP @@ -23370,8 +23354,8 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -23390,8 +23374,8 @@ cont { width: 2.0 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 1.8 + dd: 1.8 } priority: 330 } @@ -23410,8 +23394,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -23430,8 +23414,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } @@ -23450,8 +23434,8 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 5.0 - dd: 2.2 + dd: 2.8 + dd: 3.5 } priority: 330 } diff --git a/data/patterns.txt b/data/patterns.txt index 79a0f76c6b..30c8094804 100644 --- a/data/patterns.txt +++ b/data/patterns.txt @@ -24,8 +24,18 @@ 10.8 4.5 13.5 5.4 18.0 6.2 -5.0 2.2 -2.2 2.2 +1.0 2.0 +1.6 3.2 +2.8 5.6 +3.5 2.0 +4.0 2.5 +6.0 3.5 +1.0 4.0 +1.6 6.0 +2.8 8.0 +1.0 1.0 +1.8 1.8 +2.8 3.5 5.0 2.0 6.0 2.5 8.0 3.0 @@ -36,25 +46,18 @@ 10.0 6.7 2.0 1.0 3.6 1.6 +5.0 2.2 5.4 2.7 7.0 3.0 16.2 8.1 5.0 5.0 4.0 4.0 -3.5 2.0 -4.0 2.5 -6.0 3.5 8.0 4.5 3.5 2.7 4.0 3.2 6.0 4.7 8.0 6.2 -1.0 2.0 1.8 2.5 -2.8 3.5 -1.0 4.0 -1.6 6.0 -2.8 8.0 1.5 1.3 1.8 1.6 2.5 2.2 diff --git a/data/styles/default/dark/colors.mapcss b/data/styles/default/dark/colors.mapcss index e26c765052..ecba304bf8 100644 --- a/data/styles/default/dark/colors.mapcss +++ b/data/styles/default/dark/colors.mapcss @@ -113,6 +113,8 @@ @pedestrian: #4D4744; @footway: #4B4643; @cycleway: #6E3D47; +@cycleway_mtb: #BA707f; +@cycleway_mtbexpert: #D98092; @construction: #332F2D; @track: #5F532D; @path: #944A12; diff --git a/data/styles/default/include/Roads.mapcss b/data/styles/default/include/Roads.mapcss index de6bcbac66..22e7594db4 100644 --- a/data/styles/default/include/Roads.mapcss +++ b/data/styles/default/include/Roads.mapcss @@ -648,14 +648,51 @@ line|z13-[highway=cycleway][!_mtb_rating?], line|z14-[highway=path][bicycle=designated]::cycleline, line|z15-[highway=footway][bicycle=designated]::cycleline, {color: @cycleway;} -line|z13-[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 2;dashes: 5,2.2;} -line|z13-[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway;width: 1.5;dashes: 5,2.2;} -line|z13-[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway;width: 1;dashes: 5,2.2;} -line|z13-[highway=cycleway][_mtb_rating=expert], -{color: @cycleway;width: 1;dashes: 2.2,2.2;} + +line|z14[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 2; dashes: 3.5,2;} +line|z15[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 2; dashes: 3.5,2;} +line|z16[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 2.5; dashes: 4,2.5;} +line|z17[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 3; dashes: 4,2.5;} +line|z18-[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 3; dashes: 6,3.5;} + +line|z14[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtb;width: 2; dashes: 1,1;} +line|z15[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtb;width: 2; dashes: 1,1;} +line|z16[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtb;width: 2.5; dashes: 1.8,1.8;} +line|z17[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtb;width: 3; dashes: 1.8,1.8} +line|z18-[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtb;width: 3; dashes: 2.8,3.5;} + +line|z14[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtb;width: 2; dashes: 1,2;} +line|z15[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtb;width: 2; dashes: 1,2;} +line|z16[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtb;width: 2.5; dashes: 1.6,3.2;} +line|z17[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtb;width: 3; dashes: 1.6,3.2;} +line|z18-[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtb;width: 3; dashes: 2.8,5.6;} + +line|z14[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 0.9; dashes: 1,4;} +line|z15[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 1.1; dashes: 1,4;} +line|z16[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 1.5; dashes: 1.6,6;} +line|z17[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 2; dashes: 1.6,6;} +line|z18-[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 2.8; dashes: 2.8,8;} + line|z13-[highway=construction], {color: @construction;opacity: 0.7;} line|z13-[highway=pedestrian][bridge?]::bridgewhite, diff --git a/data/styles/default/light/colors.mapcss b/data/styles/default/light/colors.mapcss index ae93e06ac3..c8d4458d0a 100644 --- a/data/styles/default/light/colors.mapcss +++ b/data/styles/default/light/colors.mapcss @@ -113,6 +113,8 @@ @pedestrian: #F8F8F8; @footway: #F8F8F8; @cycleway: #5654FF; +@cycleway_mtb: #04027A; +@cycleway_mtbexpert: #010054; @construction: #BBBBAA; @track: #635730; @path: #A05012; diff --git a/drape_frontend/rule_drawer.cpp b/drape_frontend/rule_drawer.cpp index e20f20b340..2146dd0c18 100644 --- a/drape_frontend/rule_drawer.cpp +++ b/drape_frontend/rule_drawer.cpp @@ -321,27 +321,6 @@ void RuleDrawer::ProcessLineStyle(FeatureType & f, Stylist const & s, TInsertSha ApplyLineFeatureGeometry applyGeom(m_context->GetTileKey(), insertShape, f, m_currentScaleGtoP); f.ForEachPoint(applyGeom, m_zoomLevel); - int a = 10; - if(f.DebugString().find("cycleway") != std::string::npos && f.DebugString().find("nocycleway") == std::string::npos) - { - if(f.DebugString().find("easy") != std::string::npos) - { - std::cout< Date: Tue, 17 Dec 2024 22:25:32 +0100 Subject: [PATCH 09/19] removed debuging command --- generator/generator_tool/generator_tool.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp index eff2f40727..6cbdc98f33 100644 --- a/generator/generator_tool/generator_tool.cpp +++ b/generator/generator_tool/generator_tool.cpp @@ -71,7 +71,7 @@ DEFINE_bool(fail_on_coasts, false, "Stop and exit with '255' code if some coastlines are not merged."); DEFINE_bool(emit_coasts, false, "Push coasts features from intermediate file to out files/countries."); - + // Generator settings and paths. DEFINE_string(osm_file_name, "", "Input osm area file."); DEFINE_string(osm_file_type, "", "Input osm area file type [xml, o5m]."); @@ -97,7 +97,7 @@ DEFINE_bool(generate_index, false, "4rd pass - generate index."); DEFINE_bool(generate_search_index, false, "5th pass - generate search index."); DEFINE_bool(dump_cities_boundaries, false, "Dump cities boundaries to a file"); DEFINE_bool(generate_cities_boundaries, false, "Generate the cities boundaries section"); -DEFINE_string(cities_boundaries_data, false, "File with cities boundaries"); +DEFINE_string(cities_boundaries_data, "", "File with cities boundaries"); DEFINE_bool(generate_cities_ids, false, "Generate the cities ids section"); @@ -172,7 +172,7 @@ DEFINE_string(dump_feature_names, "", "Print all feature names by 2-letter local // Service functions. DEFINE_bool(generate_classif, false, "Generate classificator."); -DEFINE_bool(generate_packed_borders, Debug_generate_packed_borders, "Generate packed file with country polygons."); +DEFINE_bool(generate_packed_borders, false, "Generate packed file with country polygons."); DEFINE_string(unpack_borders, "", "Convert packed_polygons to a directory of polygon files (specify folder)."); DEFINE_bool(unpack_mwm, false, -- 2.45.3 From 8008291d41159875a13e029cc2714473c2fb500a Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Wed, 18 Dec 2024 21:19:52 +0100 Subject: [PATCH 10/19] deleted S-rating as rarley used --- generator/osm2type.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 81b4c6b037..125ad3aec5 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -838,17 +838,11 @@ string DetermineMtbRating(OsmElement * p) static std::map mtbscaleToRatingConversion = { {"0", eMtbRating::easy}, - {"S0", eMtbRating::easy}, {"1", eMtbRating::intermediate}, - {"S1", eMtbRating::intermediate}, {"2", eMtbRating::intermediate}, - {"S2", eMtbRating::intermediate}, {"3", eMtbRating::difficult}, - {"S3", eMtbRating::difficult}, {"4", eMtbRating::expert}, - {"S4", eMtbRating::expert}, {"5", eMtbRating::expert}, - {"S5", eMtbRating::expert}, }; static std::map imbabscaleToRatingConversion = { -- 2.45.3 From b64ccc7e49f84bedadfc854fd7dde64c41f8c1d5 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Wed, 18 Dec 2024 21:23:58 +0100 Subject: [PATCH 11/19] changed styles.md back --- docs/STYLES.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/docs/STYLES.md b/docs/STYLES.md index a72ca93b79..a996fee142 100644 --- a/docs/STYLES.md +++ b/docs/STYLES.md @@ -66,16 +66,15 @@ preferably look for icons in [collections OM uses already](../data/copyright.htm 1. Add it into `data/mapcss-mapping.csv` (or better replace existing `deprecated` line) to make OM import it from OSM 2. If necessary merge similar tags in via `data/replaced_tags.txt` -3. Add new classification to `classificator.txt`, e.g. world + highway + path + expert -4. Define a priority for the new feature type in e.g. [`priorities_4_overlays.prio.txt`](../data/styles/default/include/priorities_4_overlays.prio.txt) and/or other priorities files -5. Add a new icon (see [above](#how-to-add-a-new-icon)) and/or other styling (area, line..) -6. If a new POI should be OSM-addable/editable then add it to `data/editor.config` -7. Add new type translation into `data/strings/types_strings.txt` -8. Add search keywords into `data/categories.txt` -9. Run `tools/unix/generate_localizations.sh` to validate and distribute translations into iOS and Android -10. Add new or fix current classifier tests at `/generator/generator_tests/osm_type_tests.cpp` if you can -11. [Test](#testing-your-changes) your changes -12. Relax and wait for the next maps update :) +3. Define a priority for the new feature type in e.g. [`priorities_4_overlays.prio.txt`](../data/styles/default/include/priorities_4_overlays.prio.txt) and/or other priorities files +4. Add a new icon (see [above](#how-to-add-a-new-icon)) and/or other styling (area, line..) +5. If a new POI should be OSM-addable/editable then add it to `data/editor.config` +6. Add new type translation into `data/strings/types_strings.txt` +7. Add search keywords into `data/categories.txt` +8. Run `tools/unix/generate_localizations.sh` to validate and distribute translations into iOS and Android +9. Add new or fix current classifier tests at `/generator/generator_tests/osm_type_tests.cpp` if you can +10. [Test](#testing-your-changes) your changes +11. Relax and wait for the next maps update :) ## Testing your changes -- 2.45.3 From 34acd4ed92b936519b069c8e0e7ac4870eda5180 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Fri, 20 Dec 2024 15:41:02 +0100 Subject: [PATCH 12/19] changed the width of mtb trails, changed colors of cycleway and colors of trails --- data/colors.txt | 21 +- data/drules_proto.bin | Bin 424959 -> 424852 bytes data/drules_proto.txt | 260 +++++++++++------------ data/drules_proto_default_dark.bin | Bin 409442 -> 409390 bytes data/drules_proto_default_dark.txt | 152 +++++++------ data/drules_proto_default_light.bin | Bin 410800 -> 410741 bytes data/drules_proto_default_light.txt | 226 ++++++++++---------- data/drules_proto_outdoors_dark.bin | Bin 426487 -> 426487 bytes data/drules_proto_outdoors_dark.txt | 36 ++-- data/drules_proto_outdoors_light.bin | Bin 427956 -> 427956 bytes data/drules_proto_outdoors_light.txt | 36 ++-- data/patterns.txt | 14 +- data/styles/default/dark/colors.mapcss | 4 +- data/styles/default/include/Roads.mapcss | 102 ++++----- data/styles/default/light/colors.mapcss | 6 +- 15 files changed, 411 insertions(+), 446 deletions(-) diff --git a/data/colors.txt b/data/colors.txt index 146a490a83..f46bfba37d 100644 --- a/data/colors.txt +++ b/data/colors.txt @@ -19,6 +19,7 @@ 152955 160412 240116 +262778 328965 352205 394752 @@ -134,6 +135,7 @@ 5395026 5459435 5592405 +5657855 5666134 5717555 5845795 @@ -208,6 +210,7 @@ 10506258 10592406 10790054 +10879133 11053224 11057133 11112295 @@ -227,6 +230,7 @@ 12000284 12039862 12105912 +12218495 12372094 12517551 12763315 @@ -340,7 +344,6 @@ 671057702 671061056 671088639 -855703636 855900794 856032768 856756480 @@ -361,7 +364,6 @@ 860629531 861027891 861097451 -861295871 861355571 861690961 861690972 @@ -379,12 +381,10 @@ 865356306 865871792 866144274 -867856511 868514559 868862139 869387687 869585866 -869892242 870704341 871230427 871954680 @@ -496,7 +496,6 @@ 1545508592 1560281087 1711276032 -1711341652 1711538810 1711670784 1711677478 @@ -530,17 +529,14 @@ 1720994322 1721144710 1721782290 -1723494527 1724152575 1724368575 1724500155 1724896680 -1725530258 1728053247 1931024665 1943327690 2147483648 -2147549268 2147746426 2147812613 2147878400 @@ -563,7 +559,6 @@ 2152483916 2152615485 2153076053 -2153141503 2153536593 2153769774 2153921919 @@ -582,11 +577,9 @@ 2157739365 2159194530 2159483932 -2159702143 2160246963 2160360191 2160707771 -2161737874 2162418130 2162506037 2163123456 @@ -597,7 +590,6 @@ 2370396489 2371253590 2566914048 -2566979668 2567176826 2567571981 2567645179 @@ -611,7 +603,6 @@ 2570486556 2571723081 2571847235 -2572571903 2572580182 2573200174 2573352319 @@ -620,11 +611,9 @@ 2576111654 2576201856 2576782726 -2579132543 2579790591 2580006591 2580534696 -2581168274 2582553856 2583230712 2583432731 @@ -634,6 +623,7 @@ 2790683990 2801593470 3003121664 +3003384442 3003473869 3003715338 3003779597 @@ -645,7 +635,6 @@ 3006694172 3007916315 3008113177 -3008779519 3009559935 3010346311 3015998207 diff --git a/data/drules_proto.bin b/data/drules_proto.bin index 9894c46f6443bb6c9b2fe40ddb3e1f5af5588b7e..93976db3d77674fb9b6b87b72e7547ba0f98906f 100644 GIT binary patch delta 1809 zcmbuA-%FEG7{`64(|49`JKNk=W)_;;oNnR@VLy$aZcGK~vKXT6S6Wu6-S`ShP&Y-= zvkUzL8eQxnFzBW(0*NBLjBe_tix4Wv42kTV_xS$U-X)PQ9C)7dInVj=<$KP%v*lje za*I!3uA^pq;a(oCUTES`u}h9xLOfc-^$ut<(s81I{XsZ{S3+QBd9fCU{ou0u1S=t? zaq0UJx2Oa!dce%*z2*Ur5*@~;9%xWf7k>1BpQn58>+2L6Nr$OQ`o6|3 zJCEKyNIGm74?>-d#09egs}fq+Y>NsO(!N_*BQXO`2Ek8(RRKaNAUg1cSJ?gr>^d;n z1OC)zb-g2%zMPs)&UTH?j^@T#FqXVNOV9oPTKK3ICsZxA7cBT82M(tsXpCwhL#l-g z(bElX5}{(WsbVlF-UJ6`y1_}IRe@BHa!ATyae`KU=9RX+puHl@1i+d7U0v_g3p8_e zZ0g3oBr3DZ%6#64_ou+&k~Gr#g_=pBcsdB~636`9r8>t@X{EAVpgM+nOaeN`lmXQ- zGGLB@1zhfdV}tv#N7>owRWV5Z(4U>(6;36Cl$>3@Es8@bUKuS_Rgf=~;t^V_zdTy1 z>QPe5T!PPfq4Qr}u}beLt1F@y;;&>8ABSL^&((BNjzn#AVKs3I?i$&cHGCU}5hXf{ z6A}KpuHjsy1hhnD5QxG^9ji6979RFP8xBRlhy$O1;L9iwHkpX;qcFsyKnw;2)+e+U z03i&`xEX_^E;20G>D$jA%U{yluMSzILzaAeU+Zb;#ph{xd736P;9N!ndhkw$|29Ni z$-oF(w^+;8eK8G3Fq4Jj*q4O{wI619e}GMy$CWJKb{@ZJqr~mS9MEQ46x^Upuu{4+DP?b+Y< zjJ}4E8pHm}FDbNp!PP>01yyNX3y5x^P;{D?7HRnrwW*LIf~00>*c0Zh^ylA@Ddg z%F}E&q0|5Yf~ZthAu2@)lG5YzAe*C-Plc$oQV_r1f(GoYgVLi-zt5xNB>leCku8cE z2?)efZ^sYiS^)?+XTs|GTmiC(Lz7YjnZ}JFaNv49*@q^Fa!{2JD%7L1JjKosR3EBE z9~JJeZ`+@)B2D>YtgJ`nmcNl2dE}d^TaV(T7fKJkocvYYi^^^O%PF(uma(-;(#uJe zbm7|uDA6jJgQ}ENp)S1Ccr=e~-ai3@P4X9Uwh8+96FaN)Mw+1ulg(gbzydK>jkKG_ zcWuytvu*r)U?zL6Gr;wB85nGbEN~vpVXz9+fw}4x;EPr`g~k;q!E0d;%isdF-b!3TSR z{|{cWPK#m`o&G?Mkwrwvo`WAQ%iw?_D=BQtAt0m*)ye{qoL&IZt0d1T4wMyy%W`0m z6~d7H0Mfe%qE{HNtO#~lB?U%t#w*hcWEdrh@$2zlJD8_W3}qCR0EYycU*WRTe*w)y z_bgcUK_JkmjDDHfXnM*t) zGd-g`u~Ij=GC3y|#7M0uNG&Q6A|k5iHqO8m)xd;+EQ{*<9}r0#Q4LHbAgw5}2;T#f z30M|;RAZAx_#Z_U9MyNGTPZLq5);*+WQ{wj;j&nx8Z3)5sxf2{o`t3Qgdkut0mU^i n5uwC2STC|H!m}uPL9yMgs>BGyOhC*G#4JF}x?NR?%~lowF0JpM delta 1097 zcmb7@%Syvg5Qd$`#v}`EleB4LtIb9Qb>&7}H1!c&=*mqg-oS<6Lfk20i%WGes3`aX zZoIyM;0>QZynxVMMG+KHCnvOWPPOX5FoFNeaQ-=ScHU#R@3FZ($lGv_1shsWx4`c2 zQX2IRb$!i?2RHO_T|8H9T?^H*D7k*E%cM>My`X25CZc;-JTiK5H7pr;n}9?|S_$cG z>iL-$PfXmGy;gqn7uT<91{>oLBRWj@}!E$wko2#mHGP%70+z24Z#>GdA1f;HZK!@aee^I&T5OarTz=>-^80+uC-r4nJQOCw+fdm kz5rZyz#)j6%1;nCpzokmq2vH%fKsBYrwksJ966o*1j|^H!2kdN diff --git a/data/drules_proto_default_dark.txt b/data/drules_proto_default_dark.txt index c5e937282d..c7a54616e7 100644 --- a/data/drules_proto_default_dark.txt +++ b/data/drules_proto_default_dark.txt @@ -21881,7 +21881,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3010346311 priority: 330 cap: BUTTCAP } @@ -21889,11 +21888,11 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2579132543 + width: 1.0 + color: 12218495 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -21902,11 +21901,11 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2159702143 + width: 2.0 + color: 12218495 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -21923,11 +21922,11 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1723494527 + width: 2.5 + color: 12218495 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -21943,11 +21942,11 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1723494527 + width: 3.0 + color: 12218495 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -21963,11 +21962,11 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -21983,11 +21982,11 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22003,11 +22002,11 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22027,7 +22026,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3010346311 priority: 330 cap: BUTTCAP } @@ -22035,8 +22033,8 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2574138695 + width: 1.0 + color: 7224647 dashdot { dd: 3.5 dd: 2.0 @@ -22048,8 +22046,8 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2154708295 + width: 2.0 + color: 7224647 dashdot { dd: 3.5 dd: 2.0 @@ -22069,8 +22067,8 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1718500679 + width: 2.5 + color: 7224647 dashdot { dd: 4.0 dd: 2.5 @@ -22089,8 +22087,8 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1718500679 + width: 3.0 + color: 7224647 dashdot { dd: 4.0 dd: 2.5 @@ -22109,8 +22107,8 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 862862663 + width: 3.0 + color: 7224647 dashdot { dd: 6.0 dd: 3.5 @@ -22129,8 +22127,8 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 862862663 + width: 3.0 + color: 7224647 dashdot { dd: 6.0 dd: 3.5 @@ -22149,8 +22147,8 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 862862663 + width: 3.0 + color: 7224647 dashdot { dd: 6.0 dd: 3.5 @@ -22173,7 +22171,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3010346311 priority: 330 cap: BUTTCAP } @@ -22181,8 +22178,8 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2581168274 + width: 1.0 + color: 10879133 dashdot { dd: 1.0 dd: 4.0 @@ -22194,8 +22191,8 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2161737874 + width: 1.0 + color: 10879133 dashdot { dd: 1.0 dd: 4.0 @@ -22215,8 +22212,8 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1725530258 + width: 1.5 + color: 10879133 dashdot { dd: 1.6 dd: 6.0 @@ -22235,8 +22232,8 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1725530258 + width: 2.0 + color: 10879133 dashdot { dd: 1.6 dd: 6.0 @@ -22255,8 +22252,8 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 869892242 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22275,8 +22272,8 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 869892242 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22295,8 +22292,8 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 869892242 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22319,7 +22316,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3010346311 priority: 330 cap: BUTTCAP } @@ -22327,11 +22323,11 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2579132543 + width: 1.0 + color: 12218495 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22340,11 +22336,11 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2159702143 + width: 2.0 + color: 12218495 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22361,11 +22357,11 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1723494527 + width: 2.5 + color: 12218495 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22381,11 +22377,11 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1723494527 + width: 3.0 + color: 12218495 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22401,10 +22397,10 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -22421,10 +22417,10 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -22441,10 +22437,10 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 867856511 + width: 3.0 + color: 12218495 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 diff --git a/data/drules_proto_default_light.bin b/data/drules_proto_default_light.bin index 7db6e4859fae1cf7febb62451e1f731d8d169a14..21bad76186cc3d12741a9eecd6e33868e9fb6bcd 100644 GIT binary patch delta 1565 zcmbW1Ur19?9LN1_v+fq@-Pz`L@6>J1Y0jGu32B(k2%?8#(Ut}EBBr?zA}G?AF+r$7 zkbq zSH9m>acs7l>4T%wqmyHLa3wQ7o*BJ0d6O|| zKWi{{yqOS((JeKwPG=o&TM7C1;`+l8pGTF41WwRdnYeDq#CR$M&7MI?W-%kx!I=%G zLZA_F7lBj`SQXe78J^vMw+c*!L4#HN*bGWXElF{b)L}{5nUyhe34DHT{xK3{LK0*` z9BToE9VJEWmLeU_QzpJ>0Y5=^5t6D($SR@xGGz`dg4dVVlRbao-d(vP?{|H`x2+IN z*OFV|;FFn!dX>3k(^B!SHG(EbU$s}%>Z|^`g#h=?JUz|UeKbSHE(GtwbYq+xaepTIXXy=nzw(K36|Qb z33$H^dc?2$pXKR*C=h3&FfP_96r)JHIY!ZNVWS<6J6w9*afX+mA8;fFQA~D0x1P9y z*)BM%M>$-hXfH2I;U&DT(X7*P=#q>Pz^5J1jGJ)?;p;fa<>Lh!f7V(0nVAa^#2@FN zQDwt5O0L+;OJh>6kkgYAJ6PUBJJ>i6t(Z(fn~zbYef&soKSiarQ#RhXNPpPZ6!eJ$ c$fjWkucble-8hA2erLLPLJ!BBhLhrTe5JbI*wXNYxP>4{ps9-{v zA#`j5qsQ!JkwEaFhn_?#3VP`&BM72M`-LL1bLZ|(&iJ<%F8AE|zWL5Q=iGaKTvrO? zO70Qd@H^HXyw2mKAAHPO!kHNOs>m7^F&cp&zVSmHL+0>>0t(gyEZf7yZ60$$P&^6I zBg@jWr)>PuT!u6Q@aB4602cy~v^#bvkX-NhgaUg_$03|j;E1`^`OhRB!ec=W7)SUI z1g<&X3(jD+|9p0^cW8g#P~X5gW}NNMWcvFq4_uN1Vy#?XJnSca*cx@IvIFF#xLa

bGePd+m&R8Kdn2F_*-hk(F@Ek$mWf=_VMm=7m@@ypI>lEXwm$@4V%#rxQiVz< zp$e73uP>YL823Bh;`0Vj+RDx?yK@p2bnq%h>TSv77m>kuypb-LEs@5({F??JPBem_ zP)p{lXnm(>Nfn`a0WXH3)oag+6|yA2gp%+MXTlIFKh#&b(M1WD!w~e?q9i0Y@M?lf4$sr}Nt3fE1Ra3)bZErK-B62T-QZ#_m<%rKpt8^H zOn9!E34cx#Gus0(ubaBR*|&idH C35U4= diff --git a/data/drules_proto_default_light.txt b/data/drules_proto_default_light.txt index 87e439cead..c86d51ac5d 100644 --- a/data/drules_proto_default_light.txt +++ b/data/drules_proto_default_light.txt @@ -21585,7 +21585,7 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 + color: 3003384442 priority: 330 cap: BUTTCAP } @@ -21594,7 +21594,7 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 priority: 330 cap: BUTTCAP } @@ -21603,7 +21603,7 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 priority: 330 cap: BUTTCAP } @@ -21620,7 +21620,7 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 priority: 330 } path_text { @@ -21636,7 +21636,7 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 priority: 330 } path_text { @@ -21652,7 +21652,7 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21668,7 +21668,7 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21684,7 +21684,7 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21703,7 +21703,7 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 + color: 3003384442 priority: 330 cap: BUTTCAP } @@ -21712,7 +21712,7 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 priority: 330 cap: BUTTCAP } @@ -21727,7 +21727,7 @@ cont { } lines { width: 1.2 - color: 2153141503 + color: 2147746426 priority: 330 cap: BUTTCAP } @@ -21750,7 +21750,7 @@ cont { } lines { width: 1.3 - color: 1716933887 + color: 1711538810 priority: 330 } path_text { @@ -21778,7 +21778,7 @@ cont { } lines { width: 1.4 - color: 1716933887 + color: 1711538810 priority: 330 } path_text { @@ -21806,7 +21806,7 @@ cont { } lines { width: 1.6 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21834,7 +21834,7 @@ cont { } lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21862,7 +21862,7 @@ cont { } lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } path_text { @@ -21881,7 +21881,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 priority: 330 cap: BUTTCAP } @@ -21889,11 +21888,11 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2567176826 + width: 1.0 + color: 5657855 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -21902,11 +21901,11 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2147746426 + width: 2.0 + color: 5657855 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -21923,11 +21922,11 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1711538810 + width: 2.5 + color: 5657855 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -21943,11 +21942,11 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1711538810 + width: 3.0 + color: 5657855 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -21963,11 +21962,11 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -21983,11 +21982,11 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22003,11 +22002,11 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22027,7 +22026,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 priority: 330 cap: BUTTCAP } @@ -22035,8 +22033,8 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2572571903 + width: 1.0 + color: 262778 dashdot { dd: 3.5 dd: 2.0 @@ -22048,8 +22046,8 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2153141503 + width: 2.0 + color: 262778 dashdot { dd: 3.5 dd: 2.0 @@ -22069,8 +22067,8 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1716933887 + width: 2.5 + color: 262778 dashdot { dd: 4.0 dd: 2.5 @@ -22089,8 +22087,8 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1716933887 + width: 3.0 + color: 262778 dashdot { dd: 4.0 dd: 2.5 @@ -22109,8 +22107,8 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 861295871 + width: 3.0 + color: 262778 dashdot { dd: 6.0 dd: 3.5 @@ -22129,8 +22127,8 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 861295871 + width: 3.0 + color: 262778 dashdot { dd: 6.0 dd: 3.5 @@ -22149,8 +22147,8 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 861295871 + width: 3.0 + color: 262778 dashdot { dd: 6.0 dd: 3.5 @@ -22173,7 +22171,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 priority: 330 cap: BUTTCAP } @@ -22181,8 +22178,8 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2566979668 + width: 1.0 + color: 10879133 dashdot { dd: 1.0 dd: 4.0 @@ -22194,8 +22191,8 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2147549268 + width: 1.0 + color: 10879133 dashdot { dd: 1.0 dd: 4.0 @@ -22215,8 +22212,8 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1711341652 + width: 1.5 + color: 10879133 dashdot { dd: 1.6 dd: 6.0 @@ -22235,8 +22232,8 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1711341652 + width: 2.0 + color: 10879133 dashdot { dd: 1.6 dd: 6.0 @@ -22255,8 +22252,8 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 855703636 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22275,8 +22272,8 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 855703636 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22295,8 +22292,8 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 855703636 + width: 2.5 + color: 10879133 dashdot { dd: 2.8 dd: 8.0 @@ -22319,7 +22316,6 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 priority: 330 cap: BUTTCAP } @@ -22327,11 +22323,11 @@ cont { element { scale: 14 lines { - width: 1.1 - color: 2567176826 + width: 1.0 + color: 5657855 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22340,11 +22336,11 @@ cont { element { scale: 15 lines { - width: 1.2 - color: 2147746426 + width: 2.0 + color: 5657855 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -22361,11 +22357,11 @@ cont { element { scale: 16 lines { - width: 1.3 - color: 1711538810 + width: 2.5 + color: 5657855 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22381,11 +22377,11 @@ cont { element { scale: 17 lines { - width: 1.4 - color: 1711538810 + width: 3.0 + color: 5657855 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -22401,10 +22397,10 @@ cont { element { scale: 18 lines { - width: 1.6 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -22421,10 +22417,10 @@ cont { element { scale: 19 lines { - width: 1.8 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -22441,10 +22437,10 @@ cont { element { scale: 20 lines { - width: 1.8 - color: 855900794 + width: 3.0 + color: 5657855 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -22465,7 +22461,7 @@ cont { scale: 13 lines { width: 0.9 - color: 3008779519 + color: 3003384442 priority: 330 cap: BUTTCAP } @@ -22474,7 +22470,7 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 priority: 330 cap: BUTTCAP } @@ -22483,7 +22479,7 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 priority: 330 cap: BUTTCAP } @@ -22500,7 +22496,7 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 priority: 330 } path_text { @@ -22516,7 +22512,7 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 priority: 330 } lines { @@ -22548,7 +22544,7 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 priority: 330 } lines { @@ -22580,7 +22576,7 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } lines { @@ -22612,7 +22608,7 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 330 } lines { @@ -22957,7 +22953,7 @@ cont { scale: 15 lines { width: 1.2 - color: 2572571903 + color: 2567176826 priority: 170 cap: BUTTCAP } @@ -22984,7 +22980,7 @@ cont { scale: 16 lines { width: 1.3 - color: 2572571903 + color: 2567176826 priority: 170 } lines { @@ -23009,7 +23005,7 @@ cont { scale: 17 lines { width: 1.4 - color: 2153141503 + color: 2147746426 priority: 170 } lines { @@ -23034,7 +23030,7 @@ cont { scale: 18 lines { width: 1.6 - color: 2153141503 + color: 2147746426 priority: 170 } lines { @@ -23059,7 +23055,7 @@ cont { scale: 19 lines { width: 1.8 - color: 2153141503 + color: 2147746426 priority: 170 } lines { @@ -23084,7 +23080,7 @@ cont { scale: 20 lines { width: 1.8 - color: 2153141503 + color: 2147746426 priority: 170 } lines { @@ -26424,7 +26420,7 @@ cont { scale: 14 lines { width: 1.1 - color: 2572571903 + color: 2567176826 priority: 170 cap: BUTTCAP } @@ -26443,7 +26439,7 @@ cont { scale: 15 lines { width: 1.2 - color: 2153141503 + color: 2147746426 priority: 170 cap: BUTTCAP } @@ -26470,7 +26466,7 @@ cont { scale: 16 lines { width: 1.3 - color: 1716933887 + color: 1711538810 priority: 170 } lines { @@ -26495,7 +26491,7 @@ cont { scale: 17 lines { width: 1.4 - color: 1716933887 + color: 1711538810 priority: 170 } lines { @@ -26520,7 +26516,7 @@ cont { scale: 18 lines { width: 1.6 - color: 861295871 + color: 855900794 priority: 170 } lines { @@ -26545,7 +26541,7 @@ cont { scale: 19 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 170 } lines { @@ -26570,7 +26566,7 @@ cont { scale: 20 lines { width: 1.8 - color: 861295871 + color: 855900794 priority: 170 } lines { diff --git a/data/drules_proto_outdoors_dark.bin b/data/drules_proto_outdoors_dark.bin index 96f9d8879784989af6a7875cdad038fd84522dab..0a278dffaf419a0a94811d5ab6cc414ec854a71a 100644 GIT binary patch delta 75 zcmey~EcLxvs$mObx$1NiEk>E?7t|SLr*BYYLCEu4;h01 delta 308 zcmey~EcLxvs$mObx$5+<>WnheFQ_xhPT!!)$N}OS^UsqGzd%Bt$qa;X57S1)8 io@&J?xP6HRqcCH;wH^pF0WmWWvj8#cc56Mh%18j!s2oB7 delta 263 zcmdneFSVs#s$mP`Bh~3obQoo(@7H0Jotz`e0pc0+&zcDWKkXqj=k$kKj27&0js~N_ z^Z;!}4)!!K5S#u`gHd|=eqBaUEW-cLg|{cFGg`5N>|*+0KV4CS(HzEJsKsa~aP|xc z{IQ48(-k!trKUHiF^Xc5(q^=sUV4a8eEKe3pdz4~_#oV$DBN}nJw_mA0%B$$W&vW> K?G}1$HIV>mo?}t~ diff --git a/data/drules_proto_outdoors_light.txt b/data/drules_proto_outdoors_light.txt index 721744e5aa..9e795f6296 100644 --- a/data/drules_proto_outdoors_light.txt +++ b/data/drules_proto_outdoors_light.txt @@ -22767,7 +22767,7 @@ cont { color: 5459435 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -22788,7 +22788,7 @@ cont { color: 5459435 dashdot { dd: 1.0 - dd: 2.0 + dd: 4.0 } priority: 330 cap: BUTTCAP @@ -22809,7 +22809,7 @@ cont { color: 5459435 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -22829,7 +22829,7 @@ cont { color: 5459435 dashdot { dd: 1.6 - dd: 3.2 + dd: 6.0 } priority: 330 } @@ -22849,7 +22849,7 @@ cont { color: 5459435 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22869,7 +22869,7 @@ cont { color: 5459435 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -22889,7 +22889,7 @@ cont { color: 5459435 dashdot { dd: 2.8 - dd: 5.6 + dd: 8.0 } priority: 330 } @@ -23312,8 +23312,8 @@ cont { width: 1.3 color: 5459435 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23333,8 +23333,8 @@ cont { width: 1.5 color: 5459435 dashdot { - dd: 1.0 - dd: 1.0 + dd: 3.5 + dd: 2.0 } priority: 330 cap: BUTTCAP @@ -23354,8 +23354,8 @@ cont { width: 1.7 color: 5459435 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23374,8 +23374,8 @@ cont { width: 2.0 color: 5459435 dashdot { - dd: 1.8 - dd: 1.8 + dd: 4.0 + dd: 2.5 } priority: 330 } @@ -23394,7 +23394,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -23414,7 +23414,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 @@ -23434,7 +23434,7 @@ cont { width: 2.4 color: 5459435 dashdot { - dd: 2.8 + dd: 6.0 dd: 3.5 } priority: 330 diff --git a/data/patterns.txt b/data/patterns.txt index 30c8094804..1d12aeae08 100644 --- a/data/patterns.txt +++ b/data/patterns.txt @@ -24,18 +24,12 @@ 10.8 4.5 13.5 5.4 18.0 6.2 -1.0 2.0 -1.6 3.2 -2.8 5.6 -3.5 2.0 -4.0 2.5 -6.0 3.5 1.0 4.0 1.6 6.0 2.8 8.0 -1.0 1.0 -1.8 1.8 -2.8 3.5 +3.5 2.0 +4.0 2.5 +6.0 3.5 5.0 2.0 6.0 2.5 8.0 3.0 @@ -57,7 +51,9 @@ 4.0 3.2 6.0 4.7 8.0 6.2 +1.0 2.0 1.8 2.5 +2.8 3.5 1.5 1.3 1.8 1.6 2.5 2.2 diff --git a/data/styles/default/dark/colors.mapcss b/data/styles/default/dark/colors.mapcss index ecba304bf8..cae8ddb7b1 100644 --- a/data/styles/default/dark/colors.mapcss +++ b/data/styles/default/dark/colors.mapcss @@ -113,8 +113,8 @@ @pedestrian: #4D4744; @footway: #4B4643; @cycleway: #6E3D47; -@cycleway_mtb: #BA707f; -@cycleway_mtbexpert: #D98092; +@cycleway_mtbintermediate: #BA707f; +@cycleway_mtbexpert: #FF5CF6; @construction: #332F2D; @track: #5F532D; @path: #944A12; diff --git a/data/styles/default/include/Roads.mapcss b/data/styles/default/include/Roads.mapcss index 22e7594db4..18f4fb5d3a 100644 --- a/data/styles/default/include/Roads.mapcss +++ b/data/styles/default/include/Roads.mapcss @@ -644,55 +644,11 @@ line|z19-[highway=busway], line|z13-[highway=pedestrian], line|z13-[highway=ford] {color: @pedestrian;opacity: 0.85;} -line|z13-[highway=cycleway][!_mtb_rating?], +line|z13-[highway=cycleway][!_mtb_rating], line|z14-[highway=path][bicycle=designated]::cycleline, line|z15-[highway=footway][bicycle=designated]::cycleline, {color: @cycleway;} -line|z14[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 2; dashes: 3.5,2;} -line|z15[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 2; dashes: 3.5,2;} -line|z16[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 2.5; dashes: 4,2.5;} -line|z17[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 3; dashes: 4,2.5;} -line|z18-[highway=cycleway][_mtb_rating=easy], -{color: @cycleway;width: 3; dashes: 6,3.5;} - -line|z14[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway_mtb;width: 2; dashes: 1,1;} -line|z15[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway_mtb;width: 2; dashes: 1,1;} -line|z16[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway_mtb;width: 2.5; dashes: 1.8,1.8;} -line|z17[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway_mtb;width: 3; dashes: 1.8,1.8} -line|z18-[highway=cycleway][_mtb_rating=intermediate], -{color: @cycleway_mtb;width: 3; dashes: 2.8,3.5;} - -line|z14[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway_mtb;width: 2; dashes: 1,2;} -line|z15[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway_mtb;width: 2; dashes: 1,2;} -line|z16[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway_mtb;width: 2.5; dashes: 1.6,3.2;} -line|z17[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway_mtb;width: 3; dashes: 1.6,3.2;} -line|z18-[highway=cycleway][_mtb_rating=difficult], -{color: @cycleway_mtb;width: 3; dashes: 2.8,5.6;} - -line|z14[highway=cycleway][_mtb_rating=expert], -{color: @cycleway_mtbexpert;width: 0.9; dashes: 1,4;} -line|z15[highway=cycleway][_mtb_rating=expert], -{color: @cycleway_mtbexpert;width: 1.1; dashes: 1,4;} -line|z16[highway=cycleway][_mtb_rating=expert], -{color: @cycleway_mtbexpert;width: 1.5; dashes: 1.6,6;} -line|z17[highway=cycleway][_mtb_rating=expert], -{color: @cycleway_mtbexpert;width: 2; dashes: 1.6,6;} -line|z18-[highway=cycleway][_mtb_rating=expert], -{color: @cycleway_mtbexpert;width: 2.8; dashes: 2.8,8;} - line|z13-[highway=construction], {color: @construction;opacity: 0.7;} line|z13-[highway=pedestrian][bridge?]::bridgewhite, @@ -801,18 +757,18 @@ line|z16-[highway=pedestrian][bridge?]::bridgeblack, /* 8.4 Cycleway 13-22 ZOOM */ -line|z13[highway=cycleway], +line|z13[highway=cycleway][!_mtb_rating], {opacity: 0.3;} -line|z14[highway=cycleway], +line|z14[highway=cycleway][!_mtb_rating], line|z14[highway=path][bicycle=designated]::cycleline, {opacity: 0.4;} -line|z15[highway=cycleway], +line|z15[highway=cycleway][!_mtb_rating], line|z15[highway=path][bicycle=designated]::cycleline, {opacity: 0.5;} -line|z16-17[highway=cycleway], +line|z16-17[highway=cycleway][!_mtb_rating], line|z16-17[highway=path][bicycle=designated]::cycleline, {opacity: 0.6;} -line|z18-[highway=cycleway], +line|z18-[highway=cycleway][!_mtb_rating], line|z18-[highway=path][bicycle=designated]::cycleline, {opacity: 0.8;} @@ -821,7 +777,7 @@ line|z15-16[highway=footway][bicycle=designated]::cycleline, line|z17-[highway=footway][bicycle=designated]::cycleline, {opacity: 0.5;} -line|z13[highway=cycleway] +line|z13[highway=cycleway], {width: 0.9;} line|z14[highway=cycleway], line|z14[highway=path][bicycle=designated]::cycleline, @@ -875,6 +831,50 @@ line|z18[highway=cycleway][bridge?]::bridgeblack line|z19-[highway=cycleway][bridge?]::bridgeblack {casing-width-add: 3;} +line|z14[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 1; dashes: 3.5,2;} +line|z15[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 2; dashes: 3.5,2;} +line|z16[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 2.5; dashes: 4,2.5;} +line|z17[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 3; dashes: 4,2.5;} +line|z18-[highway=cycleway][_mtb_rating=easy], +{color: @cycleway;width: 3; dashes: 6,3.5;} + +line|z14[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtbintermediate;width: 1; dashes: 3.5,2;} +line|z15[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtbintermediate;width: 2; dashes: 3.5,2;} +line|z16[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtbintermediate;width: 2.5; dashes: 4,2.5;} +line|z17[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtbintermediate;width: 3; dashes: 4,2.5} +line|z18-[highway=cycleway][_mtb_rating=intermediate], +{color: @cycleway_mtbintermediate;width: 3; dashes: 6,3.5;} + +line|z14[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtbintermediate;width: 1; dashes: 1,4;} +line|z15[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtbintermediate;width: 2; dashes: 1,4;} +line|z16[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtbintermediate;width: 2.5; dashes: 1.6,6;} +line|z17[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtbintermediate;width: 3; dashes: 1.6,6;} +line|z18-[highway=cycleway][_mtb_rating=difficult], +{color: @cycleway_mtbintermediate;width: 3; dashes: 2.8,8;} + +line|z14[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 1; dashes: 1,4;} +line|z15[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 1; dashes: 1,4;} +line|z16[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 1.5; dashes: 1.6,6;} +line|z17[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 2; dashes: 1.6,6;} +line|z18-[highway=cycleway][_mtb_rating=expert], +{color: @cycleway_mtbexpert;width: 2.5; dashes: 2.8,8;} + /* 8.5 Construction 13-22 ZOOM */ line|z13[highway=construction], diff --git a/data/styles/default/light/colors.mapcss b/data/styles/default/light/colors.mapcss index c8d4458d0a..e0abb90d62 100644 --- a/data/styles/default/light/colors.mapcss +++ b/data/styles/default/light/colors.mapcss @@ -112,9 +112,9 @@ @residential: #F8F8F8; @pedestrian: #F8F8F8; @footway: #F8F8F8; -@cycleway: #5654FF; -@cycleway_mtb: #04027A; -@cycleway_mtbexpert: #010054; +@cycleway: #04027A; +@cycleway_mtbintermediate: #5654FF; +@cycleway_mtbexpert: #A6009D; @construction: #BBBBAA; @track: #635730; @path: #A05012; -- 2.45.3 From e74818c590700869bb27f2d4aa777e45bc3b87e0 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Mon, 23 Dec 2024 18:44:06 +0100 Subject: [PATCH 13/19] added _mtb_rating to the routing of bicycles --- routing_common/bicycle_model.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routing_common/bicycle_model.cpp b/routing_common/bicycle_model.cpp index 3b19b4f75a..b292ef83a0 100644 --- a/routing_common/bicycle_model.cpp +++ b/routing_common/bicycle_model.cpp @@ -172,6 +172,9 @@ VehicleModel::SurfaceInitList const kBicycleSurface = { {{"psurface", "paved_bad"}, {0.8, 0.8}}, {{"psurface", "unpaved_good"}, {1.0, 1.0}}, {{"psurface", "unpaved_bad"}, {0.3, 0.3}}, + {{"_mtb_rating", "intermediate"}, {0.3, 0.3}}, // similar to unpaved_bad + {{"_mtb_rating", "difficult"}, {0.1, 0.1}}, + {{"_mtb_rating", "expert"}, {0.05, 0.05}}, // no dedicated cycleway, doesn't mean that bicycle is not allowed, just lower weight {{"hwtag", "nocycleway"}, {0.8, 0.8}}, }; -- 2.45.3 From 4fca4b5af37250362ba6d6f930035113951726ee Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 19:10:11 +0100 Subject: [PATCH 14/19] added psurface depending on the mtb:rating, now all paths with a mtb.score:imba) tag get an mtb_rating --- generator/osm2type.cpp | 13 +++++++++---- routing_common/bicycle_model.cpp | 3 --- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 125ad3aec5..8117fdd4fc 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -575,6 +575,7 @@ string DetermineSurfaceAndHighwayType(OsmElement * p) double surfaceGrade = 2; // default is "normal" string highway; string trackGrade; + string mtb_rating; for (auto const & tag : p->m_tags) { @@ -590,6 +591,8 @@ string DetermineSurfaceAndHighwayType(OsmElement * p) highway = tag.m_value; else if (tag.m_key == "4wd_only" && (tag.m_value == "yes" || tag.m_value == "recommended")) return "unpaved_bad"; + else if (tag.m_key == "_mtb_rating") + mtb_rating = tag.m_value; } // According to https://wiki.openstreetmap.org/wiki/Key:surface @@ -736,7 +739,7 @@ string DetermineSurfaceAndHighwayType(OsmElement * p) } } - if (highway.empty() || (surface.empty() && smoothness.empty())) + if (highway.empty() || (surface.empty() && smoothness.empty() && mtb_rating.empty())) return {}; bool isGood = true; @@ -782,6 +785,8 @@ string DetermineSurfaceAndHighwayType(OsmElement * p) isGood = false; else if (!surface.empty() && surfaceGrade < 3) isGood = isPaved ? !Has(badSurfaces, surface) : !Has(veryBadSurfaces, surface); + else if (!mtb_rating.empty()) + isGood = false; // if path has an mtb:score(:imba)-tag, the surface is certainly bad string psurface = isPaved ? "paved_" : "unpaved_"; psurface += isGood ? "good" : "bad"; @@ -820,7 +825,7 @@ string DeterminePathGrade(OsmElement * p) string DetermineMtbRating(OsmElement * p) { - if (!p->HasTag("highway", "cycleway") || (!p->HasTag("mtb:scale") && !p->HasTag("mtb:scale:imba") && !p->HasTag("smoothness"))) + if ((!p->HasTag("mtb:scale") && !p->HasTag("mtb:scale:imba") && !p->HasTag("smoothness"))) return {}; enum eMtbRating : int @@ -968,12 +973,12 @@ void PreprocessElement(OsmElement * p, CalculateOriginFnT const & calcOrg) p->AddTag("area", "yes"); } + p->AddTag("_mtb_rating", DetermineMtbRating(p)); + p->AddTag("psurface", DetermineSurfaceAndHighwayType(p)); p->AddTag("_path_grade", DeterminePathGrade(p)); - p->AddTag("_mtb_rating", DetermineMtbRating(p)); - string const kCuisineKey = "cuisine"; auto cuisines = p->GetTag(kCuisineKey); if (!cuisines.empty()) diff --git a/routing_common/bicycle_model.cpp b/routing_common/bicycle_model.cpp index b292ef83a0..3b19b4f75a 100644 --- a/routing_common/bicycle_model.cpp +++ b/routing_common/bicycle_model.cpp @@ -172,9 +172,6 @@ VehicleModel::SurfaceInitList const kBicycleSurface = { {{"psurface", "paved_bad"}, {0.8, 0.8}}, {{"psurface", "unpaved_good"}, {1.0, 1.0}}, {{"psurface", "unpaved_bad"}, {0.3, 0.3}}, - {{"_mtb_rating", "intermediate"}, {0.3, 0.3}}, // similar to unpaved_bad - {{"_mtb_rating", "difficult"}, {0.1, 0.1}}, - {{"_mtb_rating", "expert"}, {0.05, 0.05}}, // no dedicated cycleway, doesn't mean that bicycle is not allowed, just lower weight {{"hwtag", "nocycleway"}, {0.8, 0.8}}, }; -- 2.45.3 From 5af348e3b8a701edb72a0038a1121afcf4242720 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 22:25:31 +0100 Subject: [PATCH 15/19] removed some changes I previously made --- base/file_name_utils.hpp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/base/file_name_utils.hpp b/base/file_name_utils.hpp index 42a687b55f..d3fd88a0e8 100644 --- a/base/file_name_utils.hpp +++ b/base/file_name_utils.hpp @@ -40,12 +40,7 @@ template std::string JoinPath(std::string const & folder, Args &&... args) { if (folder.empty()) - { - if (sizeof...(args) == 0) - {return {};} - else - {return impl::JoinPath(std::forward(args)...);} - } + return {}; return AddSlashIfNeeded(folder) + impl::JoinPath(std::forward(args)...); } @@ -55,7 +50,8 @@ std::string JoinPath(std::string const & folder, Args &&... args) template std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args) { - ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty" + fileOrDir)); + ASSERT(!dir.empty(), ("JoinPath dir is empty")); + ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty")); return impl::JoinPath(dir, fileOrDir, std::forward(args)...); } } // namespace base -- 2.45.3 From afc4f24703762250c5061838ab47e6ce01145f78 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 22:28:24 +0100 Subject: [PATCH 16/19] removed spaces --- base/file_name_utils.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/file_name_utils.hpp b/base/file_name_utils.hpp index d3fd88a0e8..71107f7407 100644 --- a/base/file_name_utils.hpp +++ b/base/file_name_utils.hpp @@ -50,7 +50,7 @@ std::string JoinPath(std::string const & folder, Args &&... args) template std::string JoinPath(std::string const & dir, std::string const & fileOrDir, Args &&... args) { - ASSERT(!dir.empty(), ("JoinPath dir is empty")); + ASSERT(!dir.empty(), ("JoinPath dir is empty")); ASSERT(!fileOrDir.empty(), ("JoinPath fileOrDir is empty")); return impl::JoinPath(dir, fileOrDir, std::forward(args)...); } -- 2.45.3 From 249191a1c888b2a092e6cd285b6eb5e98b7752f3 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 22:31:16 +0100 Subject: [PATCH 17/19] removed changes in the generator tool --- generator/generator_tool/generator_tool.cpp | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp index 6cbdc98f33..0496fc42b5 100644 --- a/generator/generator_tool/generator_tool.cpp +++ b/generator/generator_tool/generator_tool.cpp @@ -74,7 +74,7 @@ DEFINE_bool(emit_coasts, false, // Generator settings and paths. DEFINE_string(osm_file_name, "", "Input osm area file."); -DEFINE_string(osm_file_type, "", "Input osm area file type [xml, o5m]."); +DEFINE_string(osm_file_type, "xml", "Input osm area file type [xml, o5m]."); DEFINE_string(data_path, "", GetDataPathHelp()); DEFINE_string(user_resource_path, "", "User defined resource path for classificator.txt and etc."); DEFINE_string(intermediate_data_path, "", "Path to stored intermediate data."); @@ -191,16 +191,7 @@ DEFINE_bool(verbose, false, "Provide more detailed output."); -//MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) -int main2(int argc, char ** argv); -int main(int argc, char ** argv) -{ - std::signal(SIGABRT, generator::ErrorHandler); - std::signal(SIGSEGV, generator::ErrorHandler); - return main2(argc, argv); -} - -int main2(int argc, char ** argv) +MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) { using namespace generator; using std::string; @@ -641,4 +632,4 @@ int main2(int argc, char ** argv) check_model::ReadFeatures(dataFile); return EXIT_SUCCESS; -} +}) -- 2.45.3 From ed1518f15157674181113f0dd2e78ba9ffe709f5 Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 22:34:32 +0100 Subject: [PATCH 18/19] removed empty lines --- generator/generator_tool/generator_tool.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/generator/generator_tool/generator_tool.cpp b/generator/generator_tool/generator_tool.cpp index 0496fc42b5..52e1add391 100644 --- a/generator/generator_tool/generator_tool.cpp +++ b/generator/generator_tool/generator_tool.cpp @@ -189,8 +189,6 @@ DEFINE_uint64(threads_count, 0, "Desired count of threads. If count equals zero, "threads is set automatically."); DEFINE_bool(verbose, false, "Provide more detailed output."); - - MAIN_WITH_ERROR_HANDLING([](int argc, char ** argv) { using namespace generator; -- 2.45.3 From 5e99752fe971d6d8b3bb2d07d698c1f2e1448abc Mon Sep 17 00:00:00 2001 From: IsiGebauer Date: Sun, 12 Jan 2025 22:35:46 +0100 Subject: [PATCH 19/19] removed space --- docs/STYLES.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/STYLES.md b/docs/STYLES.md index a996fee142..e024b283b4 100644 --- a/docs/STYLES.md +++ b/docs/STYLES.md @@ -65,7 +65,7 @@ preferably look for icons in [collections OM uses already](../data/copyright.htm ## How to add a new map feature / POI type 1. Add it into `data/mapcss-mapping.csv` (or better replace existing `deprecated` line) to make OM import it from OSM -2. If necessary merge similar tags in via `data/replaced_tags.txt` +2. If necessary merge similar tags in via `data/replaced_tags.txt` 3. Define a priority for the new feature type in e.g. [`priorities_4_overlays.prio.txt`](../data/styles/default/include/priorities_4_overlays.prio.txt) and/or other priorities files 4. Add a new icon (see [above](#how-to-add-a-new-icon)) and/or other styling (area, line..) 5. If a new POI should be OSM-addable/editable then add it to `data/editor.config` -- 2.45.3