From b6a0eb61c2fd4d4c5c0c05d3957894a0fd393ecd Mon Sep 17 00:00:00 2001 From: LilyRose2798 Date: Thu, 24 Jul 2025 18:57:48 +1000 Subject: [PATCH] Fix parsing issues --- src/kicad_sexpr/decode.gleam | 11 + src/kicad_sexpr/parse.gleam | 182 +- src/kicad_sexpr/token.gleam | 4 +- test/kicad_sexpr_test.gleam | 69 +- test3.kicad_mod | 6400 ----------------- test.kicad_mod => test_files/test.kicad_mod | 0 test2.kicad_mod => test_files/test2.kicad_mod | 0 test_files/test3.kicad_mod | 449 ++ 8 files changed, 624 insertions(+), 6491 deletions(-) delete mode 100644 test3.kicad_mod rename test.kicad_mod => test_files/test.kicad_mod (100%) rename test2.kicad_mod => test_files/test2.kicad_mod (100%) create mode 100644 test_files/test3.kicad_mod diff --git a/src/kicad_sexpr/decode.gleam b/src/kicad_sexpr/decode.gleam index 5150369..89c9c88 100644 --- a/src/kicad_sexpr/decode.gleam +++ b/src/kicad_sexpr/decode.gleam @@ -94,6 +94,17 @@ pub fn name_string(then next: NextFn(String, a)) -> Decoder(a) { } } +pub fn name_or_string(then next: NextFn(String, a)) -> Decoder(a) { + fn(sexprs: List(SExpr)) { + case sexprs { + [] -> Error(UnexpectedEndOfAttributes(String)) + [parse.Name(value), ..sexprs] | [parse.String(value), ..sexprs] -> + next(value)(sexprs) + [sexpr, ..] -> Error(IncorrectExprType(got: sexpr, expected: String)) + } + } +} + pub fn float(then next: NextFn(Float, a)) -> Decoder(a) { fn(sexprs: List(SExpr)) { case sexprs { diff --git a/src/kicad_sexpr/parse.gleam b/src/kicad_sexpr/parse.gleam index 18c598a..e9805cb 100644 --- a/src/kicad_sexpr/parse.gleam +++ b/src/kicad_sexpr/parse.gleam @@ -6,11 +6,8 @@ import gleam/string pub type ParseError { UnexpectedEndOfFile - UnexpectedTokenCharacter(got: String, expected: String) - UnexpectedNameCharacter(got: String) - UnexpectedNumberCharacter(got: String) + MissingTokenName UnterminatedString(got: String) - InvalidNumber(got: String) UnexpectedTrailingData(got: BitArray) InvalidUtf8Character(got: BitArray) } @@ -71,9 +68,8 @@ fn trim_start(source: BitArray) -> BitArray { @external(javascript, "../gleam_stdlib.mjs", "codepoint") fn utf_codepoint_unsafe(a: Int) -> UtfCodepoint -fn name_char(source: BitArray) -> Parsed(UtfCodepoint) { +fn do_token_name(source: BitArray, cps: List(UtfCodepoint)) -> Parsed(String) { case source { - <<>> -> Error(UnexpectedEndOfFile) <<65 as i, rest:bits>> | <<66 as i, rest:bits>> | <<67 as i, rest:bits>> @@ -136,21 +132,13 @@ fn name_char(source: BitArray) -> Parsed(UtfCodepoint) { | <<55 as i, rest:bits>> | <<56 as i, rest:bits>> | <<57 as i, rest:bits>> - | <<95 as i, rest:bits>> - | <<42 as i, rest:bits>> - | <<45 as i, rest:bits>> - | <<46 as i, rest:bits>> -> Ok(#(utf_codepoint_unsafe(i), rest)) - <> -> - Error(UnexpectedNameCharacter(string.from_utf_codepoints([cp]))) - source -> Error(InvalidUtf8Character(source)) - } -} - -fn do_name(source: BitArray, result: List(UtfCodepoint)) -> Parsed(String) { - case name_char(source) { - Ok(#(cp, rest)) -> do_name(rest, [cp, ..result]) - Error(_) -> - Ok(#(result |> list.reverse |> string.from_utf_codepoints, source)) + | <<95 as i, rest:bits>> -> + do_token_name(rest, [utf_codepoint_unsafe(i), ..cps]) + source -> + case cps { + [] -> Error(MissingTokenName) + cps -> Ok(#(cps |> list.reverse |> string.from_utf_codepoints, source)) + } } } @@ -169,8 +157,7 @@ fn attribute(source: BitArray) -> Parsed(SExpr) { case source { <<>> -> Error(UnexpectedEndOfFile) <<40, rest:bits>> -> { - use #(cp, rest) <- result.try(name_char(rest)) - use #(name, rest) <- result.try(do_name(rest, [cp])) + use #(name, rest) <- result.try(do_token_name(rest, [])) use #(attributes, rest) <- result.try(do_attributes(rest, [])) Ok(#(Token(name:, attributes:), rest)) } @@ -178,23 +165,7 @@ fn attribute(source: BitArray) -> Parsed(SExpr) { use #(str, rest) <- result.try(do_string(rest, [])) Ok(#(String(str), rest)) } - <<45 as i, rest:bits>> - | <<48 as i, rest:bits>> - | <<49 as i, rest:bits>> - | <<50 as i, rest:bits>> - | <<51 as i, rest:bits>> - | <<52 as i, rest:bits>> - | <<53 as i, rest:bits>> - | <<54 as i, rest:bits>> - | <<55 as i, rest:bits>> - | <<56 as i, rest:bits>> - | <<57 as i, rest:bits>> -> - do_number(rest, #([utf_codepoint_unsafe(i)], False)) - source -> { - use #(cp, rest) <- result.try(name_char(source)) - use #(name, rest) <- result.try(do_name(rest, [cp])) - Ok(#(Name(name), rest)) - } + source -> do_name_number(source, #([], ParsedInt)) } } @@ -220,44 +191,113 @@ fn do_string(source: BitArray, acc: List(UtfCodepoint)) -> Parsed(String) { } } -fn do_number( +type ParsedType { + ParsedInt + ParsedFloat + ParsedName +} + +fn do_name_number( source: BitArray, - acc: #(List(UtfCodepoint), Bool), + acc: #(List(UtfCodepoint), ParsedType), ) -> Parsed(SExpr) { case source, acc { - <<>>, _ -> Error(UnexpectedEndOfFile) - <<46 as i, _:bits>>, #(cps, True) -> - Error(InvalidNumber( - [utf_codepoint_unsafe(i), ..cps] - |> list.reverse - |> string.from_utf_codepoints, - )) - <<46 as i, rest:bits>>, #(cps, False) -> - do_number(rest, #([utf_codepoint_unsafe(i), ..cps], True)) - <<48 as i, rest:bits>>, #(cps, has_decimal) - | <<49 as i, rest:bits>>, #(cps, has_decimal) - | <<50 as i, rest:bits>>, #(cps, has_decimal) - | <<51 as i, rest:bits>>, #(cps, has_decimal) - | <<52 as i, rest:bits>>, #(cps, has_decimal) - | <<53 as i, rest:bits>>, #(cps, has_decimal) - | <<54 as i, rest:bits>>, #(cps, has_decimal) - | <<55 as i, rest:bits>>, #(cps, has_decimal) - | <<56 as i, rest:bits>>, #(cps, has_decimal) - | <<57 as i, rest:bits>>, #(cps, has_decimal) - -> do_number(rest, #([utf_codepoint_unsafe(i), ..cps], has_decimal)) - source, #(cps, has_decimal) -> { + <<45 as i, rest:bits>>, #(cps, parsed_type) -> + do_name_number( + rest, + #([utf_codepoint_unsafe(i), ..cps], case cps { + [] -> parsed_type + _ -> ParsedName + }), + ) + <<46 as i, rest:bits>>, #(cps, parsed_type) -> + do_name_number( + rest, + #([utf_codepoint_unsafe(i), ..cps], case parsed_type { + ParsedInt -> ParsedFloat + _ -> ParsedName + }), + ) + <<48 as i, rest:bits>>, #(cps, parsed_type) + | <<49 as i, rest:bits>>, #(cps, parsed_type) + | <<50 as i, rest:bits>>, #(cps, parsed_type) + | <<51 as i, rest:bits>>, #(cps, parsed_type) + | <<52 as i, rest:bits>>, #(cps, parsed_type) + | <<53 as i, rest:bits>>, #(cps, parsed_type) + | <<54 as i, rest:bits>>, #(cps, parsed_type) + | <<55 as i, rest:bits>>, #(cps, parsed_type) + | <<56 as i, rest:bits>>, #(cps, parsed_type) + | <<57 as i, rest:bits>>, #(cps, parsed_type) + -> do_name_number(rest, #([utf_codepoint_unsafe(i), ..cps], parsed_type)) + <<65 as i, rest:bits>>, #(cps, _) + | <<66 as i, rest:bits>>, #(cps, _) + | <<67 as i, rest:bits>>, #(cps, _) + | <<68 as i, rest:bits>>, #(cps, _) + | <<69 as i, rest:bits>>, #(cps, _) + | <<70 as i, rest:bits>>, #(cps, _) + | <<71 as i, rest:bits>>, #(cps, _) + | <<72 as i, rest:bits>>, #(cps, _) + | <<73 as i, rest:bits>>, #(cps, _) + | <<74 as i, rest:bits>>, #(cps, _) + | <<75 as i, rest:bits>>, #(cps, _) + | <<76 as i, rest:bits>>, #(cps, _) + | <<77 as i, rest:bits>>, #(cps, _) + | <<78 as i, rest:bits>>, #(cps, _) + | <<79 as i, rest:bits>>, #(cps, _) + | <<80 as i, rest:bits>>, #(cps, _) + | <<81 as i, rest:bits>>, #(cps, _) + | <<82 as i, rest:bits>>, #(cps, _) + | <<83 as i, rest:bits>>, #(cps, _) + | <<84 as i, rest:bits>>, #(cps, _) + | <<85 as i, rest:bits>>, #(cps, _) + | <<86 as i, rest:bits>>, #(cps, _) + | <<87 as i, rest:bits>>, #(cps, _) + | <<88 as i, rest:bits>>, #(cps, _) + | <<89 as i, rest:bits>>, #(cps, _) + | <<90 as i, rest:bits>>, #(cps, _) + | <<97 as i, rest:bits>>, #(cps, _) + | <<98 as i, rest:bits>>, #(cps, _) + | <<99 as i, rest:bits>>, #(cps, _) + | <<100 as i, rest:bits>>, #(cps, _) + | <<101 as i, rest:bits>>, #(cps, _) + | <<102 as i, rest:bits>>, #(cps, _) + | <<103 as i, rest:bits>>, #(cps, _) + | <<104 as i, rest:bits>>, #(cps, _) + | <<105 as i, rest:bits>>, #(cps, _) + | <<106 as i, rest:bits>>, #(cps, _) + | <<107 as i, rest:bits>>, #(cps, _) + | <<108 as i, rest:bits>>, #(cps, _) + | <<109 as i, rest:bits>>, #(cps, _) + | <<110 as i, rest:bits>>, #(cps, _) + | <<111 as i, rest:bits>>, #(cps, _) + | <<112 as i, rest:bits>>, #(cps, _) + | <<113 as i, rest:bits>>, #(cps, _) + | <<114 as i, rest:bits>>, #(cps, _) + | <<115 as i, rest:bits>>, #(cps, _) + | <<116 as i, rest:bits>>, #(cps, _) + | <<117 as i, rest:bits>>, #(cps, _) + | <<118 as i, rest:bits>>, #(cps, _) + | <<119 as i, rest:bits>>, #(cps, _) + | <<120 as i, rest:bits>>, #(cps, _) + | <<121 as i, rest:bits>>, #(cps, _) + | <<122 as i, rest:bits>>, #(cps, _) + | <<95 as i, rest:bits>>, #(cps, _) + | <<42 as i, rest:bits>>, #(cps, _) + -> do_name_number(rest, #([utf_codepoint_unsafe(i), ..cps], ParsedName)) + source, #(cps, parsed_type) -> { let str = cps |> list.reverse |> string.from_utf_codepoints - case has_decimal { - True -> - case float.parse(str) { - Ok(n) -> Ok(#(Float(n), source)) - Error(Nil) -> Error(InvalidNumber(str)) - } - False -> + case parsed_type { + ParsedInt -> case int.parse(str) { Ok(n) -> Ok(#(Int(n), source)) - Error(Nil) -> Error(InvalidNumber(str)) + Error(Nil) -> Ok(#(Name(str), source)) } + ParsedFloat -> + case float.parse(str) { + Ok(n) -> Ok(#(Float(n), source)) + Error(Nil) -> Ok(#(Name(str), source)) + } + ParsedName -> Ok(#(Name(str), source)) } } } diff --git a/src/kicad_sexpr/token.gleam b/src/kicad_sexpr/token.gleam index 9e713c8..89599d7 100644 --- a/src/kicad_sexpr/token.gleam +++ b/src/kicad_sexpr/token.gleam @@ -2601,7 +2601,7 @@ fn base_footprint(then next: NextFn(Footprint, a)) -> Decoder(a) { use layer <- layer() use tedit <- decode.optional(decode.token_wrapper( named: "tedit", - with: decode.string, + with: decode.name_or_string, then: _, )) use uuid <- decode.optional(uuid) @@ -2750,7 +2750,7 @@ pub fn footprint_file(then next: NextFn(FootprintFile, a)) -> Decoder(a) { use version <- decode.token_wrapper(named: "version", with: decode.int) use generator <- decode.token_wrapper( named: "generator", - with: decode.string, + with: decode.name_or_string, ) use generator_version <- decode.optional(decode.token_wrapper( named: "generator_version", diff --git a/test/kicad_sexpr_test.gleam b/test/kicad_sexpr_test.gleam index 987542d..fb34cdf 100644 --- a/test/kicad_sexpr_test.gleam +++ b/test/kicad_sexpr_test.gleam @@ -2,6 +2,7 @@ import gleam/float import gleam/int import gleam/io import gleam/list +import gleam/pair import gleam/result import gleam/string import gleam/time/duration @@ -13,10 +14,25 @@ import kicad_sexpr/token import simplifile pub fn main() -> Nil { + // let file_names = list.sample(file_names, 1000) io.println("\nTesting Footprints") - test_read_parse_decode("/usr/share/kicad/footprints", token.footprint_file) - io.println("\nTesting Symbol Libraries") - test_read_parse_decode("/usr/share/kicad/symbols", token.symbol_library) + let assert Ok(footprint_files) = + simplifile.get_files("/usr/share/kicad/footprints") + // test_read_parse_decode( + // footprint_files |> list.drop(0) |> list.split(10) |> pair.first, + // token.footprint_file, + // True, + // ) + test_read_parse_decode( + ["test_files/test3.kicad_mod"], + token.footprint_file, + True, + ) + // test_read_parse_decode(footprint_files, token.footprint_file, False) + // io.println("\nTesting Symbol Libraries") + // let assert Ok(symbol_libraries) = + // simplifile.get_files("/usr/share/kicad/symbols") + // test_read_parse_decode(symbol_libraries, token.symbol_library, False) gleeunit.main() } @@ -54,20 +70,15 @@ fn print_stats( } fn test_read_parse_decode( - path: String, + file_names: List(String), decoder: fn(NextFn(a, a)) -> Decoder(a), + print_errors: Bool, ) -> Nil { - let assert Ok(file_names) = simplifile.get_files(path) - - // let #(file_names, _) = file_names |> list.drop(0) |> list.split(1000) - // let file_names = list.sample(file_names, 1000) - // let file_names = ["/usr/share/kicad/symbols/RF_Module.kicad_sym"] - let num_file_names = list.length(file_names) io.println("Total: " <> int.to_string(num_file_names)) let time_before_read = timestamp.system_time() - let #(successfully_read, _failed_to_read) = + let #(successfully_read, failed_to_read) = file_names |> list.map(fn(file_name) { simplifile.read_bits(file_name) @@ -84,9 +95,18 @@ fn test_read_parse_decode( time_before_read, time_after_read, ) + case print_errors { + True -> + list.each(failed_to_read, fn(data) { + let #(file_name, error) = data + io.println("Failed to read file: " <> file_name) + echo error + }) + False -> Nil + } let time_before_parse = timestamp.system_time() - let #(successfully_parsed, _failed_to_parse) = + let #(successfully_parsed, failed_to_parse) = successfully_read |> list.map(fn(data) { let #(file_name, file_contents) = data @@ -104,6 +124,15 @@ fn test_read_parse_decode( time_before_parse, time_after_parse, ) + case print_errors { + True -> + list.each(failed_to_parse, fn(data) { + let #(file_name, _file_contents, error) = data + io.println("Failed to parse file: " <> file_name) + echo error + }) + False -> Nil + } let time_before_decode = timestamp.system_time() let #(successfully_decoded, failed_to_decode) = @@ -124,12 +153,16 @@ fn test_read_parse_decode( time_before_decode, time_after_decode, ) - list.each(failed_to_decode, fn(data) { - let #(file_name, _file_contents, _sexpr, error) = data - io.println(file_name) - echo error - // panic - }) + case print_errors { + True -> + list.each(failed_to_decode, fn(data) { + let #(file_name, _file_contents, _sexpr, error) = data + io.println("Failed to decode file: " <> file_name) + echo error + }) + False -> Nil + } + io.println( "Total Time Taken: " <> time_taken_string(time_before_read, time_after_decode), diff --git a/test3.kicad_mod b/test3.kicad_mod deleted file mode 100644 index b0c76a2..0000000 --- a/test3.kicad_mod +++ /dev/null @@ -1,6400 +0,0 @@ -(footprint "Smolhaj_Scale_0.1" - (version 20241229) - (generator "pcbnew") - (generator_version "9.0") - (layer "F.Cu") - (descr "BLĂ…HAJ , smol 50cm nominal, 1:10 scale (56mm Snoot-Flosse), MPN 205.406.63 (https://www.ikea.com/gb/en/p/blahaj-soft-toy-baby-shark-20540663/)") - (tags "Ikea Smol Haj") - (property "Reference" "REF**" - (at -2.430063 -0.916005 0) - (unlocked yes) - (layer "F.SilkS") - (hide yes) - (uuid "525bd122-a62b-4665-b759-aa47e1324182") - (effects - (font - (size 1 1) - (thickness 0.1) - ) - ) - ) - (property "Value" "Smolhaj_Scale_0.1" - (at -11.5 -2.25 0) - (unlocked yes) - (layer "F.Fab") - (uuid "72ce629d-03fd-484b-9349-8f3e0a716020") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Datasheet" "" - (at -2.430063 -0.366005 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5d3ac9a8-a300-4328-8e73-d1cdba2f8773") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (property "Description" "" - (at -2.430063 -0.366005 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "5ad5394a-7198-4b59-b054-f51f52fff9ec") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (attr exclude_from_pos_files exclude_from_bom allow_missing_courtyard) - (private_layers "User.2") - (fp_line - (start -55.897041 7.382052) - (end -55.896611 7.455952) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8f8a8793-b319-4972-ad30-5f5b4edc3f6f") - ) - (fp_line - (start -55.896611 7.455952) - (end -55.892296 7.525516) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ee039847-ff71-484c-9bd8-477778076c74") - ) - (fp_line - (start -55.893483 7.303754) - (end -55.897041 7.382052) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "96073bb6-49c8-44dc-942e-6591824606bb") - ) - (fp_line - (start -55.892296 7.525516) - (end -55.884197 7.590803) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9c2a7621-1c31-42b3-896e-ade59b3a2225") - ) - (fp_line - (start -55.885832 7.220998) - (end -55.893483 7.303754) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "823da60a-30b8-4cf1-9edf-7b05c2900eae") - ) - (fp_line - (start -55.884197 7.590803) - (end -55.872418 7.651873) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cae87421-449f-4bad-8116-d81c4554f819") - ) - (fp_line - (start -55.873986 7.133723) - (end -55.885832 7.220998) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9427845e-a49b-494b-b74a-ffc63c36713e") - ) - (fp_line - (start -55.872418 7.651873) - (end -55.857062 7.70879) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0c254427-0072-4413-9cdc-fe83aadad6b7") - ) - (fp_line - (start -55.857844 7.041867) - (end -55.873986 7.133723) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a63fdab0-517f-4339-af69-63f4e50730e8") - ) - (fp_line - (start -55.857062 7.70879) - (end -55.838231 7.761611) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8216c6e5-b041-4fa8-a6b5-c1173ad2907f") - ) - (fp_line - (start -55.838231 7.761611) - (end -55.81603 7.810397) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "adc989c9-8f36-4acd-889b-a75dcadc9cb2") - ) - (fp_line - (start -55.8373 6.945373) - (end -55.857844 7.041867) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "eea9aab6-0e82-484e-9806-ae1248a27b1b") - ) - (fp_line - (start -55.81603 7.810397) - (end -55.790559 7.85521) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1802a561-9ed4-464d-87d7-930499b20062") - ) - (fp_line - (start -55.812253 6.844179) - (end -55.8373 6.945373) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "769090a0-5bff-4f87-92b1-dfd7c06e19d1") - ) - (fp_line - (start -55.790559 7.85521) - (end -55.761923 7.896109) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "61b2258f-3815-44a5-9694-f6e14b2aa9ff") - ) - (fp_line - (start -55.761923 7.896109) - (end -55.730225 7.933156) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5aca2aba-16c2-4c91-bf0e-daffc8080085") - ) - (fp_line - (start -55.748693 6.627744) - (end -55.812253 6.844179) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "faa24f93-0816-4eb2-ab2d-c6a06a6d85a5") - ) - (fp_line - (start -55.730225 7.933156) - (end -55.695566 7.966411) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "79a23281-ac13-4e6f-ac45-d1df2c262f4a") - ) - (fp_line - (start -55.695566 7.966411) - (end -55.658052 7.995934) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f5fd826f-548e-4b2b-a4d1-a37d86b11171") - ) - (fp_line - (start -55.668609 6.393574) - (end -55.748693 6.627744) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ee7b56ec-a98a-40af-b5d4-9fc1131f0409") - ) - (fp_line - (start -55.658052 7.995934) - (end -55.617783 8.021786) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ed2b6a50-3f35-4264-87ca-972593f457e4") - ) - (fp_line - (start -55.617783 8.021786) - (end -55.574864 8.044029) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2da0ea46-8bd6-4a8a-90c4-4156ae88ba43") - ) - (fp_line - (start -55.574864 8.044029) - (end -55.529397 8.062721) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e4cb3c4b-fac1-4148-80c1-6feb69db6155") - ) - (fp_line - (start -55.573904 6.142972) - (end -55.668609 6.393574) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "acc988ee-ac86-482e-8d45-654dc3b35514") - ) - (fp_line - (start -55.529397 8.062721) - (end -55.481484 8.077924) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4e6d3358-7bc8-4d0d-b825-9e1249731547") - ) - (fp_line - (start -55.481484 8.077924) - (end -55.43123 8.089699) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "753e7202-b629-4209-9605-235373175056") - ) - (fp_line - (start -55.46648 5.877246) - (end -55.573904 6.142972) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "053d9786-251e-4999-8891-f981f9961297") - ) - (fp_line - (start -55.43123 8.089699) - (end -55.378736 8.098105) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7f35cccb-2ebb-4a89-812c-3d4bb79b009b") - ) - (fp_line - (start -55.378736 8.098105) - (end -55.324105 8.103205) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b29cab2e-64fb-4fb8-b26d-3478451c2de9") - ) - (fp_line - (start -55.324105 8.103205) - (end -55.267441 8.105056) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "756cbde8-9973-4924-83f1-da89ce5d06fb") - ) - (fp_line - (start -55.267441 8.105056) - (end -55.208847 8.103722) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a7448da1-c166-4d29-ac94-f2bf5446a529") - ) - (fp_line - (start -55.221088 5.305642) - (end -55.46648 5.877246) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9c9c4f9d-69c9-465d-a9e6-623cf88f35e9") - ) - (fp_line - (start -55.208847 8.103722) - (end -55.148425 8.099261) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "10097fd4-df60-4ceb-bf0f-530ecb91d6d5") - ) - (fp_line - (start -55.178982 -7.647088) - (end -55.175128 -7.562798) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0e32d018-3918-4c96-96ac-7cd343828b52") - ) - (fp_line - (start -55.178569 -7.727944) - (end -55.178982 -7.647088) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7e97bd34-54dd-436b-ba86-581cb95a081f") - ) - (fp_line - (start -55.175128 -7.562798) - (end -55.166983 -7.475185) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "da803e80-545c-4486-9f12-47d866b38b06") - ) - (fp_line - (start -55.173908 -7.805251) - (end -55.178569 -7.727944) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "814aeaf4-6337-4d7c-a7ba-ff25a9edd850") - ) - (fp_line - (start -55.166983 -7.475185) - (end -55.154526 -7.384364) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "81c90370-6e54-4c54-840b-70feddc8ad4b") - ) - (fp_line - (start -55.165024 -7.878896) - (end -55.173908 -7.805251) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "695d0dbf-c602-444f-9fde-b6bd198ff48a") - ) - (fp_line - (start -55.154526 -7.384364) - (end -55.116911 -7.193502) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8182dda4-a496-4672-9919-f9c3eb6fec50") - ) - (fp_line - (start -55.151938 -7.948766) - (end -55.165024 -7.878896) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0a0264bd-841b-4662-afd1-36508915c169") - ) - (fp_line - (start -55.148425 8.099261) - (end -55.086279 8.091736) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "dce63205-9233-44cf-9bc6-935705b0023d") - ) - (fp_line - (start -55.134673 -8.014746) - (end -55.151938 -7.948766) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fa9037bf-d484-4397-b5bc-c24c9f9f52ef") - ) - (fp_line - (start -55.116911 -7.193502) - (end -55.063737 -6.990858) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "dfdf74d4-2dc9-4564-9dcf-4d1020a56fe8") - ) - (fp_line - (start -55.113249 -8.076722) - (end -55.134673 -8.014746) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b086203f-80de-4f51-809b-ad0920de4a20") - ) - (fp_line - (start -55.087692 -8.134583) - (end -55.113249 -8.076722) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "57cfa589-ac45-43b2-8c75-6b898ce0aa43") - ) - (fp_line - (start -55.086279 8.091736) - (end -55.022509 8.081206) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "22d9e615-17c4-4067-a5f7-64b8a2e084c2") - ) - (fp_line - (start -55.063737 -6.990858) - (end -54.996783 -6.777025) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "54459e70-98c8-4c98-a94e-76c003159b80") - ) - (fp_line - (start -55.058021 -8.188215) - (end -55.087692 -8.134583) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1deb2279-ef87-45a0-8ba3-5e65a74161d6") - ) - (fp_line - (start -55.024258 -8.237502) - (end -55.058021 -8.188215) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "826cb51b-2b8a-4a01-824d-198fff19af46") - ) - (fp_line - (start -55.022509 8.081206) - (end -54.957222 8.067732) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d8ac28cc-957a-487b-b48f-0073a1b5382d") - ) - (fp_line - (start -54.996783 -6.777025) - (end -54.917825 -6.552596) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "625249a5-6164-4cb2-a497-e224eb21b86c") - ) - (fp_line - (start -54.986427 -8.282333) - (end -55.024258 -8.237502) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1d452ade-bc8b-4bcb-8d48-f3edb40a93a7") - ) - (fp_line - (start -54.957222 8.067732) - (end -54.890519 8.051374) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e1cc8954-0f2c-4e20-9d66-017372693987") - ) - (fp_line - (start -54.947648 4.68921) - (end -55.221088 5.305642) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bf6e7d11-44b2-4da9-a67e-a9d38ea073e3") - ) - (fp_line - (start -54.94455 -8.322593) - (end -54.986427 -8.282333) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8ec7aeab-44c7-4aa3-a21f-a5de251e0103") - ) - (fp_line - (start -54.917825 -6.552596) - (end -54.731014 -6.074328) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c54812a3-6c5e-40ef-bfd9-93d3eeeaee1c") - ) - (fp_line - (start -54.898648 -8.358169) - (end -54.94455 -8.322593) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f74d2353-fec1-4c43-adc4-092a396543c1") - ) - (fp_line - (start -54.890519 8.051374) - (end -54.753161 8.010229) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6d3b2672-e386-4a85-ba71-214cb8862182") - ) - (fp_line - (start -54.848745 -8.388948) - (end -54.898648 -8.358169) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1ae5616f-d760-4dba-8686-7c7f148380b8") - ) - (fp_line - (start -54.79486 -8.414816) - (end -54.848745 -8.388948) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "92b0c628-be02-4823-a878-d74ceb35b43a") - ) - (fp_line - (start -54.753161 8.010229) - (end -54.610673 7.958159) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "59cacb68-b433-4746-82e9-d2b60581a593") - ) - (fp_line - (start -54.737019 -8.435659) - (end -54.79486 -8.414816) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "978a2186-f9f5-42fb-b733-f89a5e247aac") - ) - (fp_line - (start -54.731014 -6.074328) - (end -54.517529 -5.560804) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7c788610-0ef1-4a9b-8486-063787f6fbbe") - ) - (fp_line - (start -54.675242 -8.451363) - (end -54.737019 -8.435659) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8d1b8814-068d-47fb-9d49-59e5cd32b066") - ) - (fp_line - (start -54.661379 4.0384) - (end -54.947648 4.68921) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "69335be0-01f3-48b5-a61c-b3962e388bbc") - ) - (fp_line - (start -54.610673 7.958159) - (end -54.463176 7.895528) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "064c3558-834f-4bea-aa56-67cd76be9620") - ) - (fp_line - (start -54.60955 -8.461817) - (end -54.675242 -8.451363) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0cf46ecc-3e38-4db2-9306-0673ba521faf") - ) - (fp_line - (start -54.539968 -8.466904) - (end -54.60955 -8.461817) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b1c16e90-050c-4acd-9ae5-1bf6e60fd0aa") - ) - (fp_line - (start -54.517529 -5.560804) - (end -54.291597 -5.016772) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e43226ea-99bd-42cb-8f88-f81b19706ed4") - ) - (fp_line - (start -54.466517 -8.466514) - (end -54.539968 -8.466904) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "03acedf3-2c0e-43a1-8d94-c71bc05080c0") - ) - (fp_line - (start -54.463176 7.895528) - (end -54.310793 7.822703) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cad2afd9-4654-49a0-ae04-bf6f88f01e9e") - ) - (fp_line - (start -54.389217 -8.460531) - (end -54.466517 -8.466514) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c21905af-2c32-4aad-b50f-2b3ef94aeafd") - ) - (fp_line - (start -54.377498 3.363657) - (end -54.661379 4.0384) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "05e6d027-3f97-4c7f-b90c-40e87a3fa5c6") - ) - (fp_line - (start -54.310793 7.822703) - (end -54.153644 7.740052) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cacd1322-1fb7-41e1-bf18-74b2a9817bbf") - ) - (fp_line - (start -54.308095 -8.448842) - (end -54.389217 -8.460531) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8d4c3513-5a94-40df-ae65-e289c07e5a5c") - ) - (fp_line - (start -54.291597 -5.016772) - (end -54.067442 -4.446979) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a9513ca3-0da1-4093-86b3-0ad7f2356b4e") - ) - (fp_line - (start -54.241209 3.020575) - (end -54.377498 3.363657) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6eee8345-86bd-436c-822c-746bc929bffc") - ) - (fp_line - (start -54.223168 -8.431333) - (end -54.308095 -8.448842) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "55d4b894-8915-4f12-a378-aa6fe6b46ec4") - ) - (fp_line - (start -54.153644 7.740052) - (end -53.99185 7.647939) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "29efd73d-ea98-48a2-b1ad-da03a6299282") - ) - (fp_line - (start -54.134462 -8.407892) - (end -54.223168 -8.431333) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "72dcdcc4-ae54-4543-aa69-a5ba808c40b5") - ) - (fp_line - (start -54.111224 2.675428) - (end -54.241209 3.020575) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2bcd5e9b-c3f4-4833-ab2a-d775c1981bdc") - ) - (fp_line - (start -54.067442 -4.446979) - (end -53.960476 -4.153909) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5984acf8-133f-4e32-967e-7bc500bb8b21") - ) - (fp_line - (start -54.041997 -8.378405) - (end -54.134462 -8.407892) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b0f51006-4b9b-4f74-85c1-08c40267cc21") - ) - (fp_line - (start -53.99185 7.647939) - (end -53.825534 7.546731) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ea5fdb77-3aff-480c-93b2-8271b00fcb50") - ) - (fp_line - (start -53.989445 2.329522) - (end -54.111224 2.675428) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9f95e87f-d87c-4f18-a618-47a9db28c37b") - ) - (fp_line - (start -53.960476 -4.153909) - (end -53.859289 -3.856178) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ab0293f3-dfb7-4f0f-bbff-790618b04238") - ) - (fp_line - (start -53.945796 -8.342757) - (end -54.041997 -8.378405) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "894498c3-a525-494a-9501-9f9571257d29") - ) - (fp_line - (start -53.877775 1.984164) - (end -53.989445 2.329522) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8722fbc4-407b-4fb2-a8b5-06a5696ab946") - ) - (fp_line - (start -53.859289 -3.856178) - (end -53.765659 -3.554382) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9e960a98-4797-4713-8649-cd807394a211") - ) - (fp_line - (start -53.845881 -8.300836) - (end -53.945796 -8.342757) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7317c8a2-d579-4352-a6b0-1d0c2ec0159d") - ) - (fp_line - (start -53.825534 7.546731) - (end -53.654818 7.436795) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "14a57a1e-4c06-4708-8301-1106636e8792") - ) - (fp_line - (start -53.777789 1.640454) - (end -53.877775 1.984164) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a2c2aac5-1cc7-4e44-94bc-427a3886d651") - ) - (fp_line - (start -53.765659 -3.554382) - (end -53.681364 -3.249115) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1cc418f9-1c6c-4f9e-928b-14de0722a7d5") - ) - (fp_line - (start -53.742275 -8.252528) - (end -53.845881 -8.300836) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7963c062-c2a1-44bb-aea4-75623a788ef3") - ) - (fp_line - (start -53.68976 1.298665) - (end -53.777789 1.640454) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a4b7cbc4-4f02-47b8-af8c-06dfa6a6ecae") - ) - (fp_line - (start -53.681364 -3.249115) - (end -53.607896 -2.940886) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5b44fd70-617c-4407-afd8-c9b3b4653c75") - ) - (fp_line - (start -53.654818 7.436795) - (end -53.47982 7.318496) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "88ea73d1-74ee-4e12-b78d-16bcf02f38af") - ) - (fp_line - (start -53.634999 -8.19772) - (end -53.742275 -8.252528) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6d42f77d-e606-4dca-8011-4441749c3145") - ) - (fp_line - (start -53.613632 0.958861) - (end -53.68976 1.298665) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ce692e59-707c-4602-8a56-c81dd73918ae") - ) - (fp_line - (start -53.607896 -2.940886) - (end -53.545598 -2.629845) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "10b88da7-e353-4cf9-a10d-d2a03b83622f") - ) - (fp_line - (start -53.549349 0.621105) - (end -53.613632 0.958861) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "11b4fc7a-2f3c-43b1-b5b6-1e50683d8761") - ) - (fp_line - (start -53.545598 -2.629845) - (end -53.494526 -2.31606) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "19868be0-b333-4c94-97d2-740bdea4f042") - ) - (fp_line - (start -53.524075 -8.136297) - (end -53.634999 -8.19772) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2f86474d-83c6-4f4e-991d-c5ba095e9863") - ) - (fp_line - (start -53.496852 0.285461) - (end -53.549349 0.621105) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "36eb2e9c-7f97-4362-b9f5-910f51924ab4") - ) - (fp_line - (start -53.494526 -2.31606) - (end -53.454738 -1.999593) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b3902859-ebb6-4a77-b255-4da0f65e1d26") - ) - (fp_line - (start -53.47982 7.318496) - (end -53.300664 7.192203) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2d01c3fb-9d82-42ff-b304-08132b53ec20") - ) - (fp_line - (start -53.45609 -0.048008) - (end -53.496852 0.285461) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "00e68dad-faeb-4168-8cd1-bed7917950f0") - ) - (fp_line - (start -53.454738 -1.999593) - (end -53.426287 -1.680506) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e20cf954-6958-4a6b-9f28-8932633e8e3a") - ) - (fp_line - (start -53.427001 -0.379238) - (end -53.45609 -0.048008) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "202137ac-99ce-493e-8d87-56c2b6046106") - ) - (fp_line - (start -53.426287 -1.680506) - (end -53.409233 -1.358863) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "47fb63b4-bc5a-4f24-abef-61e3ae3f60d9") - ) - (fp_line - (start -53.409533 -0.708166) - (end -53.427001 -0.379238) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8c8a3564-287e-4230-9f3c-bf1eb4164233") - ) - (fp_line - (start -53.409233 -1.358863) - (end -53.403629 -1.03473) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "32054463-8860-4ff6-a2d2-c97460239765") - ) - (fp_line - (start -53.403629 -1.03473) - (end -53.409533 -0.708166) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1d778a8e-e67c-414c-84f4-75983887d2c8") - ) - (fp_line - (start -53.300664 7.192203) - (end -52.930361 6.917093) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8d03f6bd-8e99-4d4c-b4ee-f5e3b6f9c9da") - ) - (fp_line - (start -53.291664 -7.99376) - (end -53.524075 -8.136297) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "62998b13-ecc8-4773-9759-aafd2c713d97") - ) - (fp_line - (start -53.046653 -7.827034) - (end -53.291664 -7.99376) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a6840a02-26f1-426b-bec4-c3934b19874f") - ) - (fp_line - (start -52.930361 6.917093) - (end -52.544879 6.614399) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "448e69c3-e51a-4b25-83e2-59271146b1f7") - ) - (fp_line - (start -52.79094 -7.63884) - (end -53.046653 -7.827034) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "05ceb2b0-ea51-408e-bfc1-4face151f570") - ) - (fp_line - (start -52.544879 6.614399) - (end -52.14519 6.287047) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6c2d1634-1c65-4805-b70a-8d2d33a7c868") - ) - (fp_line - (start -52.526422 -7.431898) - (end -52.79094 -7.63884) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d2b47d15-d95f-47a5-91c4-4da2b75e6add") - ) - (fp_line - (start -52.254995 -7.208931) - (end -52.526422 -7.431898) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e1b0e4e1-f85b-4460-b41b-3c022b36c77c") - ) - (fp_line - (start -52.14519 6.287047) - (end -51.732776 5.938693) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "55d7e906-d333-404b-8f32-1ebe52a7bb68") - ) - (fp_line - (start -51.978559 -6.972659) - (end -52.254995 -7.208931) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ddf6fb16-7e7b-48eb-95a6-30313aafed15") - ) - (fp_line - (start -51.732776 5.938693) - (end -51.311154 5.575872) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "907d2d35-741c-4bab-8ffe-04c5eced005d") - ) - (fp_line - (start -51.418241 -6.471086) - (end -51.978559 -6.972659) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7c201efb-00be-4f8f-beee-59ac97fb8bd8") - ) - (fp_line - (start -51.311154 5.575872) - (end -50.456383 4.835844) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "00466b17-5c63-4234-ae6c-90ca3280c0bb") - ) - (fp_line - (start -50.860647 -5.948949) - (end -51.418241 -6.471086) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "17a95bb4-f919-436d-903e-f542ad37825b") - ) - (fp_line - (start -50.456383 4.835844) - (end -50.031277 4.473143) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bc3a35b8-f672-4f83-bf06-33ac0f471197") - ) - (fp_line - (start -50.320954 -5.428017) - (end -50.860647 -5.948949) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f37dabbb-12a3-47e7-868d-bf05c6d8a748") - ) - (fp_line - (start -50.031277 4.473143) - (end -49.613055 4.124989) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c54f3c7d-2f69-4487-936a-a85094bf0d48") - ) - (fp_line - (start -49.613055 4.124989) - (end -49.20574 3.798633) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4a7a1600-ecde-4c5b-a468-cc9d47a61c72") - ) - (fp_line - (start -49.355985 -4.476844) - (end -50.320954 -5.428017) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c5cbf27b-9cba-4e2f-8917-26cf76a836c6") - ) - (fp_line - (start -49.20574 3.798633) - (end -48.813354 3.501331) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "799c9211-1d4b-4688-a9df-9720a5bd07d8") - ) - (fp_line - (start -48.957123 -4.085295) - (end -49.355985 -4.476844) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e7308ab2-e788-4083-900d-5e8b809a8c82") - ) - (fp_line - (start -48.813354 3.501331) - (end -48.623901 3.365643) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0c7aeb98-47a7-4862-8788-e7f3bf108faa") - ) - (fp_line - (start -48.623901 3.365643) - (end -48.438993 3.238748) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cc3d441b-a5d1-48dc-a42b-84755bcf7135") - ) - (fp_line - (start -48.613212 -3.752933) - (end -48.957123 -4.085295) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "80fd0bfb-561b-4969-a0cf-abd4810d490c") - ) - (fp_line - (start -48.438993 3.238748) - (end -48.25844 3.120361) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e4e25f1f-05e5-4069-911e-f72c7f0d154f") - ) - (fp_line - (start -48.315763 -3.472427) - (end -48.613212 -3.752933) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "62512e72-f25c-4bd9-8a11-cb027357aeb5") - ) - (fp_line - (start -48.25844 3.120361) - (end -48.082047 3.010196) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8b5c735a-48d0-4f61-95ee-33d4d73b76fa") - ) - (fp_line - (start -48.082047 3.010196) - (end -47.909621 2.907966) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ead91d72-ef41-4da7-94bf-61eb1175c429") - ) - (fp_line - (start -48.056287 -3.236444) - (end -48.315763 -3.472427) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "98e756f2-a7bf-458e-943a-e65a465bd59f") - ) - (fp_line - (start -47.909621 2.907966) - (end -47.740971 2.813388) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "86912a98-f06c-447e-9494-1b05fc2f8563") - ) - (fp_line - (start -47.826296 -3.037654) - (end -48.056287 -3.236444) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5ea9028d-ea20-4b6f-a2fe-55dca0d6dce3") - ) - (fp_line - (start -47.740971 2.813388) - (end -47.575902 2.726176) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "92c751a7-9f5c-430c-aaa4-5e337dfc3a41") - ) - (fp_line - (start -47.617302 -2.868723) - (end -47.826296 -3.037654) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e04afcf9-88d3-41a7-83b5-baf0763dc1eb") - ) - (fp_line - (start -47.575902 2.726176) - (end -47.414223 2.646043) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c7510881-8f97-450a-a78c-33739a761399") - ) - (fp_line - (start -47.420813 -2.722322) - (end -47.617302 -2.868723) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "08c643d7-4b32-4ac7-a7b8-37eaddb258e4") - ) - (fp_line - (start -47.414223 2.646043) - (end -47.255739 2.572705) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3f130a48-7e3e-4d64-87b7-af83effe1efe") - ) - (fp_line - (start -47.255739 2.572705) - (end -47.10026 2.505875) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7d90e7e1-9dbd-4e67-b8be-bae9f5a0e5d8") - ) - (fp_line - (start -47.228344 -2.591119) - (end -47.420813 -2.722322) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "779899a3-0d4c-4341-a461-434a5a281db9") - ) - (fp_line - (start -47.131026 -2.529111) - (end -47.228344 -2.591119) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f2060190-da30-4810-9600-dc3a2984895f") - ) - (fp_line - (start -47.10026 2.505875) - (end -46.947591 2.44527) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3b360dee-17bf-4ba9-8a17-5f3a7f5c9649") - ) - (fp_line - (start -47.031908 -2.469268) - (end -47.131026 -2.529111) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1aca77e8-a5a4-497b-badf-a909474febd5") - ) - (fp_line - (start -46.947591 2.44527) - (end -46.797539 2.390603) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d016e176-aa3c-4209-a497-c7d895156b79") - ) - (fp_line - (start -46.930307 -2.41179) - (end -47.031908 -2.469268) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fe88ab8a-aa65-4215-8ec8-b6753b432d2a") - ) - (fp_line - (start -46.825538 -2.356875) - (end -46.930307 -2.41179) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "df36fe51-5f8b-42b1-b7c6-78043f027abd") - ) - (fp_line - (start -46.797539 2.390603) - (end -46.649912 2.341588) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3331be76-8733-46a3-a1d3-43ad995736a2") - ) - (fp_line - (start -46.71692 -2.30472) - (end -46.825538 -2.356875) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4b6a1933-7344-48bc-ad50-eca96a8f0946") - ) - (fp_line - (start -46.649912 2.341588) - (end -46.504517 2.29794) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cd5f8446-3fe3-41cc-ade4-bad57ae85106") - ) - (fp_line - (start -46.603769 -2.255526) - (end -46.71692 -2.30472) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f91cf827-cf0c-45d1-99f2-5178a38ead30") - ) - (fp_line - (start -46.504517 2.29794) - (end -46.361162 2.259374) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e5411788-5392-4dbf-b2e4-14f6d3602d4c") - ) - (fp_line - (start -46.485402 -2.20949) - (end -46.603769 -2.255526) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cefbe271-c86c-4add-bf42-4e274d5fe37e") - ) - (fp_line - (start -46.361162 2.259374) - (end -46.219653 2.225604) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f9922a52-de26-45c2-b0bc-6d4b0d93f5f6") - ) - (fp_line - (start -46.361135 -2.166811) - (end -46.485402 -2.20949) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1896520c-c6f2-4631-a572-d7e842104910") - ) - (fp_line - (start -46.230285 -2.127688) - (end -46.361135 -2.166811) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "71ed2359-ceed-4730-b1d4-5ee55ddbb884") - ) - (fp_line - (start -46.219653 2.225604) - (end -45.939467 2.171925) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5cbf4a95-72d5-42c8-ac3b-a979d2b5ec27") - ) - (fp_line - (start -46.092169 -2.092318) - (end -46.230285 -2.127688) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "810d7489-617c-47b5-9876-b44997389f16") - ) - (fp_line - (start -45.946105 -2.060901) - (end -46.092169 -2.092318) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "eb977c2d-1550-40ef-8983-c89b99fa620d") - ) - (fp_line - (start -45.939467 2.171925) - (end -45.797744 2.152289) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "726cf140-6291-4b36-9b01-263a6b94502d") - ) - (fp_line - (start -45.797744 2.152289) - (end -45.652741 2.137685) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "53913eb6-3697-49b9-94fe-31d4785f4350") - ) - (fp_line - (start -45.791408 -2.033636) - (end -45.946105 -2.060901) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "10f12189-b710-4128-9ffd-a42416f4c36e") - ) - (fp_line - (start -45.652741 2.137685) - (end -45.502811 2.128287) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9eacb060-a3c9-4825-b5d1-ac1ab08699a2") - ) - (fp_line - (start -45.627397 -2.01072) - (end -45.791408 -2.033636) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1e00d448-44f9-4893-8fc4-9849c3fe575a") - ) - (fp_line - (start -45.502811 2.128287) - (end -45.346312 2.12427) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "170c3117-a97b-48d9-8e42-5009cb5ead5c") - ) - (fp_line - (start -45.453387 -1.992353) - (end -45.627397 -2.01072) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "854e7801-178a-441c-b920-611c08fb619a") - ) - (fp_line - (start -45.346312 2.12427) - (end -45.181596 2.125808) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "27fe3352-f901-42a2-a37e-bc33bfb03f51") - ) - (fp_line - (start -45.268695 -1.978733) - (end -45.453387 -1.992353) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ed62ab1a-56ea-4755-9af7-a4b7a4285583") - ) - (fp_line - (start -45.181596 2.125808) - (end -45.007019 2.133073) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1b01959a-8a52-43dd-8deb-e8d516f53a87") - ) - (fp_line - (start -45.072639 -1.97006) - (end -45.268695 -1.978733) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "def3d1cd-2493-4cef-b454-5a3997843494") - ) - (fp_line - (start -45.007019 2.133073) - (end -44.820938 2.14624) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "35ba0c84-b0d0-4845-a7f1-5d0d2551dbef") - ) - (fp_line - (start -44.820938 2.14624) - (end -44.621704 2.165483) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3b77f077-2a81-4363-97f1-b16e2879c1a7") - ) - (fp_line - (start -44.646879 -1.967588) - (end -45.072639 -1.97006) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6352029c-1d71-4f8d-99e3-04755c1bc0a9") - ) - (fp_line - (start -44.621704 2.165483) - (end -44.177203 2.222888) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6f9c6eeb-987b-4545-9df9-14db4da26466") - ) - (fp_line - (start -44.186535 -1.982757) - (end -44.646879 -1.967588) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "46038bb7-e296-4b6f-8dd2-877eab7c41dc") - ) - (fp_line - (start -44.177203 2.222888) - (end -43.660356 2.306681) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "97917dd5-f678-4c66-9a24-0126b0389701") - ) - (fp_line - (start -43.705202 -2.01263) - (end -44.186535 -1.982757) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "23482336-7e44-4a15-94bc-eb6e18988bf7") - ) - (fp_line - (start -43.660356 2.306681) - (end -43.058004 2.418251) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "018567ee-8b04-473e-962a-61bbd16e73a5") - ) - (fp_line - (start -43.216479 -2.054269) - (end -43.705202 -2.01263) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b01e58a2-57bb-4a0b-8c7e-c212502b4557") - ) - (fp_line - (start -43.058004 2.418251) - (end -41.575062 2.724236) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "89223289-fd43-45d3-bb54-8fcd4d01893b") - ) - (fp_line - (start -42.733964 -2.104735) - (end -43.216479 -2.054269) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b9288226-8324-4b85-913c-57d10082910a") - ) - (fp_line - (start -42.271255 -2.161089) - (end -42.733964 -2.104735) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "36d91ac6-0d35-4a2f-8756-469543bd7861") - ) - (fp_line - (start -41.84195 -2.220396) - (end -42.271255 -2.161089) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ece8140e-3ffe-478b-becc-41e0b378d5ed") - ) - (fp_line - (start -41.575062 2.724236) - (end -39.77763 3.121756) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3e608b4a-5d4e-4483-8f7b-ef0e51516e96") - ) - (fp_line - (start -41.459646 -2.279715) - (end -41.84195 -2.220396) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "34302f08-457f-44da-9c17-843ccbca59cf") - ) - (fp_line - (start -41.134796 -2.337176) - (end -41.459646 -2.279715) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0dbed812-1aae-4643-bb22-2fad295bcb78") - ) - (fp_line - (start -40.993439 -2.365887) - (end -41.134796 -2.337176) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bf6a8014-1bc6-4f3f-a3f0-d32ac111b181") - ) - (fp_line - (start -40.865245 -2.395161) - (end -40.993439 -2.365887) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3faf8a4e-08f9-40c1-8fab-1aad6395deef") - ) - (fp_line - (start -40.749548 -2.425428) - (end -40.865245 -2.395161) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "56344b17-7a20-4a71-8b06-860c0515b79c") - ) - (fp_line - (start -40.645686 -2.457121) - (end -40.749548 -2.425428) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4f2c7b15-2996-45bb-aaa9-dbdf7cff59bc") - ) - (fp_line - (start -40.552995 -2.490669) - (end -40.645686 -2.457121) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f72079e4-5961-45b5-9091-9dec4e26070b") - ) - (fp_line - (start -40.470811 -2.526504) - (end -40.552995 -2.490669) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "133b7a43-a5a4-4585-b2b2-2ff634539adc") - ) - (fp_line - (start -40.39847 -2.565057) - (end -40.470811 -2.526504) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "24619975-12a2-49df-a4f9-ee70420a1c63") - ) - (fp_line - (start -40.33531 -2.60676) - (end -40.39847 -2.565057) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c1d6ef8c-97b6-45e2-8f33-a8b99af31974") - ) - (fp_line - (start -40.280667 -2.652043) - (end -40.33531 -2.60676) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1623cd86-fe31-4ea7-8197-3a15cc276f04") - ) - (fp_line - (start -40.233876 -2.701338) - (end -40.280667 -2.652043) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e0a66dc4-1b09-483b-a5b8-130db0c7a29d") - ) - (fp_line - (start -40.194276 -2.755075) - (end -40.233876 -2.701338) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5f690001-17ac-45ed-9667-8a4bbdcaddb9") - ) - (fp_line - (start -40.161201 -2.813687) - (end -40.194276 -2.755075) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "052fc356-9cd9-47c5-ae6a-d5954dcbf6c9") - ) - (fp_line - (start -40.13399 -2.877604) - (end -40.161201 -2.813687) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1de03f37-5bfb-455a-bc3e-27c659ebd935") - ) - (fp_line - (start -40.111976 -2.947257) - (end -40.13399 -2.877604) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cce0f357-afa1-417c-900f-0fad2c5442eb") - ) - (fp_line - (start -40.094475 -3.022815) - (end -40.111976 -2.947257) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7ea81ae4-4fd7-4fe9-adab-e7a9b00e2904") - ) - (fp_line - (start -40.080709 -3.103402) - (end -40.094475 -3.022815) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c5af14ca-6cd8-4dea-8bb1-e56e7e4c6dc0") - ) - (fp_line - (start -40.069871 -3.187882) - (end -40.080709 -3.103402) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0e62d970-eec5-4f5b-840b-7eec95454bf4") - ) - (fp_line - (start -40.061157 -3.275115) - (end -40.069871 -3.187882) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "15289ec8-1b46-4a3a-9a6e-bd2454b3fc46") - ) - (fp_line - (start -40.031472 -3.628838) - (end -40.061157 -3.275115) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9801a07d-0a19-4c2f-8a28-a6e4b8289726") - ) - (fp_line - (start -40.021322 -3.712777) - (end -40.031472 -3.628838) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8450333d-48a3-4ff0-830a-238ab49908f1") - ) - (fp_line - (start -40.008472 -3.792646) - (end -40.021322 -3.712777) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c46a60d4-cfa8-42c7-b182-23cfb4a2508e") - ) - (fp_line - (start -39.992118 -3.867304) - (end -40.008472 -3.792646) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "93595d8c-5526-4ba8-bfe5-d47eddb9a5f2") - ) - (fp_line - (start -39.971457 -3.935616) - (end -39.992118 -3.867304) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "325b447c-5157-436d-ae4a-4d1ce6ec568a") - ) - (fp_line - (start -39.945684 -3.996444) - (end -39.971457 -3.935616) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1ae0304d-4517-4e7f-b716-4ff76c222789") - ) - (fp_line - (start -39.930628 -4.023696) - (end -39.945684 -3.996444) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "62d35c0e-38f3-4d26-b678-786ef1d57dda") - ) - (fp_line - (start -39.913994 -4.04865) - (end -39.930628 -4.023696) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "323aad1e-6463-4b49-8cfd-12ef6126571a") - ) - (fp_line - (start -39.895679 -4.071163) - (end -39.913994 -4.04865) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "69a6e2b5-edfb-4123-ac3e-2275ccd370d9") - ) - (fp_line - (start -39.875584 -4.091095) - (end -39.895679 -4.071163) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "efdb7656-821c-40d8-99e4-0e00d6caadcd") - ) - (fp_line - (start -39.853607 -4.108304) - (end -39.875584 -4.091095) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6685eeed-5346-4c45-9c6b-d52563c5aa4a") - ) - (fp_line - (start -39.829649 -4.122644) - (end -39.853607 -4.108304) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e77a4d08-da0f-41fc-a7ae-86f3ae236fde") - ) - (fp_line - (start -39.803638 -4.134015) - (end -39.829649 -4.122644) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f1129367-1b1d-40f8-a268-3b76870ae55c") - ) - (fp_line - (start -39.77763 3.121756) - (end -35.559873 4.09088) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "31222062-661c-4895-aaad-971ae93e7e4c") - ) - (fp_line - (start -39.775614 -4.142464) - (end -39.803638 -4.134015) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9baa8410-7d8d-4fc1-8919-372fcf8114ba") - ) - (fp_line - (start -39.745648 -4.148079) - (end -39.775614 -4.142464) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7e888fa1-b038-456f-b06d-cd45b092ee56") - ) - (fp_line - (start -39.713809 -4.150947) - (end -39.745648 -4.148079) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e105e235-9c91-40d0-8ed5-a8cbb4ed8333") - ) - (fp_line - (start -39.680169 -4.151155) - (end -39.713809 -4.150947) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b675a834-9f81-4be2-98ab-148c8f65ecfd") - ) - (fp_line - (start -39.644796 -4.148793) - (end -39.680169 -4.151155) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3f07d08d-52e6-4dbb-b811-3ac0d237ca41") - ) - (fp_line - (start -39.607761 -4.143945) - (end -39.644796 -4.148793) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "13ee8813-6e6f-45e7-a604-cb69bf99cf3e") - ) - (fp_line - (start -39.569133 -4.1367) - (end -39.607761 -4.143945) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d7f5e01a-960c-4e52-940b-5513f6fa6edd") - ) - (fp_line - (start -39.528983 -4.127146) - (end -39.569133 -4.1367) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a2be9695-ff88-460c-ad3c-0535d05c94a9") - ) - (fp_line - (start -39.48738 -4.115369) - (end -39.528983 -4.127146) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3f1de9ba-a7f8-4dc2-b5dc-db97178ae551") - ) - (fp_line - (start -39.400096 -4.085501) - (end -39.48738 -4.115369) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "19dcdde1-af8c-464f-bcb5-56723262879c") - ) - (fp_line - (start -39.307842 -4.047793) - (end -39.400096 -4.085501) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ce89404c-a419-4e6d-bf90-fc4daa0b422c") - ) - (fp_line - (start -39.211176 -4.002946) - (end -39.307842 -4.047793) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "14b17517-fd93-4cf1-8318-ddc2115c9631") - ) - (fp_line - (start -39.110661 -3.951659) - (end -39.211176 -4.002946) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "26fba68f-8779-4bfe-92c9-52161c542c42") - ) - (fp_line - (start -39.006851 -3.894632) - (end -39.110661 -3.951659) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bd561433-2c76-47ee-98f4-2d147e006532") - ) - (fp_line - (start -38.900311 -3.832565) - (end -39.006851 -3.894632) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "137ab9ed-a899-47ad-b39d-012c3a62b4c4") - ) - (fp_line - (start -38.791598 -3.766156) - (end -38.900311 -3.832565) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a008cd7f-8550-4505-9594-829055e5c4d0") - ) - (fp_line - (start -38.681271 -3.696106) - (end -38.791598 -3.766156) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8755b267-1416-4ae8-99f6-734a363d1d39") - ) - (fp_line - (start -38.569892 -3.623115) - (end -38.681271 -3.696106) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "75f9537e-b11c-4f17-9382-35358686e15f") - ) - (fp_line - (start -38.346212 -3.471103) - (end -38.569892 -3.623115) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ed259bfb-12ad-4592-b790-d549d73768cd") - ) - (fp_line - (start -38.123384 -3.316013) - (end -38.346212 -3.471103) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b91e2b83-a3e9-474f-bd99-b1048831cbd4") - ) - (fp_line - (start -38.011212 -3.239496) - (end -38.123384 -3.316013) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c9d38c77-0b82-4020-94b7-0d4db555b748") - ) - (fp_line - (start -37.897629 -3.164888) - (end -38.011212 -3.239496) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0e2b1c8b-91ec-4f2b-8110-003f4a045149") - ) - (fp_line - (start -37.781955 -3.093104) - (end -37.897629 -3.164888) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "13b3064c-5f84-4612-9f2e-050f8a976cd2") - ) - (fp_line - (start -37.663511 -3.025061) - (end -37.781955 -3.093104) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "249b9fcd-6fd3-4507-ac0f-f8fb97aa21f5") - ) - (fp_line - (start -37.541617 -2.961677) - (end -37.663511 -3.025061) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7ff4403f-5bb9-4289-9322-01974c030746") - ) - (fp_line - (start -37.415594 -2.903865) - (end -37.541617 -2.961677) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "518f428c-79ec-4fc7-ab84-69aaaaad5129") - ) - (fp_line - (start -37.284763 -2.852546) - (end -37.415594 -2.903865) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a28877a4-715b-40ab-8e93-5edd9bb8b83a") - ) - (fp_line - (start -37.148443 -2.808635) - (end -37.284763 -2.852546) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "96f655e7-7f42-49e8-a922-437fea187f4c") - ) - (fp_line - (start -37.078012 -2.789743) - (end -37.148443 -2.808635) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2ddd8396-bf73-4bd9-bd7c-0be89f90957f") - ) - (fp_line - (start -37.005956 -2.773048) - (end -37.078012 -2.789743) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "818621cb-2c50-4a4e-b323-10e852771e2c") - ) - (fp_line - (start -36.932187 -2.758662) - (end -37.005956 -2.773048) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7dc27be1-5494-4641-aa3d-a14e99c99e20") - ) - (fp_line - (start -36.856621 -2.7467) - (end -36.932187 -2.758662) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5af093ac-689e-4f65-a2af-57607d0a8bcc") - ) - (fp_line - (start -36.779173 -2.737279) - (end -36.856621 -2.7467) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ae7bacb4-014c-48c8-8015-aa180c0eae1a") - ) - (fp_line - (start -36.69976 -2.730512) - (end -36.779173 -2.737279) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a677cdb5-178c-4682-a7bf-c9305b967ad4") - ) - (fp_line - (start -36.618294 -2.726513) - (end -36.69976 -2.730512) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "97cfa97e-1234-482f-9aac-ec8b1f290136") - ) - (fp_line - (start -36.534693 -2.725398) - (end -36.618294 -2.726513) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "74383c39-9244-4e4d-ba76-f6354345a090") - ) - (fp_line - (start -36.44887 -2.72728) - (end -36.534693 -2.725398) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "87e7b661-97c7-4651-94c3-7935918d4b2c") - ) - (fp_line - (start -36.36074 -2.732274) - (end -36.44887 -2.72728) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "31a420e9-13b8-469f-8c96-e3e420e1fe19") - ) - (fp_line - (start -36.270219 -2.740495) - (end -36.36074 -2.732274) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "15a1bc59-b12a-4d40-8bee-66e37e73beb3") - ) - (fp_line - (start -36.177221 -2.752059) - (end -36.270219 -2.740495) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "234ae0fb-bf24-4027-aa9e-b7a0c6cfa734") - ) - (fp_line - (start -35.983747 -2.785309) - (end -36.177221 -2.752059) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6b279185-6f38-4b81-ae36-ff1542bf527c") - ) - (fp_line - (start -35.781077 -2.831164) - (end -35.983747 -2.785309) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "931d47fa-c8c0-4ced-93f3-8c34f1138a8a") - ) - (fp_line - (start -35.57026 -2.888399) - (end -35.781077 -2.831164) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d2a8650b-31c9-4951-908a-258ab891029b") - ) - (fp_line - (start -35.559873 4.09088) - (end -30.928687 5.143875) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e4ee631f-7b5f-4aa5-bd14-16fa50550387") - ) - (fp_line - (start -35.352342 -2.955793) - (end -35.57026 -2.888399) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ff14944a-603a-41f3-b9c8-02c63cebfae9") - ) - (fp_line - (start -35.128375 -3.032124) - (end -35.352342 -2.955793) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cbbbf027-3aed-43eb-b7d5-afe64aee56c8") - ) - (fp_line - (start -34.899402 -3.116169) - (end -35.128375 -3.032124) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "aeca58ae-57f6-459f-8629-4308ebc2d05d") - ) - (fp_line - (start -34.430639 -3.302517) - (end -34.899402 -3.116169) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "28c87bfa-bb85-4843-bd2f-e08a3a4270d5") - ) - (fp_line - (start -32.565034 -4.11212) - (end -34.430639 -3.302517) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "87c0954c-f8e8-48b3-b56a-b04a7a15e0ed") - ) - (fp_line - (start -31.555651 -13.79911) - (end -31.549825 -13.728514) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d2e96342-0c26-4227-8953-309ff0a23a48") - ) - (fp_line - (start -31.550798 -13.86524) - (end -31.555651 -13.79911) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4b3689b1-132d-4d47-af89-a4bfe4efbc00") - ) - (fp_line - (start -31.549825 -13.728514) - (end -31.533981 -13.652782) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "470ba89f-965c-48c8-902f-235b8b40253e") - ) - (fp_line - (start -31.544183 -13.896819) - (end -31.550798 -13.86524) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2b7e7494-a1e4-4564-97a6-115d7a2b984e") - ) - (fp_line - (start -31.534765 -13.927405) - (end -31.544183 -13.896819) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0784f020-9e51-48c1-a0f6-a21a617312c0") - ) - (fp_line - (start -31.533981 -13.652782) - (end -31.508773 -13.571244) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cf408431-0d74-4f79-a756-446f1fc721a9") - ) - (fp_line - (start -31.522577 -13.956956) - (end -31.534765 -13.927405) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "050ed1cc-df4e-4b1e-b360-c6e6fc309ac4") - ) - (fp_line - (start -31.508773 -13.571244) - (end -31.474858 -13.483229) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7825e058-7348-4dc6-b3d4-f3ac8cc84a64") - ) - (fp_line - (start -31.50765 -13.985426) - (end -31.522577 -13.956956) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b668a0aa-26d3-4389-8c9b-e261dd8de01f") - ) - (fp_line - (start -31.490016 -14.012774) - (end -31.50765 -13.985426) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "726ed8a9-a16a-4820-96bc-df4ef41de866") - ) - (fp_line - (start -31.474858 -13.483229) - (end -31.432892 -13.388065) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8ff1e5b2-1174-42ea-95f2-9c42e40cfbfd") - ) - (fp_line - (start -31.469706 -14.038956) - (end -31.490016 -14.012774) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d4fbd148-ce37-4a28-baf6-b40dc5cb2cf8") - ) - (fp_line - (start -31.446754 -14.063929) - (end -31.469706 -14.038956) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "245dcc55-46f4-47bb-a64f-8f7f8c82c6b0") - ) - (fp_line - (start -31.432892 -13.388065) - (end -31.327437 -13.173617) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f2ce0cd8-fa9b-4a02-8de4-a53df6714293") - ) - (fp_line - (start -31.421189 -14.087648) - (end -31.446754 -14.063929) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "32556faa-34ba-4fa4-bc53-8a2d809a953c") - ) - (fp_line - (start -31.393044 -14.11007) - (end -31.421189 -14.087648) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ee877da4-7981-4f2c-bb96-c95264926071") - ) - (fp_line - (start -31.362351 -14.131152) - (end -31.393044 -14.11007) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "281917fc-54ce-400e-adc2-56e0192624dc") - ) - (fp_line - (start -31.32914 -14.150851) - (end -31.362351 -14.131152) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "133fc68b-d07e-41bf-af79-bbff6c9ec6b0") - ) - (fp_line - (start -31.327437 -13.173617) - (end -31.048811 -12.629453) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9129d7a0-027f-4115-a6d2-924ba6846eec") - ) - (fp_line - (start -31.293445 -14.169122) - (end -31.32914 -14.150851) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "276a1e9b-adf5-433a-9b56-b57b304b5e13") - ) - (fp_line - (start -31.255294 -14.185922) - (end -31.293445 -14.169122) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4aa4cfd4-4c69-4149-ba50-4e4596ec2a36") - ) - (fp_line - (start -31.214723 -14.201209) - (end -31.255294 -14.185922) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "22b0b591-f15a-4b31-ae89-b4b764d4aedc") - ) - (fp_line - (start -31.171762 -14.214938) - (end -31.214723 -14.201209) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "44094635-ecb8-4b61-868a-5cf7bd10c104") - ) - (fp_line - (start -31.126442 -14.227065) - (end -31.171762 -14.214938) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "46abdfb6-f580-47ca-8aa2-007a20dddeec") - ) - (fp_line - (start -31.078795 -14.237549) - (end -31.126442 -14.227065) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "34709924-e99c-4361-a932-378628c1edff") - ) - (fp_line - (start -31.048811 -12.629453) - (end -30.886147 -12.28901) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e10e3abd-ec1d-41e5-82da-4e2038da9318") - ) - (fp_line - (start -31.040347 -4.720701) - (end -32.565034 -4.11212) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "99583b06-d117-42e0-b9b1-4436d78aa3b7") - ) - (fp_line - (start -31.028853 -14.246345) - (end -31.078795 -14.237549) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f4d36216-6b07-4ade-9af9-a6614f3ee5a2") - ) - (fp_line - (start -30.976647 -14.253409) - (end -31.028853 -14.246345) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "dee5c6f4-1add-4412-a319-c83a2e5cb7d6") - ) - (fp_line - (start -30.928687 5.143875) - (end -28.482478 5.667962) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1048b0d4-ef60-4255-adea-c8931acb250d") - ) - (fp_line - (start -30.922209 -14.258698) - (end -30.976647 -14.253409) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ab5e3821-057c-4541-b3da-fc04e33abe78") - ) - (fp_line - (start -30.886147 -12.28901) - (end -30.801274 -12.099353) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "29a9e3d1-92ca-4ced-93b2-f646f8fd66b5") - ) - (fp_line - (start -30.865571 -14.262169) - (end -30.922209 -14.258698) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d9ad4b2e-a8cb-4a92-82ad-abeff591544d") - ) - (fp_line - (start -30.806765 -14.263779) - (end -30.865571 -14.262169) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8bbf9066-af56-4459-b1f9-28611d2d1c55") - ) - (fp_line - (start -30.801274 -12.099353) - (end -30.714916 -11.895844) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bc7e7830-e6e7-4722-ab5b-8a25d33cd4d8") - ) - (fp_line - (start -30.745822 -14.263483) - (end -30.806765 -14.263779) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5acd5c52-505e-41b9-bd58-ec9397405af2") - ) - (fp_line - (start -30.733392 -4.858634) - (end -31.040347 -4.720701) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fec916bf-4453-41a8-b6d5-2abe8ee318c0") - ) - (fp_line - (start -30.714916 -11.895844) - (end -30.540178 -11.447687) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b4321dc6-2872-4206-b462-21090f089e23") - ) - (fp_line - (start -30.682773 -14.261238) - (end -30.745822 -14.263483) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3b528653-dae3-472d-8b8a-3a79e6373e88") - ) - (fp_line - (start -30.617652 -14.257001) - (end -30.682773 -14.261238) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1ca912f1-2bae-41f3-aa8c-a33867c4ec05") - ) - (fp_line - (start -30.591867 -4.929414) - (end -30.733392 -4.858634) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8d746d03-06b8-468f-9fa9-a365f791a8e5") - ) - (fp_line - (start -30.550488 -14.250727) - (end -30.617652 -14.257001) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "14db3ef4-0205-4de3-9e76-1c8329741f7b") - ) - (fp_line - (start -30.540178 -11.447687) - (end -30.366201 -10.954628) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "51b609dd-193f-4368-9496-37c320a248ac") - ) - (fp_line - (start -30.481314 -14.242375) - (end -30.550488 -14.250727) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5d3f7f9f-f8b3-4eb1-ae16-bec3232da814") - ) - (fp_line - (start -30.458508 -5.002364) - (end -30.591867 -4.929414) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "19d1b168-d030-4995-bd03-67278618ab36") - ) - (fp_line - (start -30.410161 -14.231901) - (end -30.481314 -14.242375) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "92a9233c-2d81-4c52-96f0-10096204ee98") - ) - (fp_line - (start -30.366201 -10.954628) - (end -30.197053 -10.429838) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "272aa603-b35c-4a5d-9147-8ebdbe44380a") - ) - (fp_line - (start -30.337062 -14.21926) - (end -30.410161 -14.231901) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2dc71416-05ba-4eca-885a-9ccaa8cd3733") - ) - (fp_line - (start -30.333468 -5.078198) - (end -30.458508 -5.002364) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1edd6fca-1eb7-4299-9373-f01a1407a5c1") - ) - (fp_line - (start -30.262047 -14.20441) - (end -30.337062 -14.21926) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1dc0ec53-db26-43df-9204-e22bfe4e449b") - ) - (fp_line - (start -30.216892 -5.157636) - (end -30.333468 -5.078198) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6acf5232-5921-4b8d-9930-742cd8a3aca7") - ) - (fp_line - (start -30.197053 -10.429838) - (end -30.0368 -9.886487) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5b807a26-ad07-4d66-a059-d36e257fa4c7") - ) - (fp_line - (start -30.18515 -14.187307) - (end -30.262047 -14.20441) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3cc679f6-ae1a-472c-8895-4461b4e7a299") - ) - (fp_line - (start -30.108931 -5.241394) - (end -30.216892 -5.157636) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "01633f2d-c35f-4795-8027-6ebb8f220047") - ) - (fp_line - (start -30.106401 -14.167906) - (end -30.18515 -14.187307) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8b22660d-25b2-42cf-8cc4-7e92e3bee761") - ) - (fp_line - (start -30.0368 -9.886487) - (end -29.889511 -9.337746) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "14a3a7a6-6ef8-4f4d-8cbf-8e0ae1bd1aaf") - ) - (fp_line - (start -30.009734 -5.33019) - (end -30.108931 -5.241394) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "28b31c10-88ba-47eb-b6a4-b41956d226ab") - ) - (fp_line - (start -29.963463 -5.376696) - (end -30.009734 -5.33019) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c1185343-7dcf-44d9-aa7d-535d717ab3ef") - ) - (fp_line - (start -29.94348 -14.122051) - (end -30.106401 -14.167906) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ce88f39e-668a-458b-b4be-df3b5af73696") - ) - (fp_line - (start -29.919409 -5.424687) - (end -29.963463 -5.376696) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a726c700-72f7-4845-bccd-0e2fc94f73fd") - ) - (fp_line - (start -29.889511 -9.337746) - (end -29.759254 -8.796784) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "eef993bb-076a-4eff-89f3-c534754cd6a6") - ) - (fp_line - (start -29.877559 -5.474213) - (end -29.919409 -5.424687) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "83938096-a1de-48c8-ab3e-4346026e2f25") - ) - (fp_line - (start -29.837899 -5.525319) - (end -29.877559 -5.474213) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "dfd88f72-866e-4ff8-aed8-0c8d55922f65") - ) - (fp_line - (start -29.800419 -5.578056) - (end -29.837899 -5.525319) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "569ffd3a-d4cc-41d9-8320-e012517424aa") - ) - (fp_line - (start -29.773571 -14.066537) - (end -29.94348 -14.122051) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "75dc0b42-2e94-4321-8ab8-068c71f0ff0c") - ) - (fp_line - (start -29.765105 -5.632467) - (end -29.800419 -5.578056) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e42030c6-49fc-47d8-a2aa-f39e8e272ecd") - ) - (fp_line - (start -29.759254 -8.796784) - (end -29.650094 -8.276774) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c017cf71-c2f9-4476-b53b-9f37428bf034") - ) - (fp_line - (start -29.731944 -5.688602) - (end -29.765105 -5.632467) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ab1bc1f7-5d2b-498c-a5d7-c515ade35a64") - ) - (fp_line - (start -29.700924 -5.74651) - (end -29.731944 -5.688602) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e93eb207-75d9-4576-b867-0ddfa9b57c60") - ) - (fp_line - (start -29.672033 -5.806234) - (end -29.700924 -5.74651) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ae06580c-b74a-4692-baa9-21bba02773ba") - ) - (fp_line - (start -29.650094 -8.276774) - (end -29.566101 -7.790883) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7084d103-aced-4111-ab3e-05d3a9f38db3") - ) - (fp_line - (start -29.645257 -5.867824) - (end -29.672033 -5.806234) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bf090a1e-aef8-4a64-b99e-fe66e364126b") - ) - (fp_line - (start -29.620584 -5.931328) - (end -29.645257 -5.867824) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a13626d3-4d41-4f24-9d2f-cd0fbc1aa592") - ) - (fp_line - (start -29.598004 -5.996794) - (end -29.620584 -5.931328) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "68214289-d637-4750-9c4c-e8a9b515e70b") - ) - (fp_line - (start -29.596967 -14.001066) - (end -29.773571 -14.066537) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "10988dc8-5fcf-4511-82cf-5d37b5fc35ad") - ) - (fp_line - (start -29.5775 -6.064267) - (end -29.598004 -5.996794) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "60e80393-ceb1-40c0-be70-8bb712b97eee") - ) - (fp_line - (start -29.566101 -7.790883) - (end -29.534747 -7.564514) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7753b7d6-d00c-4773-9342-d67a51925510") - ) - (fp_line - (start -29.559063 -6.133795) - (end -29.5775 -6.064267) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "51c65b54-90df-49c4-9271-027fe0e15eda") - ) - (fp_line - (start -29.534747 -7.564514) - (end -29.5108 -7.349591) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e18933b9-f4af-46ec-96e2-fbc974e071e9") - ) - (fp_line - (start -29.528334 -6.279209) - (end -29.559063 -6.133795) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0c27035f-5ee3-46c9-8620-f5bf39da776f") - ) - (fp_line - (start -29.5108 -7.349591) - (end -29.494363 -7.145737) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f99aa4f3-a86e-4d34-a11c-7619e52a39fc") - ) - (fp_line - (start -29.505718 -6.433413) - (end -29.528334 -6.279209) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "482afcc6-043d-4097-9445-4600158af309") - ) - (fp_line - (start -29.494363 -7.145737) - (end -29.485536 -6.952573) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ae1c0669-b5aa-4f73-9be8-f793bf026860") - ) - (fp_line - (start -29.491113 -6.59679) - (end -29.505718 -6.433413) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "85790def-a4cd-413b-b8a6-7edaa6a04643") - ) - (fp_line - (start -29.485536 -6.952573) - (end -29.484419 -6.769716) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "61717a7f-2bf9-48ea-806e-a83ce7efa0cf") - ) - (fp_line - (start -29.484419 -6.769716) - (end -29.491113 -6.59679) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b491bfa3-2264-4785-9566-d4bbb59bc3a1") - ) - (fp_line - (start -29.413959 -13.92534) - (end -29.596967 -14.001066) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "59b958c7-c503-4a3b-82c0-2aa0abadc561") - ) - (fp_line - (start -29.224837 -13.83906) - (end -29.413959 -13.92534) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fc405793-b3c3-488b-9e4f-5aa3903ccda0") - ) - (fp_line - (start -29.029892 -13.741929) - (end -29.224837 -13.83906) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "55913305-a7e2-4925-8bf6-99a3579a6493") - ) - (fp_line - (start -28.829417 -13.633647) - (end -29.029892 -13.741929) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e146dc11-7051-447e-beb5-d145a8d21908") - ) - (fp_line - (start -28.623702 -13.513919) - (end -28.829417 -13.633647) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bdafa461-f098-4052-bbd1-6df5dd74bb8d") - ) - (fp_line - (start -28.482478 5.667962) - (end -25.938728 6.176253) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f09ab4b3-61c6-4a7a-a04d-92635eb14808") - ) - (fp_line - (start -28.413037 -13.382442) - (end -28.623702 -13.513919) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0b22a5ae-6fa9-4b5e-b1f3-ae20a2eace8f") - ) - (fp_line - (start -28.197717 -13.238923) - (end -28.413037 -13.382442) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "63250497-a63e-4596-a78e-85258ef1f2d4") - ) - (fp_line - (start -27.978029 -13.08306) - (end -28.197717 -13.238923) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2381276e-8e48-4b17-a689-884dc13ede39") - ) - (fp_line - (start -27.754267 -12.914556) - (end -27.978029 -13.08306) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5521baa5-e142-49df-b199-570977368a55") - ) - (fp_line - (start -27.526721 -12.733113) - (end -27.754267 -12.914556) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "da04d064-5f3a-4a2f-a07c-adf2fb59f102") - ) - (fp_line - (start -27.295683 -12.538433) - (end -27.526721 -12.733113) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4871d9b3-ee5c-4132-b52f-b814fda51f47") - ) - (fp_line - (start -27.061444 -12.330217) - (end -27.295683 -12.538433) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "794735d8-ab2b-469d-9346-28c299c17138") - ) - (fp_line - (start -26.824295 -12.108168) - (end -27.061444 -12.330217) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "045f0e77-a542-4928-80e2-4d469e36265c") - ) - (fp_line - (start -26.584588 -11.872346) - (end -26.824295 -12.108168) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "12ce5be2-9435-4df1-be03-9cd0a4365040") - ) - (fp_line - (start -26.342901 -11.624241) - (end -26.584588 -11.872346) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "48dff8a8-0506-41f9-a5c0-d2fb5195fe2a") - ) - (fp_line - (start -25.856143 -11.098569) - (end -26.342901 -11.624241) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7552ba43-87e5-4906-81d0-12b5650ef782") - ) - (fp_line - (start -25.384406 6.595726) - (end -25.382877 6.637761) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b5a5439a-40d8-44d6-9606-02d9c957f73a") - ) - (fp_line - (start -25.382877 6.637761) - (end -25.37822 6.679041) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "841edf7e-a039-41bb-88e3-08ceb10ccdbc") - ) - (fp_line - (start -25.382871 6.552956) - (end -25.384406 6.595726) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9ce12b35-c364-4912-9d1e-973019ea390b") - ) - (fp_line - (start -25.378332 6.509473) - (end -25.382871 6.552956) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "85be37e3-c158-402e-bf0d-9f5429f21207") - ) - (fp_line - (start -25.37822 6.679041) - (end -25.37037 6.719544) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ce69f8b6-89c5-4e2e-b18e-fb021ea50078") - ) - (fp_line - (start -25.370855 6.4653) - (end -25.378332 6.509473) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "206797f2-ab44-4409-8d02-f9d1b6882b63") - ) - (fp_line - (start -25.37037 6.719544) - (end -25.344908 6.798068) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ee8f86c8-1c7f-4787-94a3-3aefbe575e2c") - ) - (fp_line - (start -25.369121 -10.545923) - (end -25.856143 -11.098569) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8d7b4ed8-6098-4c52-8e70-19545e7e8ca9") - ) - (fp_line - (start -25.360502 6.420459) - (end -25.370855 6.4653) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "be75b313-ca02-465b-8df2-d4b70ff969f1") - ) - (fp_line - (start -25.347338 6.37497) - (end -25.360502 6.420459) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6094dd45-e67e-4d9d-9d45-6caefa0db62c") - ) - (fp_line - (start -25.344908 6.798068) - (end -25.30632 6.872856) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "704217be-f2b9-408a-86ca-91cfff662734") - ) - (fp_line - (start -25.331426 6.328857) - (end -25.347338 6.37497) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4cfe9bea-63ab-43ff-9b60-57fa022db200") - ) - (fp_line - (start -25.312828 6.282141) - (end -25.331426 6.328857) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7d2ec941-8127-42c1-8a1d-2216f6760c92") - ) - (fp_line - (start -25.30632 6.872856) - (end -25.254498 6.943373) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fa04e153-881c-4d19-b1b9-e727e2fde741") - ) - (fp_line - (start -25.291609 6.234844) - (end -25.312828 6.282141) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8220be06-a4cf-4d30-a32e-0fb953a729d5") - ) - (fp_line - (start -25.267831 6.186987) - (end -25.291609 6.234844) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d46c0c4c-e56e-4e70-9b87-04bf329ec784") - ) - (fp_line - (start -25.254498 6.943373) - (end -25.189339 7.009083) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "574632c3-bb94-40f7-9554-3af44190c2e8") - ) - (fp_line - (start -25.212855 6.089683) - (end -25.267831 6.186987) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "dd84b79d-a8e0-4d5e-938f-b64b29cdd7bf") - ) - (fp_line - (start -25.189339 7.009083) - (end -25.110734 7.069448) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "89412dd4-67d8-4e32-9bea-753f8bcfe187") - ) - (fp_line - (start -25.148406 5.990405) - (end -25.212855 6.089683) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3f870b5c-1233-4310-93ca-45cd359bf056") - ) - (fp_line - (start -25.110734 7.069448) - (end -25.018578 7.123931) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7f5979af-2716-4a52-a457-b14159656641") - ) - (fp_line - (start -25.07499 5.889326) - (end -25.148406 5.990405) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2934a5fc-1504-440a-82f5-d749ad590375") - ) - (fp_line - (start -25.018578 7.123931) - (end -24.912767 7.171996) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "136e9854-830f-4b99-a3ed-288f77e0c13f") - ) - (fp_line - (start -24.993116 5.786622) - (end -25.07499 5.889326) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a0b33aed-f6b1-4e3d-9d1b-e6c037e0c61f") - ) - (fp_line - (start -24.912767 7.171996) - (end -24.793194 7.213107) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d0dd870e-a0a6-4f47-bb19-c1bdc0b082f9") - ) - (fp_line - (start -24.90329 5.682469) - (end -24.993116 5.786622) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fb6b4d86-4f8c-4938-b624-b6dcd9c8a7b7") - ) - (fp_line - (start -24.88693 -9.981071) - (end -25.369121 -10.545923) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5ae22048-0b38-41c2-9e80-00def1f63efd") - ) - (fp_line - (start -24.806021 5.577039) - (end -24.90329 5.682469) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1b882222-1dbc-4e59-ad58-faaa5d71807b") - ) - (fp_line - (start -24.793194 7.213107) - (end -24.659753 7.246726) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0e675e93-95ff-4038-9adf-581fa45eaef0") - ) - (fp_line - (start -24.701812 5.47051) - (end -24.806021 5.577039) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "26f51224-bdb6-49f7-8d19-467e88bffd79") - ) - (fp_line - (start -24.659753 7.246726) - (end -24.512337 7.272316) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b8827885-d9d3-462c-9bc8-d1f105bdedde") - ) - (fp_line - (start -24.591173 5.363055) - (end -24.701812 5.47051) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4bf7b52b-4ebe-4c19-bcba-30a487299ce3") - ) - (fp_line - (start -24.512337 7.272316) - (end -24.350844 7.289343) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fc1f41a4-e5a1-4448-9f66-24305c043901") - ) - (fp_line - (start -24.47461 5.254849) - (end -24.591173 5.363055) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "63f286ad-b584-4bf3-841d-039f62373600") - ) - (fp_line - (start -24.352631 5.146067) - (end -24.47461 5.254849) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b767000d-c5cf-4ba3-88a8-41776949bcc1") - ) - (fp_line - (start -24.350844 7.289343) - (end -24.175164 7.297269) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "008508b6-cb8b-415b-8301-833655063df0") - ) - (fp_line - (start -24.175164 7.297269) - (end -23.985193 7.295556) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a29668ce-16ba-4390-b2aa-3c06412f72b0") - ) - (fp_line - (start -24.094707 4.927181) - (end -24.352631 5.146067) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8adc3414-5d63-404f-8413-d9a7b808eb46") - ) - (fp_line - (start -23.985193 7.295556) - (end -23.780826 7.283668) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ec6da4db-6aa4-498c-bde1-621b65fc6054") - ) - (fp_line - (start -23.957437 -8.873829) - (end -24.88693 -9.981071) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3302e484-c68c-4f86-813d-e36adfb27f9a") - ) - (fp_line - (start -23.822722 4.70631) - (end -24.094707 4.927181) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "20bca956-f673-448f-89d7-cf3c836ead68") - ) - (fp_line - (start -23.780826 7.283668) - (end -23.561956 7.26107) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "73762b6f-bef7-48aa-a4ba-fde3ae930f28") - ) - (fp_line - (start -23.561956 7.26107) - (end -23.328478 7.227223) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ff23f610-a69b-4c8a-a762-c5a8c3e27b88") - ) - (fp_line - (start -23.52033 -8.360979) - (end -23.957437 -8.873829) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cffeeffe-7bbe-4fbb-ad23-b2ebd6bd6cde") - ) - (fp_line - (start -23.328478 7.227223) - (end -23.080575 7.181808) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "beb8fc20-3322-49d4-b384-86af11ed1c35") - ) - (fp_line - (start -23.258879 4.257073) - (end -23.822722 4.70631) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "36e8b989-c7ef-429d-bfc7-e89d4b5674ba") - ) - (fp_line - (start -23.108446 -7.895002) - (end -23.52033 -8.360979) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9d0e19d4-9fd8-4dec-b567-ff6a792e7599") - ) - (fp_line - (start -23.080575 7.181808) - (end -22.819586 7.125367) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "63b7e153-35ff-4a78-95d5-996d83ba0e32") - ) - (fp_line - (start -22.978174 4.027936) - (end -23.258879 4.257073) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8ddb65ed-ef3c-4144-b428-e00cf62b0803") - ) - (fp_line - (start -22.913399 -7.683797) - (end -23.108446 -7.895002) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "15d5cfcb-4c38-41c6-b1b4-4cc589d63ebf") - ) - (fp_line - (start -22.819586 7.125367) - (end -22.547138 7.058658) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "82c0bb1f-fc76-4073-8938-4c3baf9da153") - ) - (fp_line - (start -22.725634 -7.487382) - (end -22.913399 -7.683797) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "839e4d60-cc41-44b0-8c23-71e2b107bbe1") - ) - (fp_line - (start -22.705714 3.795271) - (end -22.978174 4.027936) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "139181b7-5ea6-44a4-9fd5-ee44cdd07150") - ) - (fp_line - (start -22.574318 3.677496) - (end -22.705714 3.795271) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4b75acab-9e12-4943-bd70-60003c9f3140") - ) - (fp_line - (start -22.547138 7.058658) - (end -22.264856 6.982438) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1763acfd-0545-4acd-a6fd-ae11809d675f") - ) - (fp_line - (start -22.544844 -7.305138) - (end -22.725634 -7.487382) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b1a75aa1-3f0b-45dd-b3ec-7752f804b47c") - ) - (fp_line - (start -22.447075 3.558695) - (end -22.574318 3.677496) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7c4428a7-b7b9-4bc9-85d6-626ef60c42e0") - ) - (fp_line - (start -22.370731 -7.136441) - (end -22.544844 -7.305138) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "87b15bbe-5fe6-48f4-80b7-d03a2b40621c") - ) - (fp_line - (start -22.324681 3.438821) - (end -22.447075 3.558695) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1d9054d0-2666-4217-8b96-5fbb6dffeb9e") - ) - (fp_line - (start -22.264856 6.982438) - (end -21.677296 6.804503) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "83c50e2f-0ac0-4d0d-a745-3892cb672d1d") - ) - (fp_line - (start -22.207835 3.317823) - (end -22.324681 3.438821) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9678c950-b0ff-431f-aba6-15083d734721") - ) - (fp_line - (start -22.202989 -6.980669) - (end -22.370731 -7.136441) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "da9b19fe-e0db-483c-9c52-efeb16f77dc1") - ) - (fp_line - (start -22.097051 3.195674) - (end -22.207835 3.317823) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d4d71f97-98c4-4671-acfe-0a36c6830942") - ) - (fp_line - (start -22.041318 -6.837201) - (end -22.202989 -6.980669) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ee092155-7dd4-4ba4-b92c-138fe8879a1a") - ) - (fp_line - (start -21.992122 3.072428) - (end -22.097051 3.195674) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cf6fca82-de25-4a41-aafc-1d74ef565a6c") - ) - (fp_line - (start -21.966816 6.868792) - (end -20.630921 7.062591) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "aaa67c9c-2f50-4c9c-9d7b-62bc8352a699") - ) - (fp_line - (start -21.892656 2.948159) - (end -21.992122 3.072428) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ca19286a-7ead-49fb-ba83-c1645c409edd") - ) - (fp_line - (start -21.885414 -6.705415) - (end -22.041318 -6.837201) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "878398bc-f9dc-4179-bb9e-889ebdb4b322") - ) - (fp_line - (start -21.798265 2.822937) - (end -21.892656 2.948159) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "36165888-0131-45ac-8656-a3cb1ba585b7") - ) - (fp_line - (start -21.734974 -6.584689) - (end -21.885414 -6.705415) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b1566884-e708-4d85-bf0b-99e4a858b532") - ) - (fp_line - (start -21.708557 2.696839) - (end -21.798265 2.822937) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3783380d-cde2-45c2-9b60-c39c9f56e361") - ) - (fp_line - (start -21.677296 6.804503) - (end -21.069916 6.597628) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ae6449a2-ec64-4812-9f38-6d76d798b98a") - ) - (fp_line - (start -21.623143 2.569934) - (end -21.708557 2.696839) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a93fc178-56ec-4d87-ab28-54c2f2c75164") - ) - (fp_line - (start -21.589695 -6.474399) - (end -21.734974 -6.584689) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "85dc0e8a-c5ec-47f4-bc96-023e5beb9ef7") - ) - (fp_line - (start -21.541631 2.442298) - (end -21.623143 2.569934) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c16dd71e-b7fc-48c8-bd20-8af7f445a341") - ) - (fp_line - (start -21.463632 2.314002) - (end -21.541631 2.442298) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a835df25-b442-466f-8945-55cf07f56da4") - ) - (fp_line - (start -21.449277 -6.373926) - (end -21.589695 -6.474399) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e85755ce-026e-4e13-9320-dfe15cf890fd") - ) - (fp_line - (start -21.316609 2.055727) - (end -21.463632 2.314002) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "678aeb9b-72e4-49d0-97c0-f5242c41e1bd") - ) - (fp_line - (start -21.313415 -6.282646) - (end -21.449277 -6.373926) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5567b19d-6a4e-410c-a7d8-99e95d9e2c14") - ) - (fp_line - (start -21.181807 -6.199938) - (end -21.313415 -6.282646) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "304c95e4-0007-4637-a548-d03a2160e74a") - ) - (fp_line - (start -21.178952 1.795691) - (end -21.316609 2.055727) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "97f6ca1b-a6fe-42b3-abc9-15bd1fcc869a") - ) - (fp_line - (start -21.069916 6.597628) - (end -20.455725 6.36788) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "46c52b6e-2255-4e2e-ac29-d4c898f4cec9") - ) - (fp_line - (start -21.054151 -6.125179) - (end -21.181807 -6.199938) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fddf5e36-f1cc-462e-8b07-29e55c5e2bf3") - ) - (fp_line - (start -21.047537 1.534479) - (end -21.178952 1.795691) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b45f7293-971e-40dd-80c8-05c45eee4725") - ) - (fp_line - (start -20.930143 -6.057748) - (end -21.054151 -6.125179) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4101f47b-4883-488e-b71e-c2b4ad3e4e3c") - ) - (fp_line - (start -20.919242 1.272675) - (end -21.047537 1.534479) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "593db6b7-1af5-4b90-b57e-538d56d54e57") - ) - (fp_line - (start -20.809482 -5.997022) - (end -20.930143 -6.057748) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d4ff9d4f-a9a9-4dc2-870d-3978063dd3f7") - ) - (fp_line - (start -20.691864 -5.942381) - (end -20.809482 -5.997022) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "586a6e26-3647-416d-89b4-4d99916fe594") - ) - (fp_line - (start -20.630921 7.062591) - (end -19.303611 7.229361) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3503e220-8b19-4121-a4be-3d3c64f41abc") - ) - (fp_line - (start -20.576897 -5.893243) - (end -20.691864 -5.942381) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "341ccf79-b3c9-4179-b0ad-1a86fafbc321") - ) - (fp_line - (start -20.463827 -5.849196) - (end -20.576897 -5.893243) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "be6f7052-82f8-4e68-b749-ac89c46569c1") - ) - (fp_line - (start -20.455725 6.36788) - (end -19.847734 6.121324) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e6385bcf-cc8f-4292-9f6e-9e54306e3666") - ) - (fp_line - (start -20.351808 -5.809867) - (end -20.463827 -5.849196) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9dd20efe-4c35-4170-8b1e-8d66c668024d") - ) - (fp_line - (start -20.239994 -5.774886) - (end -20.351808 -5.809867) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b6de1a9c-08b4-46bc-a00e-197105c61eb2") - ) - (fp_line - (start -20.127542 -5.743881) - (end -20.239994 -5.774886) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "76652bea-55de-4d28-a02d-33f81fb6f450") - ) - (fp_line - (start -20.013604 -5.71648) - (end -20.127542 -5.743881) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8ba5b918-fc6f-4fea-b0a1-58fe2e095d5e") - ) - (fp_line - (start -19.897338 -5.69231) - (end -20.013604 -5.71648) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7c80ea41-5a2e-422f-9284-fff5f6fbbeb7") - ) - (fp_line - (start -19.847734 6.121324) - (end -19.258951 5.864027) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "063d5899-19ca-4e40-85ca-83801d12a137") - ) - (fp_line - (start -19.777894 -5.671001) - (end -19.897338 -5.69231) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "120d16ca-365d-4305-bf27-9f41b1da7934") - ) - (fp_line - (start -19.654431 -5.652181) - (end -19.777894 -5.671001) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d51dfcf8-d8b3-4d6b-8e15-fa70874f51cf") - ) - (fp_line - (start -19.526101 -5.635478) - (end -19.654431 -5.652181) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0b57c984-0856-4a71-aa6a-8192d0f75e38") - ) - (fp_line - (start -19.303611 7.229361) - (end -17.993614 7.363997) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "adf994d6-f540-4632-9bfa-bd16abdbf3d4") - ) - (fp_line - (start -19.258951 5.864027) - (end -18.702384 5.602056) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "59d3175b-4286-47e8-b112-27ba4cb34529") - ) - (fp_line - (start -19.251462 -5.606936) - (end -19.526101 -5.635478) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "18fe4df3-5c2b-47f3-b940-63894eba6af5") - ) - (fp_line - (start -18.947215 -5.582403) - (end -19.251462 -5.606936) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6ecaa803-fe57-41d4-9ca5-5cd30019e6b1") - ) - (fp_line - (start -18.702384 5.602056) - (end -18.43986 5.471084) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "40db1550-06dd-41ea-a7a5-10adf105a5f4") - ) - (fp_line - (start -18.606596 -5.558902) - (end -18.947215 -5.582403) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a1b74c4e-ad9f-407a-8752-e4f9a5cf3a92") - ) - (fp_line - (start -18.43986 5.471084) - (end -18.187939 5.340439) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ec8597cb-6a35-43d1-a48e-a6924c19a3d5") - ) - (fp_line - (start -18.187939 5.340439) - (end -17.945914 5.210098) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f0843ed7-e153-4009-9ea9-c8f0d4abed9b") - ) - (fp_line - (start -17.993614 7.363997) - (end -16.70966 7.461395) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cb5e4325-40c3-4e42-b55c-93e96ada0d95") - ) - (fp_line - (start -17.945914 5.210098) - (end -17.713077 5.08004) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "745f63ec-5522-4bb3-9f36-5ff57c610c0d") - ) - (fp_line - (start -17.790642 -5.504258) - (end -18.606596 -5.558902) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "70efa2d6-767b-4092-becc-219b7c854afc") - ) - (fp_line - (start -17.713077 5.08004) - (end -17.27214 4.820686) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a8d80d48-8b46-4217-b717-a3505319baee") - ) - (fp_line - (start -17.27214 4.820686) - (end -16.859477 4.562201) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7da6da15-2512-44ef-be71-8970ab5d32a7") - ) - (fp_line - (start -16.859477 4.562201) - (end -16.469428 4.304412) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4d6aee41-b273-4fce-b631-01a491175c32") - ) - (fp_line - (start -16.756642 -5.424952) - (end -17.790642 -5.504258) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1a408239-69a4-4296-81a2-aeb495c6c54e") - ) - (fp_line - (start -16.70966 7.461395) - (end -15.460477 7.51645) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9074c856-f04e-4b9e-be49-c951ec1bb346") - ) - (fp_line - (start -16.469428 4.304412) - (end -16.096341 4.047142) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a7788e7d-fff4-4509-91b0-5a5d63e2cd72") - ) - (fp_line - (start -16.143642 -5.370767) - (end -16.756642 -5.424952) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "07e38084-9e38-420e-b595-7bc620468300") - ) - (fp_line - (start -16.096341 4.047142) - (end -15.378426 3.533464) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2a5f5539-cbc0-4218-a63e-f5f2a752ad4f") - ) - (fp_line - (start -15.460477 7.51645) - (end -14.851539 7.526647) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "50d4f9f6-009c-4a2d-8b3b-350c4c2c5849") - ) - (fp_line - (start -15.459047 -5.304079) - (end -16.143642 -5.370767) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "482995b7-59fd-4c2d-a1ef-94561192fbee") - ) - (fp_line - (start -14.851539 7.526647) - (end -14.253874 7.5252) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "559d2ceb-8b16-48b8-83e0-86c4095af383") - ) - (fp_line - (start -14.697166 -5.222771) - (end -15.459047 -5.304079) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fc8e5354-fa0b-44f7-a4e2-bf4e599e7ef5") - ) - (fp_line - (start -14.253874 7.5252) - (end -13.667871 7.512325) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "84aec70f-3da8-44a1-8c35-16b6651ed112") - ) - (fp_line - (start -13.852303 -5.124731) - (end -14.697166 -5.222771) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fd272323-3551-4dae-b391-3670c632cc0c") - ) - (fp_line - (start -13.667871 7.512325) - (end -13.09392 7.488241) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "67520d27-a8a4-459b-968a-727fbb0b05d9") - ) - (fp_line - (start -13.09392 7.488241) - (end -12.532413 7.453164) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5c82855b-45e2-4821-819f-6f320dd4e347") - ) - (fp_line - (start -12.532413 7.453164) - (end -11.98374 7.407312) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "afb4e518-fe7e-4a99-8748-4afbfcc0f354") - ) - (fp_line - (start -11.98374 7.407312) - (end -11.448291 7.350902) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fa8d563d-d5c2-4c5f-be25-e61a9e4b4897") - ) - (fp_line - (start -11.9285 -4.874222) - (end -13.852303 -5.124731) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5f607e59-1c2e-47b5-a86d-910d57c0a535") - ) - (fp_line - (start -11.448291 7.350902) - (end -10.926454 7.284153) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "02f2a3e9-2dd5-4ec6-b100-79cfe21fffec") - ) - (fp_line - (start -10.926454 7.284153) - (end -10.418622 7.207282) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7465b461-dae2-4846-9e18-fdc855bc0c4d") - ) - (fp_line - (start -10.889867 -4.723315) - (end -11.9285 -4.874222) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1bc7e7c2-3478-44c1-874e-42da7e68fdf3") - ) - (fp_line - (start -10.418622 7.207282) - (end -9.925185 7.120505) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "120c7e83-4de9-4e78-845d-87fc69acc9a9") - ) - (fp_line - (start -9.925185 7.120505) - (end -9.446534 7.02404) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9e9949f6-8d9f-432a-a0b3-a60ff1a8edb4") - ) - (fp_line - (start -9.830073 -4.5567) - (end -10.889867 -4.723315) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "770d5473-7c95-45d5-99a9-b154e63f271e") - ) - (fp_line - (start -9.446534 7.02404) - (end -8.983056 6.918105) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "710ed681-58c1-4661-a008-2ea3debc6aa7") - ) - (fp_line - (start -8.983056 6.918105) - (end -8.535144 6.802917) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "fda1b959-ee18-4143-946f-a09faf524069") - ) - (fp_line - (start -8.771613 -4.37542) - (end -9.830073 -4.5567) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "110c6a08-6340-42b8-8c6a-b85bd7dfb02f") - ) - (fp_line - (start -8.535144 6.802917) - (end -8.103187 6.678694) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "91eb57f9-2db0-40ac-a1ae-a2c1c2fc847c") - ) - (fp_line - (start -8.103187 6.678694) - (end -7.687578 6.545651) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7dbc8d0a-a240-4567-a46a-6910c4ffcc3b") - ) - (fp_line - (start -7.736985 -4.180521) - (end -8.771613 -4.37542) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "83fc8ff2-9169-4291-a90f-9135176d4eab") - ) - (fp_line - (start -7.687578 6.545651) - (end -7.288703 6.404009) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "04d1c37c-358d-4cca-9764-eaf79cc7de63") - ) - (fp_line - (start -7.288703 6.404009) - (end -6.906795 6.25409) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7379a7dd-9389-4b66-9f0d-6902dab279c9") - ) - (fp_line - (start -6.906795 6.25409) - (end -6.541435 6.096643) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "ceb5ea73-8bde-4fc9-91d8-c9219da3236d") - ) - (fp_line - (start -6.748684 -3.973048) - (end -7.736985 -4.180521) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5f30cdbf-609b-44d9-aa0a-63125ae8d2cf") - ) - (fp_line - (start -6.541435 6.096643) - (end -6.192035 5.932524) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7175245b-1530-4946-ba88-1b5f649edd3d") - ) - (fp_line - (start -6.192035 5.932524) - (end -5.858011 5.762587) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a7d8be38-109c-4188-a759-95e1b2478dae") - ) - (fp_line - (start -5.858011 5.762587) - (end -5.538777 5.587687) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "657b42c5-a444-4071-81d0-d58910ff6b63") - ) - (fp_line - (start -5.829205 -3.754043) - (end -6.748684 -3.973048) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "cedf5a0d-e969-4cf4-bd05-c699f1d09035") - ) - (fp_line - (start -5.538777 5.587687) - (end -5.233747 5.408678) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "82639c65-3e2d-4896-a087-1b119c659870") - ) - (fp_line - (start -5.401725 -3.640573) - (end -5.829205 -3.754043) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "56bc952d-801a-423f-adbc-0494b2667a5f") - ) - (fp_line - (start -5.233747 5.408678) - (end -4.942336 5.226415) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "67ee2553-2326-4474-ac52-653d4c0c48c3") - ) - (fp_line - (start -4.996398 -3.524787) - (end -5.401725 -3.640573) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0aa2499c-d942-46bb-a76d-803131b45611") - ) - (fp_line - (start -4.942336 5.226415) - (end -4.663958 5.041754) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "b3870f0d-e7af-4111-9e57-8acba7072aad") - ) - (fp_line - (start -4.663958 5.041754) - (end -4.398028 4.855547) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c502301c-85ff-41d6-96d6-4af24af700ce") - ) - (fp_line - (start -4.612543 -3.406987) - (end -4.996398 -3.524787) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "4d607729-64a3-489d-8ddc-1b002c115a76") - ) - (fp_line - (start -4.398028 4.855547) - (end -4.143959 4.668651) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6ef0b07a-314f-486f-b746-b9a8e228c176") - ) - (fp_line - (start -4.249477 -3.287476) - (end -4.612543 -3.406987) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "be6c8015-a9ee-4c29-83ca-f869559203e8") - ) - (fp_line - (start -4.143959 4.668651) - (end -3.901166 4.48192) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8bce67c7-13ea-4ca1-97fc-69802676f328") - ) - (fp_line - (start -3.906517 -3.16656) - (end -4.249477 -3.287476) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9ace4990-a13c-4113-b7ad-6921e151220d") - ) - (fp_line - (start -3.901166 4.48192) - (end -3.669064 4.296209) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8be22a5b-b313-418c-9bf4-9d3c2d4f05d6") - ) - (fp_line - (start -3.669064 4.296209) - (end -3.234589 3.931263) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "db2ca2e7-34d1-4fc6-a7b7-7ad3413363ee") - ) - (fp_line - (start -3.58298 -3.044541) - (end -3.906517 -3.16656) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0dc55766-0225-450c-99e8-5143ca91e893") - ) - (fp_line - (start -3.234589 3.931263) - (end -2.835848 3.580654) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d4ded607-05ce-4477-8f4f-30312298f640") - ) - (fp_line - (start -2.991447 -2.798405) - (end -3.58298 -3.044541) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "22fc1fd4-0c95-495a-9017-1e644aac802f") - ) - (fp_line - (start -2.835848 3.580654) - (end -2.468731 3.249825) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "a24d9729-e893-43af-93c3-49a30c7ff8e0") - ) - (fp_line - (start -2.469414 -2.551497) - (end -2.991447 -2.798405) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "bb75af66-7714-4774-b812-5b62f93ebb1d") - ) - (fp_line - (start -2.468731 3.249825) - (end -2.131402 2.938647) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "f6f77970-6473-43f0-b811-38b615600218") - ) - (fp_line - (start -2.131402 2.938647) - (end -1.822588 2.645589) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2be1c155-2ee1-44b5-9e0f-ee7368fc405c") - ) - (fp_line - (start -2.011421 -2.306241) - (end -2.469414 -2.551497) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d84ac002-5d9d-4c65-99fc-b003c1dcd6c6") - ) - (fp_line - (start -1.822588 2.645589) - (end -1.541018 2.36912) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6d91b45e-5b0d-4d78-8e92-4583c0ad6b2d") - ) - (fp_line - (start -1.612009 -2.065066) - (end -2.011421 -2.306241) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "188fb4d8-4663-4515-b7d7-f35e48894bc6") - ) - (fp_line - (start -1.541018 2.36912) - (end -1.285421 2.10771) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "07eb2ed0-1096-4d22-9067-38d8960211a5") - ) - (fp_line - (start -1.285421 2.10771) - (end -1.054526 1.859829) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8f3e6632-43ad-4dbf-ad37-28560c93cb29") - ) - (fp_line - (start -1.265714 -1.830397) - (end -1.612009 -2.065066) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6fc4c9a5-b5a2-4a4a-89c6-426466dcdfcb") - ) - (fp_line - (start -1.110841 -1.716192) - (end -1.265714 -1.830397) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7801419d-dbe5-4ed4-b3af-0afc4f085863") - ) - (fp_line - (start -1.054526 1.859829) - (end -0.84706 1.623948) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "36e50dad-8ebf-4f13-a6f4-0ef4743f5a1d") - ) - (fp_line - (start -0.967575 -1.604102) - (end -1.110841 -1.716192) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "279bd8ca-eaa4-4662-b3d8-5dd33341fe57") - ) - (fp_line - (start -0.84706 1.623948) - (end -0.751716 1.510029) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c5ccdfc3-42b2-44c1-9278-52eb10ff5b1f") - ) - (fp_line - (start -0.835605 -1.494006) - (end -0.967575 -1.604102) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e71038f4-fa51-4d35-bc84-ff0e7b8806e6") - ) - (fp_line - (start -0.751716 1.510029) - (end -0.661752 1.398535) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "77c8f002-94ff-4b48-8e1b-02e2b1c2817c") - ) - (fp_line - (start -0.714617 -1.385786) - (end -0.835605 -1.494006) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6ee6ff68-1b8c-4e40-9897-b61da019c055") - ) - (fp_line - (start -0.661752 1.398535) - (end -0.577055 1.289283) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2722834f-dfa8-4042-bf06-377206fd18e4") - ) - (fp_line - (start -0.604301 -1.279318) - (end -0.714617 -1.385786) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "3621f3aa-2646-435d-b2a4-a7aa94698393") - ) - (fp_line - (start -0.577055 1.289283) - (end -0.497688 1.182106) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5c0938c7-263a-4ef1-82bf-8746db55e271") - ) - (fp_line - (start -0.504347 -1.174485) - (end -0.604301 -1.279318) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1a1ba6fd-ebbe-4096-a83b-7f029bbed2dc") - ) - (fp_line - (start -0.497688 1.182106) - (end -0.423758 1.076847) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "db5c3dcb-f705-4b2e-8dd2-4d232573ad8d") - ) - (fp_line - (start -0.423758 1.076847) - (end -0.355372 0.973344) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "814481a8-7c5f-40b9-abd0-94866c93f249") - ) - (fp_line - (start -0.414441 -1.071164) - (end -0.504347 -1.174485) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "8244ba27-f947-45d2-9a52-9788161f78ca") - ) - (fp_line - (start -0.355372 0.973344) - (end -0.292638 0.871442) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6d22a9fd-1cb7-4c18-9889-1c100ce135b8") - ) - (fp_line - (start -0.334273 -0.969236) - (end -0.414441 -1.071164) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "7a3c1b86-3d8e-4138-b7b3-a7d1f886e7ff") - ) - (fp_line - (start -0.292638 0.871442) - (end -0.235662 0.770977) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "eec2f13d-b3f4-49ad-ba53-1279717779e6") - ) - (fp_line - (start -0.263533 -0.868579) - (end -0.334273 -0.969236) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "2c57d7e6-9239-40f1-be68-50b7f06a1416") - ) - (fp_line - (start -0.235662 0.770977) - (end -0.184551 0.671795) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "03bbf57e-03d8-4811-a118-6ca803b99d06") - ) - (fp_line - (start -0.201909 -0.769075) - (end -0.263533 -0.868579) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "6322b25e-f134-4ce9-8f03-ce0e683157f0") - ) - (fp_line - (start -0.184551 0.671795) - (end -0.139413 0.573733) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "54e65b7f-1573-4b43-a12a-0b5159288dc0") - ) - (fp_line - (start -0.149089 -0.670602) - (end -0.201909 -0.769075) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "20b78e35-6e9c-4da7-8dcf-8499b511e4f9") - ) - (fp_line - (start -0.139413 0.573733) - (end -0.100353 0.476634) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "02ef16ab-42e7-4dc8-817b-7b755ec7decd") - ) - (fp_line - (start -0.104763 -0.57304) - (end -0.149089 -0.670602) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "24e3d0a4-f3fb-4813-9520-dd8c0eb69dff") - ) - (fp_line - (start -0.100353 0.476634) - (end -0.067482 0.380337) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "1bcf3ea6-eadc-46de-83b4-9aec4ce24b58") - ) - (fp_line - (start -0.068619 -0.476267) - (end -0.104763 -0.57304) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "e37f0f3c-c6ed-4f80-b846-4497e2fd8f11") - ) - (fp_line - (start -0.067482 0.380337) - (end -0.040902 0.284685) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "114b5161-043f-497d-9ea2-ecf98476b78d") - ) - (fp_line - (start -0.040902 0.284685) - (end -0.020725 0.189516) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "34190f9b-2d50-40cc-83ec-ef3cbe6e1423") - ) - (fp_line - (start -0.040345 -0.380166) - (end -0.068619 -0.476267) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "9622fc91-01dc-472d-975e-4f92b4daf903") - ) - (fp_line - (start -0.020725 0.189516) - (end -0.007055 0.094674) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "5568dcca-7cd1-4732-bce5-7217610e8159") - ) - (fp_line - (start -0.019629 -0.284613) - (end -0.040345 -0.380166) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "c516968f-7b70-4e26-b511-53dc2ccdd5a6") - ) - (fp_line - (start -0.007055 0.094674) - (end 0 0) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "0c1aeb9b-8336-4959-884f-0b8b20ebbe42") - ) - (fp_line - (start -0.006163 -0.18949) - (end -0.019629 -0.284613) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "78e0e622-d477-4a8a-8a36-eb19d48931e8") - ) - (fp_line - (start 0 0) - (end 0.000333 -0.09467) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "590047b4-0252-46f8-828d-e1cbb912b4a8") - ) - (fp_line - (start 0.000333 -0.09467) - (end -0.006163 -0.18949) - (stroke - (width 0.12) - (type default) - ) - (layer "F.SilkS") - (uuid "d22243d6-0147-46ad-9e7e-6a6d27412efe") - ) - (fp_circle - (center -8.186388 2.155) - (end -8.296388 2.21) - (stroke - (width 0.1) - (type default) - ) - (fill no) - (layer "F.SilkS") - (uuid "d182c82b-8cb3-4876-a37c-62f15b164e13") - ) - (fp_poly - (pts - (xy -27.636659 3.781217) (xy -27.930187 3.797349) (xy -28.204311 3.820619) (xy -28.461003 3.850078) - (xy -28.702233 3.884782) (xy -28.929976 3.923786) (xy -29.146202 3.966145) (xy -29.551994 4.057147) - (xy -30.31216 4.237818) (xy -30.502205 4.277444) (xy -30.691781 4.314356) (xy -31.058493 4.382204) - (xy -31.390231 4.445707) (xy -31.536089 4.477185) (xy -31.66493 4.509206) (xy -31.773994 4.542312) - (xy -31.820247 4.559441) (xy -31.860523 4.577045) (xy -31.894475 4.595191) (xy -31.921759 4.613948) - (xy -31.942031 4.633384) (xy -31.954945 4.653566) (xy -31.960157 4.674563) (xy -31.957322 4.696441) - (xy -31.946096 4.719268) (xy -31.926132 4.743114) (xy -31.897087 4.768045) (xy -31.858617 4.79413) - (xy -31.810374 4.821435) (xy -31.752017 4.850029) (xy -31.416454 4.977516) (xy -30.926958 5.124263) - (xy -30.296956 5.287845) (xy -29.539879 5.465837) (xy -28.669155 5.655815) (xy -27.698215 5.855351) - (xy -25.509401 6.273405) (xy -25.25474 6.319452) (xy -25.251501 6.310773) (xy -25.248378 6.302156) - (xy -25.24517 6.29352) (xy -25.24347 6.289167) (xy -25.241671 6.284779) (xy -25.231402 6.261142) - (xy -25.2205 6.237303) (xy -25.214809 6.225327) (xy -25.208958 6.213326) (xy -25.202946 6.201306) - (xy -25.19677 6.189276) (xy -25.190424 6.177234) (xy -25.183912 6.165166) (xy -25.170411 6.140939) - (xy -25.156304 6.116581) (xy -25.141626 6.09208) (xy -25.134064 6.079789) (xy -25.126329 6.067494) - (xy -25.110381 6.042859) (xy -25.093855 6.018107) (xy -25.076825 5.993168) (xy -25.059308 5.968048) - (xy -25.041251 5.942798) (xy -25.02265 5.917437) (xy -25.003499 5.89199) (xy -24.983809 5.866434) - (xy -24.963601 5.840742) (xy -24.942879 5.814954) (xy -24.921649 5.789107) (xy -24.89992 5.763216) - (xy -24.877703 5.737262) (xy -24.855005 5.711223) (xy -24.831834 5.685079) (xy -24.808202 5.658783) - (xy -24.784126 5.632357) (xy -24.759603 5.605858) (xy -24.734627 5.579347) (xy -24.683355 5.526247) - (xy -24.630407 5.472941) (xy -24.575851 5.419405) (xy -24.519757 5.36561) (xy -24.462242 5.311567) - (xy -24.403378 5.257329) (xy -24.34316 5.202946) (xy -24.28158 5.148467) (xy -24.218699 5.093917) - (xy -24.154649 5.039267) (xy -24.089548 4.984505) (xy -24.023507 4.929619) (xy -23.956565 4.874651) - (xy -23.888777 4.819612) (xy -23.751224 4.709061) (xy -23.187331 4.259425) (xy -23.161192 4.238194) - (xy -23.135252 4.216839) (xy -23.109343 4.195459) (xy -23.083304 4.174153) (xy -23.083297 4.174151) - (xy -23.955184 4.055577) (xy -24.776221 3.951021) (xy -25.537232 3.866227) (xy -25.892363 3.833038) - (xy -26.229049 3.806942) (xy -26.61992 3.785081) (xy -26.983496 3.774137) (xy -27.321752 3.773163) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "63d52148-22d2-422e-8221-a778984f51e7") - ) - (fp_poly - (pts - (xy -8.10601 1.757261) (xy -8.180109 1.763809) (xy -8.251629 1.774459) (xy -8.320194 1.788991) (xy -8.38543 1.80719) - (xy -8.446961 1.828838) (xy -8.504412 1.853716) (xy -8.557409 1.88161) (xy -8.605575 1.9123) (xy -8.648536 1.94557) - (xy -8.685918 1.981203) (xy -8.702398 1.999837) (xy -8.717344 2.01898) (xy -8.730705 2.038606) (xy -8.742439 2.058687) - (xy -8.752495 2.079194) (xy -8.760828 2.100103) (xy -8.767391 2.121386) (xy -8.772137 2.143014) (xy -8.775019 2.164961) - (xy -8.77599 2.187201) (xy -8.775019 2.209441) (xy -8.772137 2.231388) (xy -8.767391 2.253016) (xy -8.760828 2.274299) - (xy -8.752495 2.295208) (xy -8.742439 2.315715) (xy -8.730705 2.335796) (xy -8.717344 2.355422) (xy -8.702398 2.374565) - (xy -8.685918 2.393199) (xy -8.667948 2.411297) (xy -8.648536 2.428833) (xy -8.62773 2.445776) (xy -8.605575 2.462102) - (xy -8.58212 2.477784) (xy -8.557409 2.492792) (xy -8.531491 2.507102) (xy -8.504412 2.520686) (xy -8.47622 2.533515) - (xy -8.446961 2.545565) (xy -8.416682 2.556805) (xy -8.38543 2.567211) (xy -8.353251 2.576756) (xy -8.320194 2.58541) - (xy -8.286304 2.593148) (xy -8.251629 2.599943) (xy -8.216214 2.605766) (xy -8.180109 2.610592) (xy -8.143358 2.614393) - (xy -8.10601 2.617142) (xy -8.06811 2.61881) (xy -8.029707 2.619372) (xy -7.953404 2.617142) (xy -7.879304 2.610592) - (xy -7.807786 2.599943) (xy -7.739219 2.58541) (xy -7.673984 2.567211) (xy -7.612453 2.545565) (xy -7.555001 2.520686) - (xy -7.502005 2.492792) (xy -7.453839 2.462102) (xy -7.410878 2.428833) (xy -7.373497 2.393199) (xy -7.357015 2.374565) - (xy -7.342071 2.355422) (xy -7.328708 2.335796) (xy -7.316975 2.315715) (xy -7.306919 2.295208) (xy -7.298586 2.274299) - (xy -7.292023 2.253016) (xy -7.287278 2.231388) (xy -7.284396 2.209441) (xy -7.283424 2.187201) (xy -7.284396 2.164961) - (xy -7.287278 2.143014) (xy -7.292023 2.121386) (xy -7.298586 2.100103) (xy -7.306919 2.079194) (xy -7.316975 2.058687) - (xy -7.328708 2.038606) (xy -7.342071 2.01898) (xy -7.357015 1.999837) (xy -7.373497 1.981203) (xy -7.391466 1.963105) - (xy -7.410878 1.94557) (xy -7.431685 1.928626) (xy -7.453839 1.9123) (xy -7.477295 1.896618) (xy -7.502005 1.88161) - (xy -7.527924 1.8673) (xy -7.555001 1.853716) (xy -7.583194 1.840887) (xy -7.612453 1.828838) (xy -7.642732 1.817597) - (xy -7.673984 1.80719) (xy -7.706162 1.797646) (xy -7.739219 1.788991) (xy -7.773109 1.781254) (xy -7.807786 1.774459) - (xy -7.843199 1.768636) (xy -7.879304 1.763809) (xy -7.916055 1.760008) (xy -7.953404 1.757261) (xy -7.991303 1.755592) - (xy -8.029707 1.755029) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill no) - (layer "F.SilkS") - (uuid "e36da28a-1120-409d-9925-eeaa18cc4b65") - ) - (fp_poly - (pts - (xy -1.971388 2.54) (xy -2.0021 2.542246) (xy -2.036893 2.546718) (xy -2.075851 2.55345) (xy -2.119053 2.562474) - (xy -2.166582 2.57382) (xy -2.218517 2.587523) (xy -2.274942 2.603614) (xy -2.650987 2.727994) (xy -3.146378 2.907647) - (xy -4.455247 3.378765) (xy -5.248748 3.643228) (xy -6.12164 3.90896) (xy -7.063936 4.162459) (xy -7.557989 4.280402) - (xy -8.065648 4.390224) (xy -9.112729 4.580286) (xy -10.203517 4.73172) (xy -11.332731 4.844758) - (xy -12.495093 4.919632) (xy -13.685325 4.956575) (xy -14.898148 4.955819) (xy -16.128283 4.917595) - (xy -17.370451 4.842135) (xy -17.551317 4.950055) (xy -17.643553 5.004056) (xy -17.737664 5.058143) - (xy -17.853091 5.123193) (xy -17.970725 5.188315) (xy -18.09061 5.253363) (xy -18.212882 5.318487) - (xy -18.33751 5.38382) (xy -18.4647 5.44923) (xy -18.59464 5.514557) (xy -18.727319 5.57997) (xy -18.862718 5.645631) - (xy -19.00074 5.71128) (xy -19.141172 5.776749) (xy -19.283824 5.842023) (xy -19.428441 5.907019) - (xy -19.574865 5.971626) (xy -19.723096 6.035866) (xy -19.872729 6.099525) (xy -20.023435 6.162437) - (xy -20.175137 6.224583) (xy -20.327469 6.285882) (xy -20.480392 6.346227) (xy -20.633779 6.405348) - (xy -20.78735 6.463328) (xy -20.941225 6.52027) (xy -21.094877 6.57588) (xy -21.247817 6.629791) - (xy -21.400129 6.682177) (xy -21.551568 6.733337) (xy -21.626895 6.758321) (xy -21.70197 6.782791) - (xy -21.765884 6.803144) (xy -21.829531 6.822992) (xy -21.956063 6.861804) (xy -20.3253 7.089436) - (xy -19.505136 7.189791) (xy -18.686084 7.27909) (xy -17.871369 7.355771) (xy -17.064216 7.418271) - (xy -16.267854 7.465027) (xy -15.485504 7.494479) (xy -14.876564 7.504676) (xy -14.278894 7.503228) - (xy -13.692886 7.490353) (xy -13.118927 7.466268) (xy -12.55741 7.431191) (xy -12.008725 7.38534) - (xy -11.473264 7.328931) (xy -10.951415 7.262182) (xy -10.443571 7.185311) (xy -9.950122 7.098534) - (xy -9.47146 7.002069) (xy -9.007972 6.896135) (xy -8.560052 6.780946) (xy -8.12809 6.656723) (xy -7.712476 6.523682) - (xy -7.3136 6.38204) (xy -7.11468 6.305759) (xy -6.920309 6.22739) (xy -6.7304 6.147068) (xy -6.544868 6.06493) - (xy -6.363623 5.981111) (xy -6.18658 5.89575) (xy -6.013651 5.808982) (xy -5.84475 5.720944) (xy -5.848904 5.722312) - (xy -5.853024 5.723611) (xy -5.861168 5.72605) (xy -5.87715 5.730608) (xy -5.884979 5.732796) (xy -5.892675 5.734843) - (xy -5.900282 5.736761) (xy -5.907847 5.738565) (xy -5.915438 5.740288) (xy -5.923044 5.74193) (xy -5.930584 5.743454) - (xy -5.937974 5.744818) (xy -5.945182 5.746) (xy -5.952277 5.747029) (xy -5.959325 5.747947) (xy -5.966395 5.748799) - (xy -5.97352 5.74963) (xy -5.980656 5.750422) (xy -5.987768 5.751113) (xy -5.991303 5.7514) (xy -5.994817 5.751639) - (xy -6.0018 5.752045) (xy -6.008752 5.752393) (xy -6.015701 5.752649) (xy -6.022671 5.752776) (xy -6.029632 5.75277) - (xy -6.036563 5.752661) (xy -6.043512 5.752466) (xy -6.050525 5.752208) (xy -6.057675 5.751891) (xy -6.064943 5.751506) - (xy -6.072251 5.751045) (xy -6.079516 5.750501) (xy -6.086707 5.749888) (xy -6.093891 5.749213) (xy -6.101136 5.748473) - (xy -6.108506 5.747661) (xy -6.116037 5.746763) (xy -6.123692 5.745786) (xy -6.139202 5.743681) (xy -6.147017 5.742512) - (xy -6.154913 5.741221) (xy -6.162914 5.73988) (xy -6.171035 5.738565) (xy -6.204639 5.733165) (xy -6.240385 5.727197) - (xy -6.278767 5.720803) (xy -6.319966 5.714123) (xy -6.341695 5.710731) (xy -6.364203 5.70735) (xy -6.411485 5.700479) - (xy -6.461799 5.693376) (xy -6.514941 5.686269) (xy -6.570481 5.679118) (xy -6.599197 5.675544) (xy -6.62863 5.672058) - (xy -6.689678 5.665429) (xy -6.753118 5.658984) (xy -6.818539 5.652592) (xy -6.886133 5.646479) (xy -6.920841 5.643592) - (xy -6.956051 5.640793) (xy -6.991625 5.638185) (xy -7.027674 5.635678) (xy -7.064115 5.633064) (xy -7.101004 5.630561) - (xy -7.138595 5.628227) (xy -7.176607 5.626014) (xy -7.214779 5.623957) (xy -7.253346 5.622035) (xy -7.292385 5.620257) - (xy -7.33179 5.618625) (xy -7.37143 5.617133) (xy -7.411372 5.615782) (xy -7.451914 5.614588) (xy -7.492659 5.613507) - (xy -7.574118 5.611647) (xy -7.655801 5.610099) (xy -7.976402 5.604413) (xy -8.053359 5.60285) (xy -8.128175 5.601003) - (xy -8.164613 5.599918) (xy -8.200367 5.598729) (xy -8.235434 5.597659) (xy -8.252685 5.597113) (xy -8.269717 5.596454) - (xy -8.303127 5.594827) (xy -8.335656 5.593045) (xy -8.367126 5.591146) (xy -8.397617 5.589064) (xy -8.427145 5.586895) - (xy -8.441499 5.58575) (xy -8.455596 5.584518) (xy -8.469496 5.58319) (xy -8.483187 5.581792) (xy -8.496582 5.580335) - (xy -8.5096 5.578832) (xy -8.522182 5.577242) (xy -8.534381 5.575541) (xy -8.557916 5.572012) (xy -8.569329 5.570241) - (xy -8.580444 5.568428) (xy -8.591239 5.566561) (xy -8.601686 5.564622) (xy -8.611824 5.562587) (xy -8.621677 5.560463) - (xy -8.631197 5.558287) (xy -8.64034 5.556095) (xy -8.644745 5.554985) (xy -8.649037 5.553848) (xy -8.657394 5.551549) - (xy -8.665524 5.549299) (xy -8.669467 5.548167) (xy -8.67331 5.547) (xy -8.68059 5.544749) (xy -8.684076 5.543635) - (xy -8.685801 5.543057) (xy -8.687522 5.542454) (xy -8.690919 5.541199) (xy -8.694235 5.539917) (xy -8.697462 5.538625) - (xy -8.700595 5.537337) (xy -8.706743 5.534799) (xy -8.708242 5.534164) (xy -8.709713 5.533524) (xy -8.711145 5.532877) - (xy -8.712532 5.532222) (xy -8.713205 5.531887) (xy -8.713862 5.531545) (xy -8.715133 5.530845) (xy -8.716357 5.530127) - (xy -8.717546 5.529399) (xy -8.719869 5.527944) (xy -8.721026 5.527231) (xy -8.722196 5.526538) (xy -8.723382 5.525873) - (xy -8.724572 5.525235) (xy -8.726928 5.523999) (xy -8.728076 5.523382) (xy -8.729193 5.522753) (xy -8.730268 5.522103) - (xy -8.730786 5.521766) (xy -8.731292 5.521421) (xy -8.731782 5.52107) (xy -8.732259 5.520718) (xy -8.733174 5.520013) - (xy -8.734047 5.519307) (xy -8.734889 5.518597) (xy -8.735706 5.517886) (xy -8.73651 5.517171) (xy -8.738112 5.515737) - (xy -8.738932 5.514998) (xy -8.739767 5.514226) (xy -8.740603 5.513433) (xy -8.741428 5.512628) (xy -8.74223 5.51182) - (xy -8.742995 5.51102) (xy -8.743711 5.510238) (xy -8.744365 5.509485) (xy -8.744964 5.508758) (xy -8.745523 5.508049) - (xy -8.746049 5.507352) (xy -8.746546 5.506658) (xy -8.747019 5.505963) (xy -8.747474 5.505259) (xy -8.747914 5.504539) - (xy -8.748345 5.503799) (xy -8.748768 5.503037) (xy -8.749182 5.502262) (xy -8.749581 5.501478) (xy -8.74996 5.500688) - (xy -8.750315 5.499896) (xy -8.750641 5.499106) (xy -8.750933 5.498322) (xy -8.751064 5.497933) (xy -8.751186 5.497547) - (xy -8.751294 5.497162) (xy -8.751385 5.496774) (xy -8.751461 5.496387) (xy -8.751524 5.495998) (xy -8.751575 5.495608) - (xy -8.751614 5.495218) (xy -8.751668 5.494436) (xy -8.751755 5.491294) (xy -8.751954 5.488181) (xy -8.751972 5.487403) - (xy -8.751967 5.487013) (xy -8.751953 5.486621) (xy -8.751925 5.486229) (xy -8.751884 5.485834) (xy -8.751828 5.485438) - (xy -8.751755 5.48504) (xy -8.751668 5.484642) (xy -8.751572 5.484249) (xy -8.751467 5.483858) (xy -8.751352 5.48347) - (xy -8.751102 5.482698) (xy -8.75082 5.481928) (xy -8.750514 5.481157) (xy -8.750186 5.480379) (xy -8.74948 5.478787) - (xy -8.749092 5.477963) (xy -8.748662 5.477117) (xy -8.748194 5.476257) (xy -8.747696 5.475389) (xy -8.747172 5.47452) - (xy -8.746628 5.473656) (xy -8.746069 5.472802) (xy -8.745501 5.471967) (xy -8.744352 5.470286) (xy -8.743761 5.469429) - (xy -8.743151 5.468567) (xy -8.742514 5.467704) (xy -8.741846 5.466842) (xy -8.741497 5.466414) (xy -8.741139 5.465989) - (xy -8.740768 5.465565) (xy -8.740386 5.465146) (xy -8.73999 5.464732) (xy -8.739581 5.464329) (xy -8.73916 5.463934) - (xy -8.738728 5.463546) (xy -8.737831 5.462782) (xy -8.736902 5.462029) (xy -8.73497 5.460508) (xy -8.733984 5.459719) - (xy -8.732996 5.458894) (xy -8.731003 5.457196) (xy -8.729985 5.456345) (xy -8.728944 5.455491) (xy -8.727878 5.454638) - (xy -8.726781 5.453782) (xy -8.725645 5.452926) (xy -8.724469 5.45207) (xy -8.722052 5.450366) (xy -8.719569 5.448669) - (xy -8.71829 5.44782) (xy -8.716977 5.446969) (xy -8.715629 5.446112) (xy -8.714238 5.445249) (xy -8.708202 5.441563) - (xy -8.706607 5.440613) (xy -8.704991 5.439672) (xy -8.703364 5.438752) (xy -8.701732 5.437861) (xy -8.69846 5.436142) - (xy -8.69513 5.434457) (xy -8.691692 5.432768) (xy -8.688089 5.431039) (xy -8.686216 5.430169) (xy -8.684299 5.429316) - (xy -8.680354 5.427634) (xy -8.672173 5.424218) (xy -8.663587 5.420528) (xy -8.659112 5.418652) (xy -8.65684 5.417731) - (xy -8.654552 5.416826) (xy -8.645115 5.413138) (xy -8.640223 5.411266) (xy -8.635224 5.409438) (xy -8.632689 5.408558) - (xy -8.63013 5.407702) (xy -8.624937 5.406031) (xy -8.614192 5.402617) (xy -8.603056 5.398924) (xy -8.597334 5.397059) - (xy -8.591454 5.395227) (xy -8.579235 5.391656) (xy -8.566503 5.388126) (xy -8.539727 5.381017) (xy -8.511322 5.373623) - (xy -8.496468 5.369898) (xy -8.481177 5.366236) (xy -8.465457 5.362658) (xy -8.449321 5.359119) (xy -8.415807 5.352025) - (xy -8.380781 5.3449) (xy -8.344182 5.337816) (xy -8.305989 5.330681) (xy -8.286341 5.327122) (xy -8.266306 5.323602) - (xy -8.245837 5.32015) (xy -8.224945 5.316746) (xy -8.182177 5.309961) (xy -8.138216 5.303094) (xy -8.092932 5.296319) - (xy -8.046371 5.289729) (xy -7.998572 5.283245) (xy -7.949694 5.276931) (xy -7.899662 5.27074) (xy -7.848469 5.264417) - (xy -7.796206 5.258233) (xy -7.742697 5.252471) (xy -7.688202 5.246863) (xy -7.632947 5.241379) (xy -7.576789 5.236064) - (xy -7.519786 5.230855) (xy -7.461963 5.225832) (xy -7.403213 5.221183) (xy -7.343727 5.216736) (xy -7.283798 5.212078) - (xy -7.253615 5.209781) (xy -7.223218 5.207642) (xy -7.161827 5.203829) (xy -7.099866 5.200252) (xy -7.037557 5.196722) - (xy -6.974809 5.193432) (xy -6.911558 5.190472) (xy -6.848048 5.187746) (xy -6.784423 5.185361) (xy -6.720717 5.1832) - (xy -6.657003 5.181101) (xy -6.593386 5.179219) (xy -6.529867 5.177411) (xy -6.466624 5.17581) (xy -6.403869 5.174574) - (xy -6.341567 5.173535) (xy -6.279859 5.172873) (xy -6.218784 5.172398) (xy -6.158124 5.171741) (xy -6.098274 5.171261) - (xy -6.039515 5.171175) (xy -5.981744 5.171261) (xy -5.92517 5.171466) (xy -5.86976 5.17183) (xy -5.815656 5.172323) - (xy -5.762894 5.172966) (xy -5.711258 5.173748) (xy -5.661143 5.174672) (xy -5.612829 5.175742) (xy -5.566213 5.176947) - (xy -5.521505 5.178305) (xy -5.478673 5.179787) (xy -5.43757 5.181435) (xy -5.398524 5.1832) (xy -5.361595 5.184851) - (xy -5.343941 5.185683) (xy -5.326901 5.186608) (xy -5.310525 5.187671) (xy -5.294784 5.188827) (xy -5.26494 5.191157) - (xy -5.237137 5.193366) (xy -5.224049 5.194505) (xy -5.211506 5.195703) (xy -5.1995 5.196939) (xy -5.188017 5.198187) - (xy -5.177052 5.199473) (xy -5.1666 5.20082) (xy -5.161558 5.201534) (xy -5.156633 5.202286) (xy -5.14714 5.203863) - (xy -5.138139 5.205482) (xy -5.129651 5.207073) (xy -5.125621 5.207799) (xy -5.12174 5.208471) (xy -5.117976 5.209154) - (xy -5.116131 5.209521) (xy -5.114302 5.209916) (xy -5.110721 5.210749) (xy -5.107251 5.211598) (xy -5.103898 5.212458) - (xy -5.10066 5.213325) (xy -5.099081 5.21378) (xy -5.09752 5.214265) (xy -5.095981 5.214772) (xy -5.094467 5.215291) - (xy -5.088723 5.217305) (xy -5.087365 5.217751) (xy -5.086019 5.218173) (xy -5.083389 5.218984) (xy -5.082112 5.21939) - (xy -5.080868 5.219808) (xy -5.079659 5.220246) (xy -5.078491 5.220715) (xy -5.077374 5.221202) (xy -5.076308 5.221692) - (xy -5.075288 5.222184) (xy -5.0743 5.222679) (xy -5.07334 5.223176) (xy -5.072398 5.223677) (xy -5.070533 5.224695) - (xy -5.069605 5.225224) (xy -5.06869 5.225781) (xy -5.067792 5.226355) (xy -5.066917 5.226941) (xy -5.066066 5.22753) - (xy -5.065247 5.228115) (xy -5.063712 5.229241) (xy -5.062993 5.229765) (xy -5.062292 5.230259) (xy -5.061611 5.230734) - (xy -5.060955 5.231202) (xy -5.060322 5.231674) (xy -5.060016 5.231914) (xy -5.059717 5.232161) (xy -5.059426 5.232412) - (xy -5.059141 5.232672) (xy -5.058865 5.232942) (xy -5.058596 5.233222) (xy -5.058336 5.233512) (xy -5.058081 5.233813) - (xy -5.057835 5.234122) (xy -5.057594 5.234438) (xy -5.057361 5.23476) (xy -5.057133 5.235087) (xy -5.056698 5.235749) - (xy -5.056286 5.236414) (xy -5.055897 5.237074) (xy -5.055185 5.238337) (xy -5.054872 5.238924) (xy -5.05473 5.239208) - (xy -5.054598 5.239488) (xy -5.054473 5.239763) (xy -5.054357 5.240035) (xy -5.054248 5.240307) (xy -5.054146 5.240579) - (xy -5.053958 5.241126) (xy -5.053787 5.241687) (xy -5.05363 5.24227) (xy -5.05348 5.242886) (xy -5.053338 5.243542) - (xy -5.053212 5.244236) (xy -5.053104 5.244957) (xy -5.053015 5.245694) (xy -5.052949 5.246434) (xy -5.052908 5.247167) - (xy -5.052895 5.247883) (xy -5.052899 5.24823) (xy -5.052911 5.248569) (xy -5.052932 5.248899) (xy -5.052963 5.249224) - (xy -5.053002 5.249542) (xy -5.053048 5.249856) (xy -5.053103 5.250168) (xy -5.053163 5.250477) (xy -5.053305 5.251093) - (xy -5.053469 5.251713) (xy -5.053651 5.252347) (xy -5.054049 5.253686) (xy -5.054263 5.254387) (xy -5.054495 5.255088) - (xy -5.054746 5.255789) (xy -5.055017 5.256493) (xy -5.055308 5.257201) (xy -5.055622 5.257916) (xy -5.05596 5.258638) - (xy -5.056323 5.25937) (xy -5.057866 5.26246) (xy -5.058287 5.263256) (xy -5.058736 5.264052) (xy -5.059216 5.264842) - (xy -5.05947 5.265234) (xy -5.059733 5.265623) (xy -5.05987 5.265824) (xy -5.060009 5.266035) (xy -5.060291 5.266473) - (xy -5.06058 5.266912) (xy -5.060725 5.267124) (xy -5.06087 5.267328) (xy -4.896656 5.162645) (xy -4.737021 5.057582) - (xy -4.581875 4.952335) (xy -4.431129 4.847102) (xy -4.142473 4.637464) (xy -3.870338 4.43024) (xy -3.614004 4.227001) - (xy -3.372753 4.029323) (xy -2.932627 3.656935) (xy -2.657355 3.420099) (xy -2.530998 3.310005) (xy -2.413184 3.205888) - (xy -2.304679 3.108073) (xy -2.206249 3.016878) (xy -2.11866 2.932627) (xy -2.042679 2.855642) (xy -2.009281 2.819975) - (xy -1.979073 2.786246) (xy -1.952149 2.754493) (xy -1.928606 2.724758) (xy -1.908541 2.69708) (xy -1.892047 2.6715) - (xy -1.879221 2.648059) (xy -1.87016 2.626797) (xy -1.86496 2.607753) (xy -1.863714 2.590968) (xy -1.864605 2.583435) - (xy -1.866521 2.576482) (xy -1.869473 2.570114) (xy -1.873475 2.564336) (xy -1.878536 2.559153) (xy -1.884671 2.554569) - (xy -1.891891 2.55059) (xy -1.900207 2.547222) (xy -1.920177 2.542336) (xy -1.944678 2.539949) (xy -1.957538 2.539703) - ) - (stroke - (width 0.12) - (type solid) - ) - (fill yes) - (layer "F.SilkS") - (uuid "ae1bad8b-7c47-48a8-8af5-1e6d79f71488") - ) - (fp_text user "${REFERENCE}" - (at -12 -0.25 0) - (unlocked yes) - (layer "F.Fab") - (hide yes) - (uuid "6cf5e634-0bb3-4775-90e4-6ef6696d8f55") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - (dimension - (type aligned) - (layer "User.2") - (uuid "5a6ff977-53c6-4f36-9f80-a0b8f1c6699c") - (pts - (xy 0 0) (xy -56 0) - ) - (height 15.25) - (format - (prefix "") - (suffix "") - (units 3) - (units_format 1) - (precision 4) - ) - (style - (thickness 0.1) - (arrow_length 1.27) - (text_position_mode 0) - (arrow_direction outward) - (extension_height 0.58642) - (extension_offset 0.5) - (keep_text_aligned yes) - ) - (gr_text "56.0000 mm" - (at -28 -16.4 0) - (layer "User.2") - (uuid "5a6ff977-53c6-4f36-9f80-a0b8f1c6699c") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - ) - (dimension - (type leader) - (layer "User.2") - (uuid "0ef799ac-5237-47c6-af33-b39d7edf1fea") - (pts - (xy -25.369121 -10.545923) (xy -19.5 -12.5) - ) - (format - (prefix "") - (suffix "") - (units 0) - (units_format 0) - (precision 4) - (override_value "Antenna") - ) - (style - (thickness 0.1) - (arrow_length 1.27) - (text_position_mode 0) - (text_frame 0) - (extension_offset 0.5) - ) - (gr_text "Antenna" - (at -14.5 -12.5 0) - (layer "User.2") - (uuid "0ef799ac-5237-47c6-af33-b39d7edf1fea") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - ) - (dimension - (type leader) - (layer "User.2") - (uuid "430bd48d-5f4f-404d-ab84-873bf8d3af80") - (pts - (xy -51.5 -6) (xy -47.25 -8.25) - ) - (format - (prefix "") - (suffix "") - (units 0) - (units_format 0) - (precision 4) - (override_value "Flosse") - ) - (style - (thickness 0.1) - (arrow_length 1.27) - (text_position_mode 0) - (text_frame 0) - (extension_offset 0.5) - ) - (gr_text "Flosse" - (at -42.25 -8.25 0) - (layer "User.2") - (uuid "430bd48d-5f4f-404d-ab84-873bf8d3af80") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - ) - (dimension - (type leader) - (layer "User.2") - (uuid "4d861637-9ea5-4bf9-99cf-016362f0a69b") - (pts - (xy -6.25 5.5) (xy 1 7.25) - ) - (format - (prefix "") - (suffix "") - (units 0) - (units_format 0) - (precision 4) - (override_value "Teethies") - ) - (style - (thickness 0.1) - (arrow_length 1.27) - (text_position_mode 0) - (text_frame 0) - (extension_offset 0.5) - ) - (gr_text "Teethies" - (at 6 7.25 0) - (layer "User.2") - (uuid "4d861637-9ea5-4bf9-99cf-016362f0a69b") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - ) - (dimension - (type leader) - (layer "User.2") - (uuid "9800137c-8da3-4742-b1a6-12d8bcd3dc03") - (pts - (xy 0 0) (xy 2.25 -4) - ) - (format - (prefix "") - (suffix "") - (units 0) - (units_format 0) - (precision 4) - (override_value "Boopsnoot") - ) - (style - (thickness 0.1) - (arrow_length 1.27) - (text_position_mode 0) - (text_frame 0) - (extension_offset 0.5) - ) - (gr_text "Boopsnoot" - (at 8.25 -4 0) - (layer "User.2") - (uuid "9800137c-8da3-4742-b1a6-12d8bcd3dc03") - (effects - (font - (size 1 1) - (thickness 0.15) - ) - ) - ) - ) - (embedded_fonts no) - (model "${KICAD9_3DMODEL_DIR}/Symbol.3dshapes/Smolhaj_Scale_0.1.step" - (offset - (xyz 0 0 0) - ) - (scale - (xyz 1 1 1) - ) - (rotate - (xyz 0 0 0) - ) - ) -) diff --git a/test.kicad_mod b/test_files/test.kicad_mod similarity index 100% rename from test.kicad_mod rename to test_files/test.kicad_mod diff --git a/test2.kicad_mod b/test_files/test2.kicad_mod similarity index 100% rename from test2.kicad_mod rename to test_files/test2.kicad_mod diff --git a/test_files/test3.kicad_mod b/test_files/test3.kicad_mod new file mode 100644 index 0000000..df5d8cc --- /dev/null +++ b/test_files/test3.kicad_mod @@ -0,0 +1,449 @@ +(footprint "Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical" (version 20211014) (generator pcbnew) + (layer "F.Cu") + (tedit 5B573410) + (descr "https://www.marutsu.co.jp/contents/shop/marutsu/ds/asp-134602-01.pdf") + (tags "FMC HPC") + (attr smd) + (fp_text reference "REF**" (at 0 -30.02) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 40e47033-e736-455e-991d-ccc3e6c47814) + ) + (fp_text value "Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical" (at 0 29.27) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8bc0b4b6-b77f-4f54-b986-9f059ce4aab0) + ) + (fp_text user "${REFERENCE}" (at 0 0.14) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ad3730dd-e3da-49e4-b96d-cac7b094668f) + ) + (fp_line (start -7.7 -27.3) (end -7.7 -28.3) (layer "F.SilkS") (width 0.12) (tstamp 1ac6b150-10ac-40cf-84ba-65f9ac98e88d)) + (fp_line (start 7.45 -28.07) (end 0.87 -28.07) (layer "F.SilkS") (width 0.12) (tstamp 400a636a-574d-4dfe-9bc8-d7ca9a980512)) + (fp_line (start -0.87 -28.07) (end -7.45 -28.07) (layer "F.SilkS") (width 0.12) (tstamp 4c1bc254-1c52-45b7-ae96-8416fad5e9e1)) + (fp_line (start 0.87 -28.96) (end -0.87 -28.96) (layer "F.SilkS") (width 0.12) (tstamp 531f1702-d161-4c3a-8be2-690cca68ef3e)) + (fp_line (start 0.87 -28.07) (end 0.87 -28.96) (layer "F.SilkS") (width 0.12) (tstamp 5d8c10da-b9e4-4e4c-ac8b-5e226d94451f)) + (fp_line (start -7.7 -28.3) (end -6.7 -28.3) (layer "F.SilkS") (width 0.12) (tstamp 988a431f-bf4e-48f4-baa4-2bd8f03e9f98)) + (fp_line (start -0.87 -28.96) (end -0.87 -28.07) (layer "F.SilkS") (width 0.12) (tstamp a3286dc6-0612-49a0-8c5f-665b96bcaa70)) + (fp_line (start -7.45 -28.07) (end -7.45 27.93) (layer "F.SilkS") (width 0.12) (tstamp a567d475-98b1-486a-a323-2b7f46e3c66b)) + (fp_line (start -7.45 27.93) (end 7.45 27.93) (layer "F.SilkS") (width 0.12) (tstamp bd0d2585-d1a6-42a4-955d-f61767479258)) + (fp_line (start 7.45 27.93) (end 7.45 -28.07) (layer "F.SilkS") (width 0.12) (tstamp d4decbbc-db3f-4429-96be-8cdbfd5e8360)) + (fp_line (start -7.84 -29.35) (end -7.84 28.32) (layer "F.CrtYd") (width 0.05) (tstamp 03a5806d-cf03-4a29-a3d4-c3d1c51a65e9)) + (fp_line (start -7.84 -29.35) (end 7.84 -29.35) (layer "F.CrtYd") (width 0.05) (tstamp 2b732644-1274-45db-b956-3b1d1913e418)) + (fp_line (start 7.84 -29.35) (end 7.84 28.32) (layer "F.CrtYd") (width 0.05) (tstamp 8f1fbc01-02e9-4e9e-b95d-bda7a2fdf13e)) + (fp_line (start -7.84 28.32) (end 7.84 28.32) (layer "F.CrtYd") (width 0.05) (tstamp aa5556a5-a842-4652-ad0b-0c31f646dec2)) + (fp_line (start -0.76 -28.85) (end 0.76 -28.85) (layer "F.Fab") (width 0.1) (tstamp 19cedb10-cf88-45a0-a891-039465bcefcd)) + (fp_line (start 7.34 27.82) (end 7.34 -27.96) (layer "F.Fab") (width 0.1) (tstamp 284eaf4d-a8ea-4cdc-bfdf-048e824ce78e)) + (fp_line (start 0.76 -27.96) (end 7.34 -27.96) (layer "F.Fab") (width 0.1) (tstamp 570f901a-252d-4b2d-b647-c267c19daeaa)) + (fp_line (start -0.76 -27.96) (end -0.76 -28.85) (layer "F.Fab") (width 0.1) (tstamp 7c63ea6b-08df-4398-a17f-61ed4053d5df)) + (fp_line (start 0.76 -27.96) (end 0.76 -28.85) (layer "F.Fab") (width 0.1) (tstamp 816e2e12-00db-49be-a3ea-b0a6a9087083)) + (fp_line (start -7.34 -26.95) (end -6.33 -27.96) (layer "F.Fab") (width 0.1) (tstamp 86c167a1-a917-4b24-ac75-21e398cdd98d)) + (fp_line (start -7.34 27.82) (end 7.34 27.82) (layer "F.Fab") (width 0.1) (tstamp b7900089-5ab6-4191-ab1c-e2e83b60274d)) + (fp_line (start -0.76 -27.96) (end -6.33 -27.96) (layer "F.Fab") (width 0.1) (tstamp ba25452e-b285-4cc2-88d4-1107cc223cba)) + (fp_line (start -7.34 27.82) (end -7.34 -26.95) (layer "F.Fab") (width 0.1) (tstamp bb0724e4-5cbc-49a6-a449-4c1b60e6c871)) + (pad "" np_thru_hole circle (at 3.05 27.19 90) (size 1.27 1.27) (drill 1.27) (layers *.Cu *.Mask) (tstamp 04088e2e-e91c-4156-8bf6-01de347ec435)) + (pad "" np_thru_hole circle (at 0 -27.19 90) (size 1.27 1.27) (drill 1.27) (layers *.Cu *.Mask) (tstamp c5538746-1dc8-42c0-bb41-265557eb39b4)) + (pad "A1" smd circle (at -5.715 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 47a5863d-f7a3-4e70-9778-6e034a17a7dd)) + (pad "A2" smd circle (at -5.715 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 538f4b6c-fe8c-4aa6-9cbd-5a935adc544c)) + (pad "A3" smd circle (at -5.715 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e4747c53-7744-4f97-a364-6fb4cf47c3ca)) + (pad "A4" smd circle (at -5.715 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 077a3252-d410-48b1-8c3c-6c932915a936)) + (pad "A5" smd circle (at -5.715 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 28d8363b-f8f3-446c-a832-9e29a5d01554)) + (pad "A6" smd circle (at -5.715 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7b00da6d-8082-47fc-982b-5da11699ddcd)) + (pad "A7" smd circle (at -5.715 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp de10fad3-7d77-4375-b8ed-95239554410b)) + (pad "A8" smd circle (at -5.715 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 34e28c8d-8262-4713-85ad-6cf5b41afd3c)) + (pad "A9" smd circle (at -5.715 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6134b3d9-c317-4789-be48-76763984f9b9)) + (pad "A10" smd circle (at -5.715 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 58912a0c-3647-48e5-a2f7-3c0daf581dbb)) + (pad "A11" smd circle (at -5.715 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3615a9dc-d179-46a9-b604-97a20c31bd3d)) + (pad "A12" smd circle (at -5.715 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bf5be8d0-0473-4ce9-bd9c-fb99c2375a5b)) + (pad "A13" smd circle (at -5.715 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9b2758c3-014b-4871-ac30-de8a81333ee7)) + (pad "A14" smd circle (at -5.715 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b53301ca-883e-4f71-97b9-c873e4ec0133)) + (pad "A15" smd circle (at -5.715 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7e89062b-3371-418f-92d1-5fa92b5602e7)) + (pad "A16" smd circle (at -5.715 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dc884f69-0ed1-4069-b2ee-2f7b30bbc222)) + (pad "A17" smd circle (at -5.715 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8cc38892-40fa-425e-9199-f62b5b979725)) + (pad "A18" smd circle (at -5.715 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 29b5cebe-b697-4e36-855c-f7ccfd793b8c)) + (pad "A19" smd circle (at -5.715 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eef5cc0f-ff61-4c7b-9b06-349767a53e48)) + (pad "A20" smd circle (at -5.715 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 375520b6-defc-4e29-a22f-404726caa4ba)) + (pad "A21" smd circle (at -5.715 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e62bd114-0b8a-4f9e-a4d0-6302cdace34c)) + (pad "A22" smd circle (at -5.715 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8c830f07-7e33-4993-b509-db1d6507f9de)) + (pad "A23" smd circle (at -5.715 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 36798deb-2a5e-4b0c-9da9-233f7f11c837)) + (pad "A24" smd circle (at -5.715 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 713088ee-5a01-49a8-97f1-6c74b496d131)) + (pad "A25" smd circle (at -5.715 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b29dc25b-f5ab-4c01-bbad-6893e6b314ac)) + (pad "A26" smd circle (at -5.715 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bbb90165-f616-49eb-a8a3-5fa01233e385)) + (pad "A27" smd circle (at -5.715 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0697e05a-fa5b-4824-93c1-77cba517265b)) + (pad "A28" smd circle (at -5.715 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fc0c1f3-4882-4b0f-8ed2-55078af289a1)) + (pad "A29" smd circle (at -5.715 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2dd0f98d-306b-4f36-866b-c1f25d61d209)) + (pad "A30" smd circle (at -5.715 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 58b660a8-b3f0-45e3-863a-ca8bf79aa6a1)) + (pad "A31" smd circle (at -5.715 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bd6f7dee-1570-49a4-b0be-273ed1936f6a)) + (pad "A32" smd circle (at -5.715 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5fa2508d-e502-4e0f-b19c-08cef35dd397)) + (pad "A33" smd circle (at -5.715 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9e634fb6-ba81-4f31-b434-b0d6cf4ba213)) + (pad "A34" smd circle (at -5.715 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c8ad4c2f-9067-443a-a73e-ea84e6df9b60)) + (pad "A35" smd circle (at -5.715 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f736711f-e265-412e-beeb-a2f20a155eab)) + (pad "A36" smd circle (at -5.715 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp da817078-f881-4c17-a50f-a1106670b804)) + (pad "A37" smd circle (at -5.715 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fccadc19-7f89-4fb4-9f69-9dfa5d43d594)) + (pad "A38" smd circle (at -5.715 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ccfb171c-2084-46ce-8c5f-a26d5ea3dedf)) + (pad "A39" smd circle (at -5.715 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 35330c35-f3c4-4480-b965-523b2f4b7f58)) + (pad "A40" smd circle (at -5.715 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c069c34f-3c4a-4373-82b8-38b3944f76a1)) + (pad "B1" smd circle (at -4.445 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3c64baa2-13cd-411e-bec3-b5de582322b8)) + (pad "B2" smd circle (at -4.445 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3cbf60cb-2efe-4c4e-a207-a65282e1858b)) + (pad "B3" smd circle (at -4.445 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 955083af-386a-4149-9d25-d687e176418c)) + (pad "B4" smd circle (at -4.445 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 699ae624-41f1-44d2-adef-cd3317ace556)) + (pad "B5" smd circle (at -4.445 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa99ea66-f402-4f55-a82f-07c292669e53)) + (pad "B6" smd circle (at -4.445 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4ac62a01-d230-4a77-8651-1be6fc0d592c)) + (pad "B7" smd circle (at -4.445 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 984acfd5-8b40-4b1a-aa83-f2d580849416)) + (pad "B8" smd circle (at -4.445 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6795b569-4550-4a84-8a78-930d8f98534d)) + (pad "B9" smd circle (at -4.445 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 07f6ebaf-3a8d-4780-ab05-a38172ce7709)) + (pad "B10" smd circle (at -4.445 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5702a3f2-b8e1-4300-a854-6a01da221734)) + (pad "B11" smd circle (at -4.445 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3f3026c-8736-43f1-8c7c-912f2d95bcbc)) + (pad "B12" smd circle (at -4.445 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eb3852f2-df94-48ef-bb1a-55bf0df0dbe8)) + (pad "B13" smd circle (at -4.445 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7095fddd-79b8-429d-8fea-63c05af4a669)) + (pad "B14" smd circle (at -4.445 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c4708acb-10f7-44e3-809f-4fec1f79c1d0)) + (pad "B15" smd circle (at -4.445 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3177f4f1-69f6-410e-985f-34db706e1f5c)) + (pad "B16" smd circle (at -4.445 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 63266e05-fe4e-447c-91d1-214c3b34f5bf)) + (pad "B17" smd circle (at -4.445 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0fe9aeac-3b18-45ee-ab66-2cf956144dba)) + (pad "B18" smd circle (at -4.445 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5bc0caf1-2e07-42cf-a907-42dcd298a4a9)) + (pad "B19" smd circle (at -4.445 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f42da6d5-1053-4deb-86b2-8d376678b9e8)) + (pad "B20" smd circle (at -4.445 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ddb66609-b567-46b9-b72a-612b21f7a31c)) + (pad "B21" smd circle (at -4.445 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 99107d38-9071-4f8a-8640-6194fe7a232c)) + (pad "B22" smd circle (at -4.445 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5106ca4e-3058-4d66-bfd8-68e724d7e8d7)) + (pad "B23" smd circle (at -4.445 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ef9e6e4e-a37f-43ec-bc24-312ccc0f7157)) + (pad "B24" smd circle (at -4.445 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 894ff16a-c821-4f57-8ced-b33a1cc707e6)) + (pad "B25" smd circle (at -4.445 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c38814cc-705e-46ec-b5e3-2e73ce5f911f)) + (pad "B26" smd circle (at -4.445 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1c795e3a-3009-4f72-8f0d-148d226a6c1b)) + (pad "B27" smd circle (at -4.445 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d870f755-adaa-4767-9838-6b6bde24b18b)) + (pad "B28" smd circle (at -4.445 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ad46a034-12d6-410d-bb1e-955386c7698d)) + (pad "B29" smd circle (at -4.445 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bdb7d4bf-53fc-47b7-8f6d-3ee70274f651)) + (pad "B30" smd circle (at -4.445 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 03894a30-d38c-40df-a10b-558f3d4b5020)) + (pad "B31" smd circle (at -4.445 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bf0d5099-21c0-400b-add8-e0baf4bff476)) + (pad "B32" smd circle (at -4.445 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a876ecb8-02d3-4239-a717-c73673e337ae)) + (pad "B33" smd circle (at -4.445 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 14689cd0-1404-492f-b769-afd242dc9e8c)) + (pad "B34" smd circle (at -4.445 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fc84822c-437d-4030-887d-b91e640d985c)) + (pad "B35" smd circle (at -4.445 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 82249314-f3d5-46b3-95cc-d6702feeedfa)) + (pad "B36" smd circle (at -4.445 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d54e2b1b-8fb6-4057-bc03-32fc02d1d5ad)) + (pad "B37" smd circle (at -4.445 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b64afd76-07b8-4b30-9a75-298f458d2190)) + (pad "B38" smd circle (at -4.445 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7665dcce-0758-472b-8795-dee839771086)) + (pad "B39" smd circle (at -4.445 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a7509c2f-af1b-4578-aecb-b90f6a3613a4)) + (pad "B40" smd circle (at -4.445 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fc436a8e-d032-4579-9de1-71382c1243b8)) + (pad "C1" smd circle (at -3.175 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 90e85039-47c4-437d-93d0-62ebf3ca7473)) + (pad "C2" smd circle (at -3.175 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aadd484e-5331-423b-a427-f775a3fbec10)) + (pad "C3" smd circle (at -3.175 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 87e0c54f-8bf7-46a3-8f62-8f562755cdaf)) + (pad "C4" smd circle (at -3.175 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 240d5ced-bb90-4d4f-9445-75f60d39b8b1)) + (pad "C5" smd circle (at -3.175 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fc1d1ed-e5ab-4968-a42b-e55cf7a75dad)) + (pad "C6" smd circle (at -3.175 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c69c8d59-19dc-478a-8c4c-5ecd26dec779)) + (pad "C7" smd circle (at -3.175 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 318e66da-fb77-4094-ab77-785ad0bfc516)) + (pad "C8" smd circle (at -3.175 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 02a803c5-3412-4282-a279-7334588f501a)) + (pad "C9" smd circle (at -3.175 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7eb276fd-9321-42ca-aff5-2640ab74e00c)) + (pad "C10" smd circle (at -3.175 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ce8a3d40-28b5-4c7d-b8b6-fd4bff4b2ea0)) + (pad "C11" smd circle (at -3.175 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e151fb3d-97b6-4df8-9620-0f36fb47a32e)) + (pad "C12" smd circle (at -3.175 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dadf74df-d24e-4f7e-aba1-7a7bce32299b)) + (pad "C13" smd circle (at -3.175 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c0db07eb-dd8e-4738-bcaf-d7f55c7ef2d8)) + (pad "C14" smd circle (at -3.175 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d041054c-8232-46f3-a7bc-ff32ee3b368a)) + (pad "C15" smd circle (at -3.175 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d3f00701-5f81-4a9b-ad7a-70c68422855f)) + (pad "C16" smd circle (at -3.175 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d05bafbd-8111-4e8f-adf8-118b3e4de282)) + (pad "C17" smd circle (at -3.175 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1d781c8d-2120-46fc-95e1-27fe9b6de918)) + (pad "C18" smd circle (at -3.175 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ee5172e7-5b27-4d3b-bd6f-16c52d26dc69)) + (pad "C19" smd circle (at -3.175 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bf647fb4-8c56-4cde-92ed-475975fc4096)) + (pad "C20" smd circle (at -3.175 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1154e3c0-9211-4b8d-b84e-1ac3d23e1dd8)) + (pad "C21" smd circle (at -3.175 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a58581e8-991e-4bd6-8b3b-79c226f4bd96)) + (pad "C22" smd circle (at -3.175 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6f9f71db-41d9-4fcf-a5c1-5622a8d3bb06)) + (pad "C23" smd circle (at -3.175 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ca868c0f-9245-4aea-ac07-587fdf60968b)) + (pad "C24" smd circle (at -3.175 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 964a0e26-e0db-424d-bf25-17a1b2ee7712)) + (pad "C25" smd circle (at -3.175 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c22b4d9c-ca90-4b47-a9e1-e71bbfa211df)) + (pad "C26" smd circle (at -3.175 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b044e1f8-f2e1-449a-bca6-23562ca6be6a)) + (pad "C27" smd circle (at -3.175 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2a6bc7c7-5a39-4d18-9825-0da1740ce4cc)) + (pad "C28" smd circle (at -3.175 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fd5dd461-845d-4508-a13a-ba4d73ea6c96)) + (pad "C29" smd circle (at -3.175 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5f3c3a99-62a0-4718-b1aa-196b4368ada8)) + (pad "C30" smd circle (at -3.175 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9fde5b99-2b65-4054-bab5-557438aae330)) + (pad "C31" smd circle (at -3.175 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2b2cd41f-d318-4d25-ac79-ae07ed7f2aee)) + (pad "C32" smd circle (at -3.175 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 13e944cc-3a72-4dc7-a58f-19596a226eb9)) + (pad "C33" smd circle (at -3.175 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 83d454ac-7e8e-4ae2-ac19-a6f8cef4e80c)) + (pad "C34" smd circle (at -3.175 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ff9c62d5-4b60-4e25-b962-95bcf15ea658)) + (pad "C35" smd circle (at -3.175 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 791b8f0d-b72d-460c-9dfe-20fd3fc4fbdf)) + (pad "C36" smd circle (at -3.175 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cc1351ff-973b-4696-88ff-3f0fe0a6f753)) + (pad "C37" smd circle (at -3.175 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f6d4abc2-9e2c-42bd-ac2b-88f1a299f6d2)) + (pad "C38" smd circle (at -3.175 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b3686bfa-322f-41d2-8b05-83cbb9dba914)) + (pad "C39" smd circle (at -3.175 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ac0d0739-92d9-4cc6-a0ba-175bcdd72f66)) + (pad "C40" smd circle (at -3.175 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aae9e85f-c493-4ae2-b7d3-cd71bb0ab94f)) + (pad "D1" smd circle (at -1.905 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5b782357-fe53-43db-b219-1c54a61eb036)) + (pad "D2" smd circle (at -1.905 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 94111e3f-fb11-4900-8ed1-8b52d97e43f8)) + (pad "D3" smd circle (at -1.905 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f59ccf17-9108-4b28-8aee-a0f6384e2672)) + (pad "D4" smd circle (at -1.905 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1730a0d7-7e9e-47c2-aae1-a35399cd9488)) + (pad "D5" smd circle (at -1.905 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4481251f-5d6f-4f7c-ab53-1d6f7c839c33)) + (pad "D6" smd circle (at -1.905 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 69596500-4214-4aac-98e1-aea0a8095c06)) + (pad "D7" smd circle (at -1.905 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4fab0d2c-f5cd-488a-b0c0-c73b6b0ad819)) + (pad "D8" smd circle (at -1.905 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4ccbc619-5c9f-4ffa-b7ec-d4283538bd28)) + (pad "D9" smd circle (at -1.905 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 56b1a7e5-4480-4a9e-8490-037a1304c9b0)) + (pad "D10" smd circle (at -1.905 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b27864c0-dca4-4f37-998c-79a32363052a)) + (pad "D11" smd circle (at -1.905 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d5b0a483-3c8a-4f8a-a027-d1519f1ab398)) + (pad "D12" smd circle (at -1.905 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e4d2c2cd-4657-41c9-a908-63c67a71383e)) + (pad "D13" smd circle (at -1.905 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ecfdcbea-da11-472c-b533-61ee10ca08e1)) + (pad "D14" smd circle (at -1.905 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp def6ea8f-19d9-41ba-bacb-a30f93a9fcc5)) + (pad "D15" smd circle (at -1.905 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 186f0149-5ebd-42d5-a331-eb084381bc2e)) + (pad "D16" smd circle (at -1.905 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 60957e85-7eb6-42a6-9a08-be3c151289c0)) + (pad "D17" smd circle (at -1.905 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 932aa3ac-3b6f-4075-85fe-76e4aa6bb0fa)) + (pad "D18" smd circle (at -1.905 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8d4bc654-069a-4c57-87bf-82d54b6f837a)) + (pad "D19" smd circle (at -1.905 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b770f07b-842e-4e3c-9c7a-6017f19d86c4)) + (pad "D20" smd circle (at -1.905 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 21635c1a-a54d-4f64-8b28-573062833985)) + (pad "D21" smd circle (at -1.905 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2347fe71-571a-436c-9542-322b70c6fff6)) + (pad "D22" smd circle (at -1.905 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2f4e1405-3cc1-4817-aeed-ad1e70072e45)) + (pad "D23" smd circle (at -1.905 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1dd8404e-7cfc-4957-bc72-06a52543e97e)) + (pad "D24" smd circle (at -1.905 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1c5723ba-d8be-48c4-b5ac-39646fb7df73)) + (pad "D25" smd circle (at -1.905 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a87b1f4a-f5b0-43a4-9593-620b21716ab2)) + (pad "D26" smd circle (at -1.905 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d3e57011-0ffd-4f7e-9958-340ecd25c4bd)) + (pad "D27" smd circle (at -1.905 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e2ff0b6a-858f-433b-983e-6b71284d00dd)) + (pad "D28" smd circle (at -1.905 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa790721-0ad7-45df-a701-4bf1b1c56391)) + (pad "D29" smd circle (at -1.905 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c56ab214-040b-4b2b-9161-01f76d6a1644)) + (pad "D30" smd circle (at -1.905 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2e53a974-d85c-47a7-accd-2ac928c82883)) + (pad "D31" smd circle (at -1.905 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 55f629d0-c06b-44cc-ad81-575b324378c5)) + (pad "D32" smd circle (at -1.905 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 13111c6f-04ba-4709-8329-e171ef6532d6)) + (pad "D33" smd circle (at -1.905 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 551a922a-1907-4836-a71c-b4dfbcbada93)) + (pad "D34" smd circle (at -1.905 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a0b0104e-f0ca-45e6-857b-499c37d03736)) + (pad "D35" smd circle (at -1.905 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cd18d0da-2bab-4627-9b1b-168b35a94ce1)) + (pad "D36" smd circle (at -1.905 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 287a8998-7c56-4e09-ab6c-93d9e648a4c6)) + (pad "D37" smd circle (at -1.905 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e37c41b4-d776-4176-bf76-95bafb7d66b6)) + (pad "D38" smd circle (at -1.905 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6a5fd2c0-3aed-415b-84ab-63c787a477cc)) + (pad "D39" smd circle (at -1.905 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e6e2a86e-e9a6-4cb8-a693-9cfff7dcb1b8)) + (pad "D40" smd circle (at -1.905 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e0b93dc3-277e-4a02-8209-0a2eb9971234)) + (pad "E1" smd circle (at -0.64 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b9e1d905-b3ab-4224-b541-7c8bb065b7bb)) + (pad "E2" smd circle (at -0.64 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 74ebbc2b-9539-4cd4-9604-12cbe6e2d28f)) + (pad "E3" smd circle (at -0.64 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a1423cdf-21b9-456b-955b-7332411bea83)) + (pad "E4" smd circle (at -0.64 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4ce03a30-bdb1-4085-977d-0368d34b87ad)) + (pad "E5" smd circle (at -0.64 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 950e4ae2-e0ee-4cbc-899c-eff60defcdda)) + (pad "E6" smd circle (at -0.64 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bdd506a6-74d7-4308-a8b1-4be75109af29)) + (pad "E7" smd circle (at -0.64 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eaa34775-795f-4c64-9d0c-976c68d708fa)) + (pad "E8" smd circle (at -0.64 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 807a3e90-ba90-440b-a8db-01f4ca05229c)) + (pad "E9" smd circle (at -0.64 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d26c8d63-fc35-4e66-9593-9984cd85a720)) + (pad "E10" smd circle (at -0.64 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a078af4e-b358-4a55-8890-f282cd3735c9)) + (pad "E11" smd circle (at -0.64 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 237d04fc-7ed2-43af-a5fe-7fc71e7c7ab7)) + (pad "E12" smd circle (at -0.64 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2ddfbc3e-a946-42ae-8a1b-0ecca220d7e2)) + (pad "E13" smd circle (at -0.64 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1b395c2c-db28-4334-94c2-70defbddaa2c)) + (pad "E14" smd circle (at -0.64 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 24ad420c-a228-4c37-9ba6-64df0f1a2197)) + (pad "E15" smd circle (at -0.64 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fbedd506-e4fe-47ee-ad5a-5d286726ba4a)) + (pad "E16" smd circle (at -0.64 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 521cb1ee-dc76-4a6a-9ccd-cf722546c2fb)) + (pad "E17" smd circle (at -0.64 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 373f1064-8ab8-4cd3-a94b-490d1b93e46d)) + (pad "E18" smd circle (at -0.64 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a0ddc608-1b52-43eb-9651-584c1086685a)) + (pad "E19" smd circle (at -0.64 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 66f46c26-29bb-4272-89f5-7ee81e10baf1)) + (pad "E20" smd circle (at -0.64 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ef37f1e7-30aa-4256-aa67-4254d94b5e3e)) + (pad "E21" smd circle (at -0.64 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c4f2ee02-b587-4ecf-815f-49b2d56a3e42)) + (pad "E22" smd circle (at -0.64 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f4711d68-340d-4e31-a699-9e9fa672b9db)) + (pad "E23" smd circle (at -0.64 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ba435fe9-1685-4b73-a5a3-5647577b951b)) + (pad "E24" smd circle (at -0.64 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4d21c62e-6f13-4d2e-b197-a49a32948ae0)) + (pad "E25" smd circle (at -0.64 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f0ad5a08-6696-43a0-bdf4-19c21a08b2c0)) + (pad "E26" smd circle (at -0.64 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5a3eed01-f039-4cff-bcf9-b567a203b936)) + (pad "E27" smd circle (at -0.64 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 279e03ab-fb52-464e-9736-a7c75fcba86b)) + (pad "E28" smd circle (at -0.64 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3ca3d9ba-acf6-4750-a657-f3e5a6948189)) + (pad "E29" smd circle (at -0.64 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 66ab8aba-1f6e-4bf7-af59-4c3539946e96)) + (pad "E30" smd circle (at -0.64 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c4d4ab43-dd36-4bf1-81cf-9847fc4b3e70)) + (pad "E31" smd circle (at -0.64 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa045e54-2965-4d76-9a16-17879c5c1632)) + (pad "E32" smd circle (at -0.64 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f86ee171-eab4-4875-b696-f9eca044eb57)) + (pad "E33" smd circle (at -0.64 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 87669465-f421-4cc9-a8b3-79fe75600002)) + (pad "E34" smd circle (at -0.64 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 57234db3-6399-4c48-98e4-7061ffb1d1c8)) + (pad "E35" smd circle (at -0.64 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5d6201ad-a3c4-4259-a848-3fa329b5295e)) + (pad "E36" smd circle (at -0.64 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1ec828db-bdab-4656-8b2a-19f638aafb7d)) + (pad "E37" smd circle (at -0.64 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 53c5bc15-e4e8-4c1a-b0ec-ffc1e9ed3008)) + (pad "E38" smd circle (at -0.64 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8e312124-de2e-4c37-9d90-ea98c3ecd9c3)) + (pad "E39" smd circle (at -0.64 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fd59a0d3-4d7e-44ca-9677-e472fa3291d0)) + (pad "E40" smd circle (at -0.64 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c144afa1-2a01-4878-978b-c9bde3488333)) + (pad "F1" smd circle (at 0.64 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7d650c07-7414-47ef-87a4-07460d53838e)) + (pad "F2" smd circle (at 0.64 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1d297750-7712-41df-93ce-f9307f2334b6)) + (pad "F3" smd circle (at 0.64 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e97ea3d0-aa7f-4817-b53a-4af807d5f935)) + (pad "F4" smd circle (at 0.64 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 475729e8-5e36-44c0-9a1a-8749c9b224b3)) + (pad "F5" smd circle (at 0.64 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 47d506cd-1b87-4565-9bd4-899e66dc4abd)) + (pad "F6" smd circle (at 0.64 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ebe86f99-c877-4c2f-a703-8b5dae076816)) + (pad "F7" smd circle (at 0.64 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 54ad52cb-8cd7-452b-8ef5-300feea30083)) + (pad "F8" smd circle (at 0.64 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 96515837-93f3-416f-9292-3d32d4cafc1b)) + (pad "F9" smd circle (at 0.64 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3e3b8344-a95b-446d-9835-ed94f1629dd4)) + (pad "F10" smd circle (at 0.64 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 855f41ef-f7bd-40e3-9313-e89fe3872206)) + (pad "F11" smd circle (at 0.64 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e697f289-52dc-4e17-b991-a30aec5ee7f8)) + (pad "F12" smd circle (at 0.64 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 88e354a5-1e04-4af6-aec8-ed2035143fde)) + (pad "F13" smd circle (at 0.64 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp cebad94f-d91e-4059-b1ea-3467a08a1bcf)) + (pad "F14" smd circle (at 0.64 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ed4079ab-2d9a-4d3d-9894-210cda41f015)) + (pad "F15" smd circle (at 0.64 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dc773621-f085-4aa6-8c38-dafbcdd65ef6)) + (pad "F16" smd circle (at 0.64 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5e28461c-7562-4da6-9db5-dae2910be471)) + (pad "F17" smd circle (at 0.64 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp bdc50f02-c40e-4680-aff3-77d85ca21f08)) + (pad "F18" smd circle (at 0.64 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8d67c607-2cc8-4c48-bd38-1f4d9dd174bc)) + (pad "F19" smd circle (at 0.64 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7b78a1a3-6036-4d83-93bc-a9f291000ca3)) + (pad "F20" smd circle (at 0.64 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1014f530-a05e-4d03-9843-09d0a81a73b6)) + (pad "F21" smd circle (at 0.64 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 44517633-b065-401e-b19e-11f12417546d)) + (pad "F22" smd circle (at 0.64 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3fcb3384-985f-49f2-a2e7-7b8d17ca3ab0)) + (pad "F23" smd circle (at 0.64 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e62f94e6-1295-40ba-a5aa-8d59b9bcd36f)) + (pad "F24" smd circle (at 0.64 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6cb1c62b-7a02-4384-b477-b94fb24a070b)) + (pad "F25" smd circle (at 0.64 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a867e072-5397-4532-bf35-afa0a826cc0f)) + (pad "F26" smd circle (at 0.64 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a59bc0d5-8c01-4e7c-9829-34d1bb659e51)) + (pad "F27" smd circle (at 0.64 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9a640548-069c-48c6-ac6f-fd27c21be457)) + (pad "F28" smd circle (at 0.64 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2a85584f-f085-42a8-a135-2e15734f4a1a)) + (pad "F29" smd circle (at 0.64 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fe03d06f-701c-4061-ac94-0f2c498a8a71)) + (pad "F30" smd circle (at 0.64 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp be6096eb-000b-4098-b2f1-78f8c9e4a987)) + (pad "F31" smd circle (at 0.64 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 12331886-711f-457f-8336-596ff85e10ae)) + (pad "F32" smd circle (at 0.64 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f905c0b8-64e1-47a4-97ff-9877d31877cd)) + (pad "F33" smd circle (at 0.64 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 15b24e6c-f828-4467-99ca-e33ed4980a89)) + (pad "F34" smd circle (at 0.64 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eb6ff036-34c8-4b48-a9f3-daf62328b0ef)) + (pad "F35" smd circle (at 0.64 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 97314056-2f95-419c-941e-8142a0c6e532)) + (pad "F36" smd circle (at 0.64 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp eb1fea32-2c50-4d03-bcd5-454308114a77)) + (pad "F37" smd circle (at 0.64 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 02b2c2e1-2091-4c76-b8fe-5ef77004d272)) + (pad "F38" smd circle (at 0.64 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 086034fa-ca13-42e5-a027-0b461d895388)) + (pad "F39" smd circle (at 0.64 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aeb80457-e64f-4af8-b541-32990b9e1fbc)) + (pad "F40" smd circle (at 0.64 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b59f0562-e2f0-428c-a635-2ba35f8688f7)) + (pad "G1" smd circle (at 1.905 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp fbd881d0-8a87-49d8-bab5-c32a2a6243a4)) + (pad "G2" smd circle (at 1.905 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 45fbe7e7-cf56-4e9c-8dd6-ed30a1463e8d)) + (pad "G3" smd circle (at 1.905 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 772bf1ce-1ccc-43e9-8e0a-15ba7c2a53f0)) + (pad "G4" smd circle (at 1.905 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 03718865-3ba1-4681-83ca-7982a1072735)) + (pad "G5" smd circle (at 1.905 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 023099c1-4c17-4c64-a52b-4b07c9efaa62)) + (pad "G6" smd circle (at 1.905 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6253345b-7150-47d4-813c-1171dcd5e289)) + (pad "G7" smd circle (at 1.905 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6297fc7c-167c-4ecf-813e-aa519addcfd7)) + (pad "G8" smd circle (at 1.905 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e39ed8b0-6a04-495b-8b34-c4528a5be9b5)) + (pad "G9" smd circle (at 1.905 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 750d1833-1ac4-476f-8c54-cf131a2271a3)) + (pad "G10" smd circle (at 1.905 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 136ef020-5a06-4c89-b4a5-dbd42e5a223c)) + (pad "G11" smd circle (at 1.905 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 499b3bc2-5eec-4480-ae3e-1b584b0ea778)) + (pad "G12" smd circle (at 1.905 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1887cdc7-d83f-4bb9-84a6-c9375c578b61)) + (pad "G13" smd circle (at 1.905 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 499bdde4-f8d1-44a8-9173-324656899004)) + (pad "G14" smd circle (at 1.905 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e48ab87e-bb72-4a93-aee5-7a68dc50dad6)) + (pad "G15" smd circle (at 1.905 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8546e98d-c9d8-4930-a704-1dc79fa46a74)) + (pad "G16" smd circle (at 1.905 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d9e0d192-da88-4266-bb11-f0679b5918f6)) + (pad "G17" smd circle (at 1.905 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 48f88f64-5d1e-4d83-9179-b9687820a5ea)) + (pad "G18" smd circle (at 1.905 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8fd2ad50-877f-4996-b995-c5fee3bf9fd2)) + (pad "G19" smd circle (at 1.905 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 71472bd5-08d0-4f68-b09e-26fb634ab2a6)) + (pad "G20" smd circle (at 1.905 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e8266697-d7d8-4b36-9a89-aa3e66410a70)) + (pad "G21" smd circle (at 1.905 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 68c46f98-b664-4062-90f2-c2a4df01314b)) + (pad "G22" smd circle (at 1.905 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2b251153-5f10-4be3-8f7a-f395a1901044)) + (pad "G23" smd circle (at 1.905 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 72835198-ecc3-4e3c-91e6-7c02b7f67ac3)) + (pad "G24" smd circle (at 1.905 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 446c0539-8dea-468f-ae77-bc3b9b812f61)) + (pad "G25" smd circle (at 1.905 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp df39b557-f723-4717-995b-20fe2a9c9a06)) + (pad "G26" smd circle (at 1.905 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6bda9a96-efe0-4670-967d-293fed0dc4cb)) + (pad "G27" smd circle (at 1.905 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f2e483c7-bdf2-4776-968d-aa78a8e7ca08)) + (pad "G28" smd circle (at 1.905 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 89a357c2-934f-4607-9ee8-78a74b209083)) + (pad "G29" smd circle (at 1.905 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 68ce938d-d45f-4263-b422-33a925e65718)) + (pad "G30" smd circle (at 1.905 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 09a05383-f38e-489b-a24a-469200102dd1)) + (pad "G31" smd circle (at 1.905 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 563fb240-4c54-4485-991b-e02cdea5d35b)) + (pad "G32" smd circle (at 1.905 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 70b5a34d-9d93-43e4-9757-ce595884956b)) + (pad "G33" smd circle (at 1.905 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 28d2eb2f-eb41-4a9c-889d-9fc4719aab24)) + (pad "G34" smd circle (at 1.905 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 03359df8-5c0f-4aff-b4ab-ab20e746eaed)) + (pad "G35" smd circle (at 1.905 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5e0dfcf4-a5ce-407e-95a5-1a298b5aa48c)) + (pad "G36" smd circle (at 1.905 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f57522b2-443d-46b0-b4f4-cc06b86ee8ea)) + (pad "G37" smd circle (at 1.905 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8515f755-d1e5-4c72-8698-55719045ae4b)) + (pad "G38" smd circle (at 1.905 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 42a46698-ff39-4c57-8e2d-e464bf0172e7)) + (pad "G39" smd circle (at 1.905 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9389314b-ec86-41da-a165-935beb917c17)) + (pad "G40" smd circle (at 1.905 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 76adbdbe-6ba9-453c-8e74-cb9556ea8541)) + (pad "H1" smd circle (at 3.175 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp db1d42f5-e4e1-4f02-b6b7-a7d36e2f7ec8)) + (pad "H2" smd circle (at 3.175 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 57122e26-6485-4761-aa1d-d148785674bb)) + (pad "H3" smd circle (at 3.175 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dc692787-e0ba-4ab0-be22-02c9da77f75e)) + (pad "H4" smd circle (at 3.175 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d1cd63b7-8721-4d51-b010-6fe1cbc6cb0f)) + (pad "H5" smd circle (at 3.175 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 74a532e2-5e2e-4270-a394-1bbff2117166)) + (pad "H6" smd circle (at 3.175 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 77ae4edf-719b-48ef-8bf1-69fcff743e46)) + (pad "H7" smd circle (at 3.175 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 602206d5-64cd-41f9-b42b-eee0a2c70e01)) + (pad "H8" smd circle (at 3.175 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 35832096-57b9-4c94-8944-d2c6abf9846f)) + (pad "H9" smd circle (at 3.175 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c1d3bcda-7412-4b37-afab-985b769de178)) + (pad "H10" smd circle (at 3.175 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4e1ac722-6e9b-4346-b744-7bd903736c04)) + (pad "H11" smd circle (at 3.175 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 28f9b6f5-89fe-4d18-843a-2f3aa1420aee)) + (pad "H12" smd circle (at 3.175 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8a06210e-bd38-4c86-b7d3-ce67dc887e80)) + (pad "H13" smd circle (at 3.175 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 79016c93-9ca6-4dde-b66b-fd30dc1d570f)) + (pad "H14" smd circle (at 3.175 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 93c4f5d0-c0a1-4864-bde5-5a518b73eb7e)) + (pad "H15" smd circle (at 3.175 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 347e33ca-47dd-4fe4-8405-be60c5f2d780)) + (pad "H16" smd circle (at 3.175 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b0b7f0d5-a5ec-44fe-bb68-2a060a4c8c1a)) + (pad "H17" smd circle (at 3.175 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6c93f4ef-638a-4ca0-b8d2-3ced9f358045)) + (pad "H18" smd circle (at 3.175 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 58c5a37b-9ad7-49a5-9e04-162fac588306)) + (pad "H19" smd circle (at 3.175 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d4b52f1b-76e6-4d8e-acf6-fea80deb0c92)) + (pad "H20" smd circle (at 3.175 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 81af036a-7734-4800-8411-0a42486c2dc5)) + (pad "H21" smd circle (at 3.175 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 234537d7-d4e0-45af-8e65-cf16b18defb1)) + (pad "H22" smd circle (at 3.175 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d8eeee37-84ae-4383-9955-76191d879f06)) + (pad "H23" smd circle (at 3.175 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8474cb80-cbd8-445e-b67e-18d8a66707ed)) + (pad "H24" smd circle (at 3.175 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 58c2c953-a4a1-4a6d-87fd-49c607bde74f)) + (pad "H25" smd circle (at 3.175 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ba7c946b-43ed-4917-906c-cee78e1a25f5)) + (pad "H26" smd circle (at 3.175 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 38269faa-db10-4c70-a374-7a7a30a8507d)) + (pad "H27" smd circle (at 3.175 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ae27c707-7dd8-4b9d-9c7a-9d67a646d51f)) + (pad "H28" smd circle (at 3.175 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 97684166-0dda-402d-8ec4-6ff16b2aa328)) + (pad "H29" smd circle (at 3.175 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a9f1efff-e2f0-4214-885c-1c2063004066)) + (pad "H30" smd circle (at 3.175 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5933dacb-81aa-4990-b354-789c2dc006c0)) + (pad "H31" smd circle (at 3.175 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 73955be4-fb6a-4d94-a7bf-7329e4336d5d)) + (pad "H32" smd circle (at 3.175 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5b5e1d91-0285-47bf-b0ec-adc9bceb3e6b)) + (pad "H33" smd circle (at 3.175 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b87a3be0-95cc-4ab3-bdd0-b2248c949486)) + (pad "H34" smd circle (at 3.175 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7432b5bb-5d89-4ea9-a98a-9ff5a92961a8)) + (pad "H35" smd circle (at 3.175 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1077bb55-b74d-4629-8ee9-57e4d50c11e2)) + (pad "H36" smd circle (at 3.175 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 952a78fa-beb4-4eed-b75e-dab548cfa025)) + (pad "H37" smd circle (at 3.175 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0358562e-5efc-46e3-a890-c3d32ff296f6)) + (pad "H38" smd circle (at 3.175 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp a459cc6e-8284-40b2-ac00-e1748400d862)) + (pad "H39" smd circle (at 3.175 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8e65530a-922d-4031-aca0-a88dbb86bb0f)) + (pad "H40" smd circle (at 3.175 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f9743554-cb83-4851-a57b-5612f2d6f2f3)) + (pad "J1" smd circle (at 4.445 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 03314dde-a153-4556-b455-5fa27bcb771e)) + (pad "J2" smd circle (at 4.445 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c21bf789-766d-46b6-ba94-e65f2acff858)) + (pad "J3" smd circle (at 4.445 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 54946d74-be63-4663-82db-55a4a0d62cc0)) + (pad "J4" smd circle (at 4.445 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp aa074e2e-e826-4203-ab78-cfe3580bb3d5)) + (pad "J5" smd circle (at 4.445 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e3ad0991-0b98-42d1-8b81-4eb4d8d9ab2f)) + (pad "J6" smd circle (at 4.445 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0e32d9a1-8294-4acf-8386-1d814469eb02)) + (pad "J7" smd circle (at 4.445 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4a6877a8-61ea-4f8b-9ee8-95dc6833aa74)) + (pad "J8" smd circle (at 4.445 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e4a2acc3-3b14-4bd6-8f43-0a3e1ca26e81)) + (pad "J9" smd circle (at 4.445 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5646f571-84ae-483b-b605-d63f51728094)) + (pad "J10" smd circle (at 4.445 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7804bc81-b75c-42d9-8646-b4f28962ac66)) + (pad "J11" smd circle (at 4.445 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7ec86fc3-97b2-453e-b476-11d223c8ad2f)) + (pad "J12" smd circle (at 4.445 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 83a5340d-c5a6-4bce-86bf-3fd1f7b1c69c)) + (pad "J13" smd circle (at 4.445 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 13a666e4-d6ee-4a22-9931-f6207a756cd9)) + (pad "J14" smd circle (at 4.445 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ccff39fd-4139-4dd2-91bb-a606b3cdcaa5)) + (pad "J15" smd circle (at 4.445 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 48daa971-d009-4765-b647-9da875118a1c)) + (pad "J16" smd circle (at 4.445 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d3f03ad6-5bde-4d70-ae24-f7bfff167d07)) + (pad "J17" smd circle (at 4.445 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 10c0a759-0d41-4cc8-8b6b-e8fdc1ef1e30)) + (pad "J18" smd circle (at 4.445 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b1d4c57c-92b8-4a11-8e08-32f0c334e749)) + (pad "J19" smd circle (at 4.445 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7546fb40-c0c2-4079-9a95-8248ee9cd647)) + (pad "J20" smd circle (at 4.445 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f9d52a61-7f88-4397-82cb-f2f1304e783c)) + (pad "J21" smd circle (at 4.445 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 2b8a347f-d30d-4f5d-96ca-2996db6d4696)) + (pad "J22" smd circle (at 4.445 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7a7226a8-20c5-4105-b8e0-c2e7c7ddb2f6)) + (pad "J23" smd circle (at 4.445 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f6c32efd-5772-4988-9098-f457e20da68e)) + (pad "J24" smd circle (at 4.445 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5856e1d4-ce85-4a9b-ae71-b9d4802c90b3)) + (pad "J25" smd circle (at 4.445 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8a611206-1391-4a94-a6dc-ca77d207122c)) + (pad "J26" smd circle (at 4.445 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f2b0a940-6977-476d-ad27-bde700088385)) + (pad "J27" smd circle (at 4.445 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e3dec9af-6e6a-4542-97dc-60edefacf2c7)) + (pad "J28" smd circle (at 4.445 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp acf32160-fbe5-402f-a4b1-3b2251cf541d)) + (pad "J29" smd circle (at 4.445 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 09f5a0df-5e00-452e-be3e-db6e17a207e7)) + (pad "J30" smd circle (at 4.445 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c687064d-4f6c-436f-ae64-82567e5e5e61)) + (pad "J31" smd circle (at 4.445 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e89a05ca-d0ec-42ad-8c87-833b45d06cb8)) + (pad "J32" smd circle (at 4.445 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4745fc50-3f13-459e-b9c9-44dc47e43003)) + (pad "J33" smd circle (at 4.445 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d98c3ce5-350f-4ab7-bf95-c79de40ace86)) + (pad "J34" smd circle (at 4.445 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp be8969ca-8537-4930-8db5-22cc34ca8512)) + (pad "J35" smd circle (at 4.445 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8bd268fa-ca11-466f-b6d3-21b8df8bda9e)) + (pad "J36" smd circle (at 4.445 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp af4f8f5d-b931-435b-a4a3-a26165a64ade)) + (pad "J37" smd circle (at 4.445 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 7c7e6c0f-5781-4aba-9561-e7ed81b0e35d)) + (pad "J38" smd circle (at 4.445 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0b8c93c3-a78c-4e88-bff9-82d81cffc927)) + (pad "J39" smd circle (at 4.445 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0b8236c7-14ed-4592-810c-9eb6f7dae0b9)) + (pad "J40" smd circle (at 4.445 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0a6591d4-58a0-4456-99f8-721b5ed6c47f)) + (pad "K1" smd circle (at 5.715 -24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp afa5e9ca-d693-4afc-8c09-9a781ff101ce)) + (pad "K2" smd circle (at 5.715 -23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 9dda720e-c530-4fa0-832c-87c706472a9a)) + (pad "K3" smd circle (at 5.715 -22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d199605c-c37e-4484-b3dd-37daf7b5390d)) + (pad "K4" smd circle (at 5.715 -20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 34189ecd-9b3c-4edf-ac14-6d17d0c58f98)) + (pad "K5" smd circle (at 5.715 -19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ae60bdc4-ec43-4d87-9d62-5a6b696c29a7)) + (pad "K6" smd circle (at 5.715 -18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 02fd0d3d-59f4-4060-983b-1c3a66cdcf0c)) + (pad "K7" smd circle (at 5.715 -17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 824292bd-de65-4d63-9965-2d1f435157d5)) + (pad "K8" smd circle (at 5.715 -15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 61505132-2dc9-46a6-96d4-a78532487564)) + (pad "K9" smd circle (at 5.715 -14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3593b730-9618-4c8a-8fd8-bccb66b5cc93)) + (pad "K10" smd circle (at 5.715 -13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e9682024-1c1e-4955-aa71-bbcaa75abed3)) + (pad "K11" smd circle (at 5.715 -12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 5dac3c6a-0646-4e92-a488-5c84e70fb9d8)) + (pad "K12" smd circle (at 5.715 -10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp f5929643-4ae6-4a73-9ce0-144df109df82)) + (pad "K13" smd circle (at 5.715 -9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp ac4c274e-9017-481c-b20d-f9580f26e443)) + (pad "K14" smd circle (at 5.715 -8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 94e6fd2d-1d17-4bbc-9f6d-ae47361cf773)) + (pad "K15" smd circle (at 5.715 -6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1c92bd59-fe69-4c6e-848a-e48a8666fcbc)) + (pad "K16" smd circle (at 5.715 -5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 83f5838c-d781-4b43-8ec8-1429f5e48455)) + (pad "K17" smd circle (at 5.715 -4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 415ad6f9-370a-409f-9825-7e725718a4ed)) + (pad "K18" smd circle (at 5.715 -3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp d29aa0f8-d41e-4f45-be96-f00c56f90cd1)) + (pad "K19" smd circle (at 5.715 -1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp e965ee7b-5540-4216-9ff7-3787190cd804)) + (pad "K20" smd circle (at 5.715 -0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 53b74006-677e-4f3b-92c5-412d8b074d7a)) + (pad "K21" smd circle (at 5.715 0.64 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 0521fbfd-d44e-410b-95b6-6425af69cdb2)) + (pad "K22" smd circle (at 5.715 1.905 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b0142cbb-8e16-468b-8d85-0d4e580dfce9)) + (pad "K23" smd circle (at 5.715 3.175 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp da7c0d6e-1a38-471a-b411-f18501acc407)) + (pad "K24" smd circle (at 5.715 4.445 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dfbc2505-a04d-4b7f-afe0-646ea9363ca7)) + (pad "K25" smd circle (at 5.715 5.715 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp b1553a6f-95b6-4ff1-92d0-072eb22be7be)) + (pad "K26" smd circle (at 5.715 6.985 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 6ebe8aeb-7420-44af-b3e7-11661c414d4b)) + (pad "K27" smd circle (at 5.715 8.255 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp c1665b54-bdca-4b93-99e5-7928cde5b7f4)) + (pad "K28" smd circle (at 5.715 9.525 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 55f2ba1d-734f-4bda-868e-101500cf07eb)) + (pad "K29" smd circle (at 5.715 10.795 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 95d6fd10-5dc9-4319-a2e1-dce628d2bceb)) + (pad "K30" smd circle (at 5.715 12.065 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp dd970685-c341-4488-871b-3e792322d14b)) + (pad "K31" smd circle (at 5.715 13.335 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 084c21e8-315a-4dad-9f8b-c2971f1a5ddc)) + (pad "K32" smd circle (at 5.715 14.605 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 1da63b10-c28a-464c-8264-c66bbbb08e4d)) + (pad "K33" smd circle (at 5.715 15.875 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 62fd0d81-440f-4a58-bb74-9875bec6a9ae)) + (pad "K34" smd circle (at 5.715 17.145 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 509facba-c9a4-4ffb-a27d-e627542b9bdc)) + (pad "K35" smd circle (at 5.715 18.415 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 942d532b-be83-4ff9-b1c4-4e0172ed8428)) + (pad "K36" smd circle (at 5.715 19.685 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 3441381f-7334-4876-a40c-4addddeb004a)) + (pad "K37" smd circle (at 5.715 20.955 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 17e7765c-c073-4ba2-8bb6-2c9e4490bec6)) + (pad "K38" smd circle (at 5.715 22.225 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 8631a623-2e30-4bd5-bbab-c4493c27e171)) + (pad "K39" smd circle (at 5.715 23.495 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 98867dfd-b006-4311-9e96-a19f404c560c)) + (pad "K40" smd circle (at 5.715 24.765 90) (size 0.64 0.64) (layers "F.Cu" "F.Paste" "F.Mask") (tstamp 4810fc54-e648-40cd-9c4d-1eabe4661dfd)) + (model "${KICAD6_3DMODEL_DIR}/Connector_Samtec.3dshapes/Samtec_FMC_ASP-134602-01_10x40_P1.27mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) +)