From 90dffeed3ea3e400eef1847ddf841036c09de686 Mon Sep 17 00:00:00 2001 From: "Salvador E. Tropea" Date: Mon, 30 Dec 2024 08:34:52 -0300 Subject: [PATCH] [Draw Fancy Stackup][Changed] Micro vias drawing To look closer to real world, they only span 2 layers and they must be stacked to span more layers. --- CHANGELOG.md | 3 + docs/source/Changelog.rst | 4 + kibot/pre_draw_fancy_stackup.py | 21 +- .../board_samples/kicad_8/vias_test.kicad_pcb | 3957 ++++++++++++----- 4 files changed, 2811 insertions(+), 1174 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71ab69c2..7e144081 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,6 +88,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Default temporal layer for internal use is now "Margin", instead of "User.9" +- Draw Fancy Stackup: + - Micro vias to look closer to real world, they only span 2 layers and they + must be stacked to span more layers. ## [1.8.2] - 2024-10-28 diff --git a/docs/source/Changelog.rst b/docs/source/Changelog.rst index 502526bc..10b5a67c 100644 --- a/docs/source/Changelog.rst +++ b/docs/source/Changelog.rst @@ -140,6 +140,10 @@ Changed - Default temporal layer for internal use is now “Margin”, instead of “User.9” +- Draw Fancy Stackup: + + - Micro vias to look closer to real world, they only span 2 layers + and they must be stacked to span more layers. [1.8.2] - 2024-10-28 -------------------- diff --git a/kibot/pre_draw_fancy_stackup.py b/kibot/pre_draw_fancy_stackup.py index 7cf43f24..8da53ae7 100644 --- a/kibot/pre_draw_fancy_stackup.py +++ b/kibot/pre_draw_fancy_stackup.py @@ -199,8 +199,8 @@ def draw_normal_buried_via(g, x, y, w, h, tlayer, clearance, hole_size): def draw_microvia(g, x, y, w, h, tlayer, clearance, via_w, hole_size, via_annular_w, copper_cnt, type): - layer_cnt = GS.board.GetCopperLayerCount() - if type == 'MT' and copper_cnt < layer_cnt/2: + GS.board.GetCopperLayerCount() + if type == 'MT': left_points = [] left_points.append((int(x+clearance), y)) left_points.append((int(x+w/2-hole_size), y)) @@ -223,7 +223,7 @@ def draw_microvia(g, x, y, w, h, tlayer, clearance, via_w, hole_size, via_annula right_filler.append((int(via_annular_w+x-w/2+via_w/4), y+h)) right_filler.append((int(via_annular_w+x), y+h)) draw_poly(g, right_filler, tlayer, filled=True) - elif type == 'MB' and copper_cnt > layer_cnt/2: + elif type == 'MB': left_points = [] left_points.append((int(x+clearance), y+h)) left_points.append((int(x+w/2-hole_size), y+h)) @@ -246,7 +246,7 @@ def draw_microvia(g, x, y, w, h, tlayer, clearance, via_w, hole_size, via_annula right_filler.append((int(via_annular_w+x-w/2+via_w/4), y)) right_filler.append((int(via_annular_w+x), y)) draw_poly(g, right_filler, tlayer, filled=True) - else: + else: # MS draw_rect(g, int(x+clearance), y, int(w-2*clearance), h, tlayer, filled=True) @@ -562,7 +562,7 @@ def update_drawing_group(g, pos_x, pos_y, width, tlayer, ops, gerber, via_layer_ offset = via_annular_w draw_normal_buried_via(g, x+w-offset/2, int(layer.y + font_w/2), offset, font_w, tlayer, clearance, via_hole_w) - elif draw == 'MT' or draw == 'MB': # micro-via + elif draw == 'MT' or draw == 'MB' or draw == 'MS': # micro-via offset = via_annular_w draw_microvia(g, x+w-offset/2, int(layer.y + font_w/2), offset, font_w, tlayer, clearance, via_w, microvia_hole_w, via_annular_w, copper_cnt, draw) @@ -598,8 +598,11 @@ def update_drawing_group(g, pos_x, pos_y, width, tlayer, ops, gerber, via_layer_ def create_stackup_matrix(stackup, via_layer_pairs, draw_vias): mat = [] # This will hold the matrix (list of lists) i = 0 # Track the current layer index + before_core = True - for _ in stackup: + for la in stackup: + if la.type == 'core': + before_core = False # Create a row with empty strings (instead of zeros or numbers) if draw_vias: mat_row = [''] * (len(via_layer_pairs) * 2 + 1) @@ -620,21 +623,21 @@ def create_stackup_matrix(stackup, via_layer_pairs, draw_vias): if via_type in [VIATYPE_THROUGH, VIATYPE_BLIND_BURIED]: mat_row[2 * j + 1] = 'T' elif via_type == VIATYPE_MICROVIA: - mat_row[2 * j + 1] = 'MT' + mat_row[2 * j + 1] = 'MT' if before_core else 'MS' elif i > via_top_layer and i < via_bottom_layer: # Middle layer of the via if via_type in [VIATYPE_THROUGH, VIATYPE_BLIND_BURIED]: mat_row[2 * j + 1] = 'M' elif via_type == VIATYPE_MICROVIA: - mat_row[2 * j + 1] = 'MM' + mat_row[2 * j + 1] = 'MM' if la.type != 'copper' else ('MT' if before_core else 'MB') elif i == via_bottom_layer: # Bottom layer of the via if via_type in [VIATYPE_THROUGH, VIATYPE_BLIND_BURIED]: mat_row[2 * j + 1] = 'B' elif via_type == VIATYPE_MICROVIA: - mat_row[2 * j + 1] = 'MB' + mat_row[2 * j + 1] = 'MS' if before_core else 'MB' # Move to the next layer in the stackup i += 1 diff --git a/tests/board_samples/kicad_8/vias_test.kicad_pcb b/tests/board_samples/kicad_8/vias_test.kicad_pcb index 2c15214b..c57de1dd 100644 --- a/tests/board_samples/kicad_8/vias_test.kicad_pcb +++ b/tests/board_samples/kicad_8/vias_test.kicad_pcb @@ -3,7 +3,7 @@ (generator "pcbnew") (generator_version "8.0") (general - (thickness 1.6) + (thickness 1.57) (legacy_teardrops no) ) (paper "A4") @@ -11,6 +11,8 @@ (0 "F.Cu" signal) (1 "In1.Cu" signal) (2 "In2.Cu" signal) + (3 "In3.Cu" signal) + (4 "In4.Cu" signal) (31 "B.Cu" signal) (32 "B.Adhes" user "B.Adhesive") (33 "F.Adhes" user "F.Adhesive") @@ -58,7 +60,7 @@ ) (layer "dielectric 1" (type "prepreg") - (thickness 0.1) + (thickness 0.01) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) @@ -68,8 +70,8 @@ (thickness 0.035) ) (layer "dielectric 2" - (type "core") - (thickness 1.24) + (type "prepreg") + (thickness 0.01) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) @@ -79,8 +81,30 @@ (thickness 0.035) ) (layer "dielectric 3" + (type "core") + (thickness 1.3) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "In3.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 4" + (type "prepreg") + (thickness 0.01) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "In4.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 5" (type "prepreg") - (thickness 0.1) + (thickness 0.01) (material "FR4") (epsilon_r 4.5) (loss_tangent 0.02) @@ -641,295 +665,326 @@ ) ) ) + (gr_rect + (start 173.754797 56.769908) + (end 173.916874 58.650438) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "004f4aa2-5348-466d-93fc-7bc0e3ec94bd") + ) (gr_line - (start 191.726506 63.559492) - (end 190.916984 62.74997) + (start 187.54173 67.112823) + (end 186.789518 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "000c424b-fd9c-4b8a-a743-e99148fd18db") + (uuid "00647cbd-a85f-4955-9de2-1063abe6dce9") ) (gr_line - (start 192.536029 54.654751) - (end 193.836184 54.654751) + (start 184.532882 67.112823) + (end 184.181789 66.76173) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "00dbb8ad-ec11-4e55-9a02-6c93e567166b") + (uuid "0122494a-2c1a-4228-a0b9-99d68cf7cf62") ) (gr_rect - (start 178.45101 58.09522) - (end 180.617935 58.499981) + (start 183.479453 57.898226) + (end 183.64153 59.778756) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "01801f15-a21b-4d75-8ef9-80e794f87372") + (uuid "0268ef84-7ff9-44b0-b021-026ed368be96") ) - (gr_line - (start 186.787525 60.928546) - (end 187.768792 59.947279) + (gr_rect + (start 195.52722 51.128318) + (end 220 72.002201) (stroke - (width 0.01) + (width 0.15) (type default) ) + (fill none) (layer "Cmts.User") - (uuid "0453e366-2c9b-4a75-b001-0eac9dc341a0") + (uuid "03904012-b049-465a-ba7c-73c7d7cf3fd4") ) - (gr_line - (start 180.834628 57.488078) - (end 180.025106 56.678556) + (gr_rect + (start 177.428556 55.64159) + (end 177.590633 57.52212) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "0632eb08-052f-4205-bf43-befe56c414db") + (uuid "03f350cd-a050-4103-b887-45a35966ea3f") ) (gr_rect - (start 178.234318 59.309502) - (end 184.30171 60.928546) + (start 170 57.52212) + (end 173.646745 57.898226) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "06d49860-6a17-469c-8257-f761f7cfb888") + (uuid "03f971e8-532c-4e17-81e6-41befc6eb80d") ) (gr_line - (start 191.87365 60.928546) - (end 192.536028 60.266168) + (start 180.129848 64.856187) + (end 179.377636 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "090b68da-fa99-4a9e-aca8-c7595fc156d4") + (uuid "04c256e6-fe54-4c32-a731-dd0970a52015") ) (gr_line - (start 185.25033 57.488078) - (end 185.168481 57.406229) + (start 180.595256 56.957961) + (end 179.843044 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "0a641318-ad75-47bd-ba8a-cd6c3c1b6419") + (uuid "04d3b945-30a5-4ddc-a4aa-f656a051a31c") ) - (gr_rect - (start 184.821772 56.071414) - (end 185.05291 58.095219) + (gr_poly + (pts + (xy 190.86749 65.796452) (xy 190.664893 65.420346) (xy 190.86749 65.420346) + ) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "0b1c396b-fa90-4dae-9a71-472f5bf6a6c3") + (uuid "04eb9081-1a33-44d4-b9b5-6541742b6528") ) (gr_line - (start 192.536028 57.488078) - (end 191.726506 56.678556) + (start 185.86074 59.214597) + (end 185.108528 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "0bb1dba9-6a6b-463d-84e4-61a24afe7110") + (uuid "05a8d7f2-97fd-4030-96b6-18b21aebd87c") ) - (gr_rect - (start 177.945394 58.49998) - (end 178.118748 61.738067) + (gr_line + (start 174.457133 62.411498) + (end 175.961557 60.907074) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "0ce04bf8-456e-4acd-801d-37c12516b019") + (uuid "064a2aa0-aa11-4d6f-9cc9-436ca18cac5d") ) (gr_rect - (start 174.983929 64.166634) - (end 180.617936 64.571395) + (start 176.996349 56.769908) + (end 177.158426 58.650438) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "0e16c28c-f201-4dd7-b7af-d0ca37312ffb") + (uuid "06cfa0cf-54a5-4a38-b42f-93f54414ea41") ) (gr_rect - (start 174.478313 62.142828) - (end 174.651667 64.166633) + (start 180.237901 60.154862) + (end 180.399978 63.16371) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "18839960-6cad-4fd7-9654-d7262c698696") + (uuid "0951501a-886c-4601-9fb9-9a54560e0fae") ) (gr_rect - (start 181.918092 61.738068) - (end 184.085017 62.142829) + (start 181.142834 65.420346) + (end 183.3714 65.796452) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "1884bbec-ed95-4b70-a4a5-0f80d067de0e") + (uuid "09cb28cd-09e4-40d3-bf83-a5c07166b224") ) (gr_line - (start 180.025106 57.488078) - (end 179.215584 56.678556) + (start 171.390109 56.957961) + (end 170.637897 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "1aa542dc-9a57-4335-8b8f-679e23d4cb90") + (uuid "0a13d1e0-fad7-4b3d-b061-034383fc0244") ) - (gr_poly - (pts - (xy 187.552099 64.571394) (xy 187.768792 64.166633) (xy 187.552099 64.166633) - ) + (gr_rect + (start 177.901282 55.265484) + (end 186.410355 55.64159) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "1ad39f9a-dd41-4c6e-96e2-a91cf31a2374") + (uuid "0a46ad44-80a0-49ed-8a0d-f37b76c18c9a") ) (gr_rect - (start 185.168481 56.678556) - (end 192.536028 57.488078) + (start 183.479453 62.411498) + (end 183.64153 64.292028) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "1b1634b5-ae46-4e8b-a899-a20e3edbcb6a") + (uuid "0beb0ae3-e1ea-4220-865e-1d4901171180") ) - (gr_line - (start 170 60.928546) - (end 171.619044 59.309502) + (gr_rect + (start 173.754797 63.539816) + (end 173.916874 65.420346) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "1c119a2a-3aee-4c66-b14f-ffca80ec4cb0") + (uuid "0c32b305-4487-434b-801f-e64b0ad34dcb") ) - (gr_poly - (pts - (xy 185.385173 55.666653) (xy 185.168481 56.071414) (xy 185.385173 56.071414) - ) + (gr_line + (start 185.108528 56.957961) + (end 184.356316 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "1dc257f3-7ac1-483a-a83a-57e4a0c945be") + (uuid "0cf7f670-1fd2-4f08-9fc6-d469e27f855f") ) (gr_line - (start 192.536029 63.154731) - (end 193.836184 63.154731) + (start 187.190637 62.411498) + (end 188.695061 60.907074) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "1e6d924b-5f89-4218-bff7-e46b6542e3a9") + (uuid "0f3277c4-5989-4545-938f-9c228e6bb066") ) - (gr_poly - (pts - (xy 181.918092 55.666653) (xy 181.701399 56.071414) (xy 181.918092 56.071414) - ) + (gr_rect + (start 170 68.899327) + (end 194.311639 69.08738) (stroke - (width 0.01) + (width 0.15) (type default) ) - (fill solid) + (fill none) (layer "Cmts.User") - (uuid "207a9c3a-13cd-4353-9a02-f540eb9f517a") + (uuid "10e01ff2-2ab6-4784-afe4-c016bb5b8e7a") ) (gr_line - (start 192.536028 63.559492) - (end 191.726506 62.74997) + (start 192.807214 64.856187) + (end 192.055002 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "21c52c54-37e0-4e4f-8fd0-971c58cd9997") + (uuid "12c9c056-c572-452f-beb4-95019cb2086e") ) - (gr_line - (start 192.536029 52.226185) - (end 193.836184 52.226185) + (gr_rect + (start 170 51.974557) + (end 194.311639 52.16261) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "1337f969-8590-4a0c-a987-bd997822e161") + ) + (gr_rect + (start 187.099186 55.64159) + (end 187.315289 57.52212) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "22d8d0a4-4ccf-4bda-a8f4-b107607bf8bd") + (uuid "155bfc75-8fee-4660-a325-e68c3cda13d0") ) (gr_rect - (start 170 52.124995) - (end 192.536029 52.327375) + (start 177.698685 58.462385) + (end 180.129848 59.214597) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "23edfcab-403c-4572-acd6-11b9a8888c22") + (uuid "161482ec-a3c5-46b1-beff-2963bf6da220") ) (gr_line - (start 190.107462 57.488078) - (end 189.29794 56.678556) + (start 189.046154 67.112823) + (end 188.293942 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "24926d91-bb5f-4d2f-aeb2-cb8c526fbdcc") + (uuid "172b0d79-84e4-4c2f-bab7-93853079091d") ) - (gr_rect - (start 174.016035 62.142828) - (end 174.189389 64.166633) + (gr_line + (start 189.798366 67.112823) + (end 189.046154 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "17481bba-ed5c-49c0-8e0f-a130338b30e8") + ) + (gr_line + (start 170.637897 64.856187) + (end 170 64.21829) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "26112bd5-ef29-4832-8c29-5468f565d3f9") + (uuid "18fe0e85-f721-4e68-bfb5-e731330cbceb") ) (gr_line - (start 183.09145 60.928546) - (end 184.30171 59.718286) + (start 170 50) + (end 170 50) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "28658d33-ed99-459d-90ad-08a205a64cba") + (uuid "190163da-1e4e-4f6f-b32a-6005b0affd87") ) (gr_poly (pts - (xy 180.733506 64.571394) (xy 181.09466 64.571394) (xy 181.181337 64.166633) (xy 180.950198 64.166633) + (xy 186.518408 57.52212) (xy 186.856069 57.52212) (xy 186.937108 57.898226) (xy 186.721005 57.898226) ) (stroke (width 0.01) @@ -937,956 +992,1023 @@ ) (fill solid) (layer "Cmts.User") - (uuid "28926c78-2fbb-4688-a0ac-b7702fd56dc0") + (uuid "19677679-f289-4a88-9759-d939af47af8d") ) (gr_rect - (start 181.354691 56.071414) - (end 181.585829 58.095219) + (start 170 58.462385) + (end 173.646745 59.214597) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "196ff75c-0bec-4331-8824-3264d2a862f5") + ) + (gr_rect + (start 173.754797 60.154862) + (end 173.916874 63.16371) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "29b07ab8-39c6-4c98-bb50-9f855e690a62") + (uuid "1a590839-06b4-447d-a467-c59fb234afe2") ) (gr_line - (start 175.977496 63.559492) - (end 175.167974 62.74997) + (start 186.037306 67.112823) + (end 185.285094 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "29be2467-8a1a-4531-8f29-77eb2561218a") + (uuid "1b20a7df-ac3c-4590-b0fd-3f81fb0366d5") + ) + (gr_line + (start 188.293942 56.957961) + (end 187.54173 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "1b819622-1d94-4dc5-bc70-c839d1de64c3") ) (gr_rect - (start 174.478313 55.666653) - (end 174.868359 56.071414) + (start 174.187004 65.796452) + (end 174.349081 67.676982) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "2adcb2af-3651-4c85-a161-458d0d435aa6") + (uuid "1bfb4b19-3eae-4966-80ee-16050231220c") ) (gr_rect - (start 174.478313 56.071414) - (end 174.651667 58.095219) + (start 183.91166 63.539816) + (end 184.073737 65.420346) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "2eeaeaf7-05ce-42ca-942b-9248d053098b") + (uuid "1c3e385b-2637-4687-99b8-e239afc32fe3") ) (gr_rect - (start 180.950198 62.142828) - (end 181.181336 64.166633) + (start 183.479453 63.539816) + (end 183.64153 65.420346) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "2fdd6088-4740-4a36-9cf9-0c15f1767f14") + (uuid "1d4c01cb-e727-4597-9224-3b92ed00135e") ) - (gr_line - (start 184.530703 63.559492) - (end 183.721181 62.74997) + (gr_rect + (start 180.940237 63.16371) + (end 183.3714 63.539816) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "31538765-297e-4d7a-9de0-b7825d8ebdc8") + (uuid "1e982547-f983-487b-9dae-9b478f87dc4f") ) (gr_line - (start 179.853362 60.928546) - (end 181.472406 59.309502) + (start 179.843044 56.957961) + (end 179.090832 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "35661d7c-22f7-4a91-a89f-4e1004c69cd3") + (uuid "1f4c4c2a-491c-49b6-b8ea-f85c510f87b9") ) - (gr_line - (start 192.536029 61.940448) - (end 193.836184 61.940448) + (gr_rect + (start 180.035304 57.52212) + (end 180.399978 57.898226) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "35c814ad-2ff3-4b64-97aa-876a5b8c9620") + (uuid "1f7c2d1e-a356-4bf4-8004-94dfb8a3301b") ) (gr_line - (start 177.59654 63.559492) - (end 176.787018 62.74997) + (start 173.646745 59.214597) + (end 172.894533 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "35f2094b-91ea-49c4-8aeb-2107c4a4eacf") + (uuid "212f6554-54a1-451d-a236-da5967976229") ) (gr_rect - (start 185.385173 61.738068) - (end 187.768791 62.142829) + (start 183.91166 57.898226) + (end 184.073737 59.778756) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "378b84f0-15e3-4e87-ac20-4983f0b6f696") + (uuid "2217700d-9e62-44ea-918c-420dc8cbc5b6") ) - (gr_poly - (pts - (xy 180.733506 55.666653) (xy 181.09466 55.666653) (xy 181.181337 56.071414) (xy 180.950198 56.071414) - ) + (gr_line + (start 188.35008 64.856187) + (end 187.597868 64.103975) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "39740cdd-3a0e-4b59-8527-6bcc45822c1a") + (uuid "22b60401-2505-4215-a1dc-5e8c0b65dbef") ) (gr_rect - (start 188.288854 62.142828) - (end 188.519992 64.166633) + (start 170 55.265484) + (end 173.444148 55.64159) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "398fdda5-9e3a-4f44-9b50-f30a74820995") + (uuid "22c68b45-c07a-4677-bb38-6d0553bbc3d1") ) (gr_line - (start 180.834628 63.559492) - (end 180.025106 62.74997) + (start 170 62.411498) + (end 171.504424 60.907074) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "3a029f5c-9225-4f2d-a1fe-1d6d85dcb790") + (uuid "2337cfb0-0dcc-4cad-a2a8-6c661459658e") ) - (gr_line - (start 178.234318 60.928546) - (end 179.853362 59.309502) + (gr_rect + (start 176.793752 55.265484) + (end 177.158426 55.64159) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "3a5ffef6-0775-458e-917d-8a306143bf0b") + (uuid "23bb2522-4724-4b0e-88f2-f30da4b472d2") ) (gr_rect - (start 193.836184 51.214283) - (end 220 68.821385) + (start 174.457133 59.778756) + (end 176.888296 60.154862) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "3b100640-fd1d-412d-9bf3-4cc57674816e") + (uuid "24c8f7b5-cb99-4def-a39b-789be2a65893") ) - (gr_poly - (pts - (xy 185.269604 62.142828) (xy 184.908449 62.142828) (xy 184.821772 61.738067) (xy 185.052911 61.738067) - ) + (gr_rect + (start 180.940237 58.462385) + (end 183.3714 59.214597) (stroke - (width 0.01) + (width 0.15) (type default) ) - (fill solid) + (fill none) (layer "Cmts.User") - (uuid "3ce45791-969a-41d7-bb55-fdfe7db94444") + (uuid "24f9f4a7-a272-497a-b3d4-55d45579b2b0") ) (gr_line - (start 172.281422 63.559492) - (end 171.4719 62.74997) + (start 185.285094 67.112823) + (end 184.532882 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "457ffb07-78e4-4e1a-a8fc-6a721dc79256") + (uuid "259286ee-af0b-4ad3-841d-51bbd1f0c628") ) (gr_line - (start 190.107462 63.559492) - (end 189.29794 62.74997) + (start 186.093444 64.856187) + (end 185.341232 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "46d8b29a-5b0a-4b08-8585-0da38dd9b928") + (uuid "26992865-baca-415c-99aa-8cbef87461ab") ) (gr_line - (start 182.102137 63.559492) - (end 181.701399 63.158754) + (start 171.390109 59.214597) + (end 170.637897 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "46f1fc29-71dc-4b78-a8f9-1d9d41d5e321") + (uuid "28531933-a00a-4b50-a1b7-3c2ec9d8ef8c") ) (gr_rect - (start 188.288854 60.928545) - (end 188.519992 62.95235) + (start 174.187004 55.64159) + (end 174.349081 57.52212) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "47080d5b-977d-46c6-9ad3-a19edd66a52a") + (uuid "287c0d55-75f3-4dd5-8fd5-34d9942fc6a1") ) (gr_rect - (start 174.767236 59.309502) - (end 177.367547 60.928546) + (start 180.670108 57.898226) + (end 180.832185 59.778756) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "476cf5d0-d63c-4555-8091-f808552a2371") + (uuid "28e48d06-8511-4470-b914-6b68fc72f785") ) - (gr_rect - (start 185.168481 58.09522) - (end 187.552099 58.499981) + (gr_line + (start 181.866976 59.214597) + (end 181.114764 58.462385) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "49af8185-49c8-46e6-93e8-099975039362") + (uuid "291e1d52-2417-48e2-ac6a-b8546bb02fd9") ) (gr_line - (start 192.536029 53.440468) - (end 193.836184 53.440468) + (start 189.854504 64.856187) + (end 189.102292 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "4b468e16-e592-4f1b-8f96-b05a3191812e") + (uuid "2979eb27-a7bf-4132-9e4d-4419178486df") ) - (gr_rect - (start 174.767236 61.738068) - (end 177.150854 62.142829) + (gr_line + (start 177.353704 67.112823) + (end 176.601492 66.360611) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "4c92c69b-66a5-40a6-9756-8a8229dd3866") + (uuid "2a7a794a-35c5-44f2-b202-18cab46190d9") ) (gr_line - (start 179.215584 63.559492) - (end 178.406062 62.74997) + (start 184.58902 64.856187) + (end 184.181789 64.448956) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "4d103cf3-25d3-4131-8e87-6cc0a361fbf5") + (uuid "2bdb5290-0cd3-4635-9f57-3d6db2364a1e") ) - (gr_line - (start 189.29794 57.488078) - (end 188.488418 56.678556) + (gr_poly + (pts + (xy 186.518408 55.265484) (xy 186.856069 55.265484) (xy 186.937108 55.64159) (xy 186.721005 55.64159) + ) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "4d83c632-838a-4113-8135-5b36f582af44") + (uuid "2cb01b37-dd1e-45f2-81f0-03eed9dbe4f9") ) (gr_line - (start 190.916984 57.488078) - (end 190.107462 56.678556) + (start 220 72.002201) + (end 220 72.002201) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "51019645-ae05-4dfa-ad3f-378a1eb7d1ee") + (uuid "2dabeb4e-9713-47bc-9683-522ab941e90f") + ) + (gr_rect + (start 184.181789 58.462385) + (end 186.612952 59.214597) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "2f1480db-5307-445c-b8b6-dfd3e7218ae8") ) (gr_line - (start 170 50) - (end 170 50) + (start 194.311638 59.214597) + (end 193.559426 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "52f3669b-a0a3-4afd-82c0-ec12bf64b668") + (uuid "2f1a0c5f-d84e-4dc5-b738-c8ee645da0b0") ) (gr_rect - (start 187.884361 62.142828) - (end 188.115499 64.166633) + (start 183.276856 57.52212) + (end 183.64153 57.898226) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "531a049e-2991-4167-8b95-c5d0e84e7878") + (uuid "2f97097a-1328-4ae1-8e4e-4bfe9a5fc1de") ) (gr_rect - (start 174.016035 58.49998) - (end 174.189389 61.738067) + (start 174.457133 56.205749) + (end 176.888296 56.957961) (stroke - (width 0.01) + (width 0.15) (type default) ) - (fill solid) + (fill none) (layer "Cmts.User") - (uuid "54c34725-3f9c-40c9-8f05-b20e389b8064") + (uuid "30596a92-a3a0-4e93-8646-9f3bbd8bf4c0") ) - (gr_rect - (start 188.852255 58.09522) - (end 192.536028 58.499981) + (gr_line + (start 186.612952 56.957961) + (end 185.86074 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "557c177f-b568-416a-a5d3-a11ad3ff2b8f") + (uuid "31170886-46d4-4a4a-bdcc-0a09f07c7fd8") ) (gr_line - (start 181.873144 57.488078) - (end 181.701399 57.316333) + (start 180.940237 62.411498) + (end 182.444661 60.907074) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "55db4ea8-3211-4e9a-9211-f792a4d9dec7") + (uuid "32191a42-fe70-4ee6-975f-23afc736a4db") ) - (gr_line - (start 189.29794 63.559492) - (end 188.635562 62.897114) + (gr_rect + (start 189.962556 63.539816) + (end 190.178659 65.420346) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "55ffab34-f427-4733-a83b-e45fa5766d16") + (uuid "333a64fa-c7b3-4746-a960-fe999087d082") ) (gr_rect - (start 188.635562 62.74997) - (end 192.536028 63.559492) + (start 174.457133 58.462385) + (end 176.888296 59.214597) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "5701ee8f-a13f-4e43-b1ef-ec73b4a97494") + (uuid "35ea0617-8e5e-4d03-b544-7f24c60a9198") ) (gr_line - (start 192.536029 64.369014) - (end 193.836184 64.369014) + (start 189.046154 56.957961) + (end 188.293942 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "5715e354-0140-4181-9f7b-08b437255c7f") + (uuid "35ea6d83-60e2-490a-9562-3b59e36c9d81") ) - (gr_rect - (start 187.667668 58.095219) - (end 188.736684 58.49998) + (gr_poly + (pts + (xy 187.517886 55.265484) (xy 187.180224 55.265484) (xy 187.099186 55.64159) (xy 187.315289 55.64159) + ) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "577a026a-9cdb-4fa2-9146-0d6d6fba20db") + (uuid "36066773-abec-43f2-be1b-edbb391130b9") ) - (gr_rect - (start 185.385173 55.666654) - (end 192.536028 56.071415) + (gr_line + (start 194.311639 52.068583) + (end 195.52722 52.068583) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "58a5a6da-a481-4c61-a605-d7c19b82912d") + (uuid "36d8da40-a570-4377-a24b-8ccd1d8779cd") ) - (gr_line - (start 178.406062 57.488078) - (end 177.59654 56.678556) + (gr_rect + (start 184.181789 63.16371) + (end 189.651907 63.539816) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "59d6f103-f97d-4bcf-9a0b-9a78f990907b") + (uuid "3788b1c4-8e78-4ce7-a48c-62fa5355a17e") ) - (gr_line - (start 170.662378 57.488078) - (end 170 56.8257) + (gr_rect + (start 183.479453 59.026544) + (end 183.64153 60.907074) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "5b1a4110-887f-4471-a75d-e03ab8ce011e") + (uuid "37c9eb54-6ca2-49ab-99da-868ee0a8cfff") ) (gr_line - (start 173.238088 60.928546) - (end 173.900466 60.266168) + (start 171.390109 64.856187) + (end 170.637897 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "5b83aa82-8ca2-4bdb-aee4-21b1bc902843") + (uuid "37f3181b-0b7d-4913-a934-84e1c724da58") ) (gr_rect - (start 174.478313 64.166633) - (end 174.868359 64.571394) + (start 180.670108 59.026544) + (end 180.832185 60.907074) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "5bac19cb-0a86-402f-9149-cd478696b153") + (uuid "38680409-1eda-466d-8ef5-f7bad60d8c89") ) (gr_rect - (start 178.45101 61.738068) - (end 180.617935 62.142829) + (start 170 67.676982) + (end 173.444148 68.053088) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "5c4d4892-cd90-411c-9969-0fc40600616a") + (uuid "38886844-6913-4638-92bc-53c6a02110fe") ) - (gr_line - (start 175.167974 63.559492) - (end 174.767236 63.158754) + (gr_rect + (start 180.670108 57.52212) + (end 181.034782 57.898226) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "5c5563b1-45bc-4798-9b71-014094d63e38") + (uuid "38d21e01-3025-4cc8-bbf4-5a2a9494b223") ) (gr_line - (start 180.025106 63.559492) - (end 179.215584 62.74997) + (start 173.646745 64.856187) + (end 172.894533 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "5cc6bad6-cef7-4740-ba05-8e82236b2a4e") + (uuid "3b302e23-5e49-41bc-a7f6-997efba03d4b") ) - (gr_line - (start 175.167974 57.488078) - (end 174.767236 57.08734) + (gr_rect + (start 186.721005 57.898226) + (end 186.937108 59.778756) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "5e06e9be-c5cd-42bf-bb74-b3166d689fff") + (uuid "3b42eadf-f93e-4c62-8de7-c0df39b1c176") ) (gr_rect - (start 181.701399 62.74997) - (end 187.768791 63.559492) + (start 184.181789 64.103975) + (end 189.854504 64.856187) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "5fb871d9-eadf-424b-b13e-964d83e5b5fd") + (uuid "3bf80c64-27a7-44de-ae3b-21a9bea7b235") ) - (gr_rect - (start 174.767236 58.09522) - (end 177.150854 58.499981) + (gr_line + (start 175.383872 59.214597) + (end 174.63166 58.462385) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "602daf3e-c3e7-4d81-b7ec-58d4264a35fb") + (uuid "3caf34ad-9ff4-45ba-97a4-0b0ed6b8c7a3") ) - (gr_line - (start 192.536029 57.083317) - (end 193.836184 57.083317) + (gr_rect + (start 183.91166 65.796452) + (end 184.073737 67.676982) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "60937be9-a51e-4152-a0ad-1bdd86ebb47a") + (uuid "3e17d2e2-0cf9-4e98-968e-3dac2ab124f3") ) - (gr_line - (start 186.869374 57.488078) - (end 186.059852 56.678556) + (gr_rect + (start 181.142834 57.52212) + (end 183.168803 57.898226) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "609e84da-f1fe-41a0-ac7e-7fcf1fa1a54b") + (uuid "3e553fbd-f3a1-47ee-86cc-672514b630f5") ) (gr_line - (start 171.4719 63.559492) - (end 170.662378 62.74997) + (start 182.619188 59.214597) + (end 181.866976 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "618970dd-16f1-42ff-b044-25ec7dc8cb61") + (uuid "3fe5f85c-db05-4784-b397-dc71112af0e1") ) (gr_line - (start 183.492188 57.488078) - (end 182.682666 56.678556) + (start 179.377636 59.214597) + (end 178.625424 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "639f808d-63c7-49ee-be9c-1ce15b4c20cd") + (uuid "4059c2f0-0dc0-4a83-b328-543158c3b89e") ) - (gr_poly - (pts - (xy 188.736685 64.571394) (xy 188.375531 64.571394) (xy 188.288854 64.166633) (xy 188.519993 64.166633) - ) + (gr_line + (start 194.311639 70.121671) + (end 195.52722 70.121671) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "6403acb5-3723-496e-9ac5-373ab53f8ede") + (uuid "43eb26d9-52f3-463b-839f-b917022f4e55") ) - (gr_line - (start 173.090944 63.559492) - (end 172.281422 62.74997) + (gr_rect + (start 189.759959 63.16371) + (end 190.759437 63.539816) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "658efd4d-984f-4ced-b817-8fa29f287339") + (uuid "442fb699-de81-4d74-83b3-031b91e274bb") ) - (gr_rect - (start 173.799343 64.166633) - (end 174.189389 64.571394) + (gr_line + (start 191.30279 56.957961) + (end 190.550578 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "69ae269f-018e-4cb4-a6d2-b885820349ae") + (uuid "44407d83-b496-46d3-88fe-ff0624f385b1") ) (gr_rect - (start 174.478313 58.49998) - (end 174.651667 61.738067) + (start 176.996349 59.026544) + (end 177.158426 60.907074) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "6bea55f1-922f-4ac0-8c2e-a4008a903de1") + (uuid "44420582-7ecf-456a-886e-2d89083cfd0c") ) - (gr_poly - (pts - (xy 181.802522 55.666653) (xy 181.441368 55.666653) (xy 181.354691 56.071414) (xy 181.58583 56.071414) - ) + (gr_line + (start 174.63166 59.214597) + (end 174.457133 59.04007) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "6f008aab-411c-47dd-96e4-cb2fc51a745b") + (uuid "44a71e52-cf8f-48b4-a554-87ccfabca467") ) (gr_line - (start 192.536029 58.2976) - (end 193.836184 58.2976) + (start 192.807214 56.957961) + (end 192.055002 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "6f1de2f2-ce5a-43cb-92f4-33eee70622e6") + (uuid "45474360-6c72-4b98-a3d2-11caef4e7cbe") ) (gr_line - (start 177.59654 57.488078) - (end 176.787018 56.678556) + (start 178.858128 67.112823) + (end 178.105916 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "70c74950-a9b3-4f60-949e-8fb2f2e38f3f") + (uuid "460de490-282f-4c64-ae61-3796ca1d5de9") ) - (gr_rect - (start 174.767236 56.678556) - (end 180.834628 57.488078) + (gr_line + (start 188.293942 59.214597) + (end 187.54173 58.462385) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) (layer "Cmts.User") - (uuid "72ad05a1-bbf9-4197-8874-9dd08f4a4451") + (uuid "4691a046-21b7-4787-9950-a8ede25dad4a") ) - (gr_rect - (start 170 62.74997) - (end 173.900466 63.559492) + (gr_line + (start 179.203109 62.411498) + (end 180.129848 61.484759) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) (layer "Cmts.User") - (uuid "74c55753-6102-4954-bc39-39cf1f278f6a") + (uuid "480ee85e-a53e-4593-8155-e35c3f6dba92") ) (gr_line - (start 191.726506 57.488078) - (end 190.916984 56.678556) + (start 177.698685 62.411498) + (end 179.203109 60.907074) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "772e53a5-2e34-4d9e-af5b-5255ac305582") + (uuid "483462ae-fd8c-40cf-bbe7-aa3840269816") ) (gr_rect - (start 181.701399 56.678556) - (end 184.30171 57.488078) + (start 173.5522 55.265484) + (end 173.916874 55.64159) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "79a76175-4998-4bf5-987f-e1966221603d") + (uuid "4ab6cd40-c4a7-4875-933f-010fc9917f45") ) - (gr_rect - (start 174.016035 56.071414) - (end 174.189389 58.095219) + (gr_line + (start 194.311639 68.993353) + (end 195.52722 68.993353) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "79bb178d-b414-409c-b2b6-be7d322929ca") + (uuid "4ac589fa-c7fb-46bd-a951-c5d3e9fe5507") ) (gr_line - (start 181.472406 60.928546) - (end 183.09145 59.309502) + (start 181.866976 64.856187) + (end 181.114764 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "79e5743d-0aa2-4106-ac65-9e93382c5ab1") + (uuid "4ae202d4-3a49-4333-8ab6-baa8e4f33023") ) - (gr_rect - (start 187.884361 60.928545) - (end 188.115499 62.95235) + (gr_line + (start 189.798366 56.957961) + (end 189.046154 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "7d31680e-8954-4e2f-83fe-d2c5884fba98") + (uuid "4b71ac04-4dd9-48d2-9070-76f30692a443") ) (gr_rect - (start 170 56.678556) - (end 173.900466 57.488078) + (start 174.65973 55.265484) + (end 176.685699 55.64159) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "7f3d0782-48d7-4afb-90ac-0826f280e98a") + (uuid "4d9ac1df-0e1f-45fa-81bc-3595b5c5af71") ) (gr_rect - (start 181.354691 62.142828) - (end 181.585829 64.166633) + (start 187.625938 57.52212) + (end 194.311638 57.898226) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "804d83e4-9f29-4ebf-85d2-703e833617b2") + (uuid "4fb7278f-2e98-4dbe-bfad-62c715683203") ) - (gr_rect - (start 170 59.309502) - (end 173.900466 60.928546) + (gr_line + (start 186.845656 64.856187) + (end 186.093444 64.103975) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) (layer "Cmts.User") - (uuid "81fdde15-95c3-4841-800b-7042423cac03") + (uuid "4fdaf5b5-65f9-491a-bced-fbda47809d48") ) (gr_rect - (start 174.478313 57.285697) - (end 174.651667 59.309502) + (start 183.479453 65.796452) + (end 183.64153 67.676982) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "82239e29-6766-4413-abb9-bd744009c3f8") + (uuid "5058d14c-766c-4515-9da1-89b1eb4f7781") ) (gr_line - (start 192.536029 68.011863) - (end 193.836184 68.011863) + (start 182.619188 64.856187) + (end 181.866976 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "84dca7c9-0e77-455c-9380-e7d903ce2aab") + (uuid "50d8d936-4190-4f6c-a8e2-9c8a6657613d") ) (gr_line - (start 171.619044 60.928546) - (end 173.238088 59.309502) + (start 176.368788 64.856187) + (end 175.616576 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "851452be-4872-4481-8e6b-58f8f890e979") + (uuid "517c4d22-d175-464e-9863-f437b6acddfc") ) - (gr_poly - (pts - (xy 187.667668 64.571394) (xy 188.028823 64.571394) (xy 188.1155 64.166633) (xy 187.884361 64.166633) - ) + (gr_line + (start 174.63166 56.957961) + (end 174.457133 56.783434) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "85388bb0-38d3-47c8-9c8d-467c571e9540") + (uuid "51ab5048-8fd3-4bd1-b3ff-5ec0d373f228") ) (gr_rect - (start 188.635562 59.309502) - (end 192.536028 60.928546) + (start 177.428556 60.154862) + (end 177.590633 63.16371) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "87fe6e77-7934-4831-99c7-854fa1a07ad6") + (uuid "51ef0cc0-7db0-4a92-ae80-6600acbce246") ) - (gr_line - (start 174.767236 60.928546) - (end 176.38628 59.309502) + (gr_rect + (start 177.698685 57.52212) + (end 179.927251 57.898226) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "8ab89f6c-da1b-4189-bc35-57077310425b") + (uuid "5201cc88-b621-4670-a2d5-6c217a800c90") ) - (gr_poly - (pts - (xy 185.385173 62.142828) (xy 185.168481 61.738067) (xy 185.385173 61.738067) - ) + (gr_rect + (start 173.754797 55.64159) + (end 173.916874 57.52212) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "8b5405c7-7e18-41fe-af04-23310dbab7da") + (uuid "52da1f39-277e-4bad-812d-5f4055b20541") ) - (gr_line - (start 186.959269 63.559492) - (end 186.149747 62.74997) + (gr_rect + (start 187.625938 59.778756) + (end 194.311638 60.154862) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "8b6b498f-14be-4873-acf2-b06ac05603f2") + (uuid "52ee2629-7877-475f-80f5-27b06979e9c0") ) (gr_rect - (start 116 76) - (end 136 81) + (start 177.428556 57.898226) + (end 177.590633 59.778756) (stroke - (width 0.1) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "8bb06e45-2f17-4f8c-975c-343233a727b5") + (uuid "52efc193-d969-4fcc-9e4a-cf648f082b08") ) - (gr_line - (start 183.721181 63.559492) - (end 182.911659 62.74997) + (gr_rect + (start 173.754797 62.411498) + (end 173.916874 64.292028) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "8beb7c28-5ef7-438c-8310-db9f4d0f4e73") + (uuid "52fa9ee0-c381-4626-b0f6-6d0360ad70a8") ) (gr_rect - (start 173.799343 55.666653) - (end 174.189389 56.071414) + (start 174.187004 60.154862) + (end 174.349081 63.16371) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "8c0cd50b-33bf-4bee-b505-a32ee049e63d") + (uuid "53f445ee-f91f-4d62-ae17-e941241bfce0") ) (gr_line - (start 173.900466 63.559492) - (end 173.090944 62.74997) + (start 178.625424 59.214597) + (end 177.873212 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "8c59a1a3-c040-4d19-9bbf-9e2f484b124d") + (uuid "5413e3f1-92bd-4c79-b941-4cbc3c775508") ) - (gr_rect - (start 185.168481 59.309502) - (end 187.768792 60.928546) + (gr_line + (start 194.311639 71.249989) + (end 195.52722 71.249989) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) (layer "Cmts.User") - (uuid "94bdb55e-b907-4ba5-9c8a-421d5ed1c8c9") + (uuid "5469e886-430c-4593-a0f1-d92b339db77f") ) (gr_rect - (start 174.983929 55.666654) - (end 180.617936 56.071415) + (start 174.187004 59.026544) + (end 174.349081 60.907074) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "96de7d07-cb04-41f2-bf3b-5f7e7eb870ee") + (uuid "54ca266b-df2d-49db-8be6-ee2ff2e1cb1b") + ) + (gr_line + (start 186.789518 67.112823) + (end 186.037306 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "55f16221-65cc-4204-ae37-d0bf0dbdcc4a") + ) + (gr_line + (start 188.695061 62.411498) + (end 190.199485 60.907074) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "58ec8bc9-9957-4884-bc99-dc5ec665558c") ) (gr_rect - (start 170 61.738068) - (end 173.900466 62.142829) + (start 174.457133 57.52212) + (end 176.888296 57.898226) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "9c873835-73b6-44f0-9609-b26e093062a5") + (uuid "591fbfaa-2ae0-4f35-94c6-79282d06c356") ) (gr_rect - (start 170 53.339278) - (end 192.536029 53.541658) + (start 187.423341 56.205749) + (end 194.311638 56.957961) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "9d34092a-064d-4e2b-ab5b-c5179890ad71") + (uuid "5a954333-813e-4f76-ba42-13480af66e4d") ) - (gr_rect - (start 170 67.910673) - (end 192.536029 68.113053) + (gr_line + (start 190.199485 62.411498) + (end 191.703909 60.907074) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) (layer "Cmts.User") - (uuid "9d88ca05-b436-4861-83ba-535af33f5fda") + (uuid "5ad1382e-7f3d-4bab-b088-802a1c72237c") ) (gr_line - (start 192.536029 55.869034) - (end 193.836184 55.869034) + (start 188.293942 67.112823) + (end 187.54173 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "5b41fe66-b487-406c-ad2a-ccb9c863a008") + ) + (gr_rect + (start 180.237901 62.411498) + (end 180.399978 64.292028) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "9db755de-0dcc-41a0-8835-793c33bdc0ba") + (uuid "5c4ada4d-980b-477d-8a0f-b9bd40beb1e6") ) (gr_line - (start 178.406062 63.559492) - (end 177.59654 62.74997) + (start 194.311639 59.966809) + (end 195.52722 59.966809) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "9dfd5a58-05c6-4ff8-98c0-591fcd2da5e1") + (uuid "5db8381b-9212-4ef7-b7f4-58262d70dfe0") ) - (gr_poly - (pts - (xy 184.200587 62.142828) (xy 184.561741 62.142828) (xy 184.648418 61.738067) (xy 184.41728 61.738067) + (gr_rect + (start 177.698685 59.778756) + (end 180.129848 60.154862) + (stroke + (width 0.01) + (type default) ) + (fill solid) + (layer "Cmts.User") + (uuid "5e0743a1-6f69-41a0-9a60-e30fea459d23") + ) + (gr_rect + (start 184.384386 57.52212) + (end 186.410355 57.898226) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "a0cbce11-1a2c-42f1-91f3-e3dd22f7bdc4") + (uuid "5e1c8af4-d325-4394-aee0-b426304bf12d") ) (gr_rect - (start 170 65.482107) - (end 192.536029 65.684487) + (start 180.940237 64.103975) + (end 183.3714 64.856187) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "a22d05bf-f667-47fc-93a6-7b5eba99fcf6") + (uuid "5f558718-9987-4af6-8610-0ebc87d45d72") ) (gr_poly (pts - (xy 180.617936 64.571394) (xy 180.834629 64.166633) (xy 180.617936 64.166633) + (xy 186.410356 55.265484) (xy 186.612953 55.64159) (xy 186.410356 55.64159) ) (stroke (width 0.01) @@ -1894,72 +2016,73 @@ ) (fill solid) (layer "Cmts.User") - (uuid "a48a487b-44b5-4e4c-a8ca-b4ab95af8fed") + (uuid "5feec148-cb49-469f-81e7-f11da3d5a3bd") ) - (gr_rect - (start 177.945394 61.738067) - (end 178.33544 62.142828) + (gr_line + (start 176.601492 67.112823) + (end 175.84928 66.360611) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "a51ddc12-6d8a-495b-accd-42367a32ef55") + (uuid "60aede97-69da-4f86-b01f-8a45743a6f45") ) (gr_line - (start 171.4719 57.488078) - (end 170.662378 56.678556) + (start 173.008848 62.411498) + (end 173.646745 61.773601) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "a53770de-735f-4be6-ac93-eaf6820d8107") + (uuid "626f0ff0-7f4d-41ab-b66f-9ac562a02154") ) - (gr_line - (start 186.149747 63.559492) - (end 185.340225 62.74997) + (gr_rect + (start 177.698685 60.907074) + (end 180.129848 62.411498) (stroke - (width 0.01) + (width 0.15) (type default) ) + (fill none) (layer "Cmts.User") - (uuid "a69b279a-c4bb-4d48-bddf-2f673719d6f2") + (uuid "62adc539-ea87-4de9-b6d3-f89bf1e717ff") ) (gr_line - (start 186.059852 57.488078) - (end 185.25033 56.678556) + (start 187.54173 56.957961) + (end 187.423341 56.839572) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "aabd6a9f-bfef-48d8-a393-1ba5c820cde4") + (uuid "633608f8-1686-40be-abaa-22bf31d80694") ) - (gr_line - (start 185.340225 63.559492) - (end 184.530703 62.74997) + (gr_rect + (start 170 63.16371) + (end 173.646745 63.539816) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "ad8c275d-1da4-4351-aea8-101f046bfa66") + (uuid "6568220b-0fc6-4211-a97f-1395d84d3f87") ) (gr_line - (start 172.281422 57.488078) - (end 171.4719 56.678556) + (start 191.30279 64.856187) + (end 190.664893 64.21829) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "af739a70-9f9f-4819-9e74-3fe20f5600a0") + (uuid "6a8a6939-bfef-4347-9d20-d221655b90e8") ) (gr_poly (pts - (xy 184.200587 55.666653) (xy 184.561741 55.666653) (xy 184.648418 56.071414) (xy 184.41728 56.071414) + (xy 187.625938 55.265484) (xy 187.423341 55.64159) (xy 187.625938 55.64159) ) (stroke (width 0.01) @@ -1967,472 +2090,595 @@ ) (fill solid) (layer "Cmts.User") - (uuid "afc30462-c83c-409f-8df9-8dab221be52a") + (uuid "6bd53f38-f2ca-40ce-8e94-9ae311c05184") ) - (gr_rect - (start 174.016035 60.928545) - (end 174.189389 62.95235) + (gr_line + (start 172.142321 56.957961) + (end 171.390109 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "b061cdf5-53ef-4837-b520-fa408621b009") + (uuid "6bf950e5-a5c9-455c-a790-72bca2601fcd") ) - (gr_poly - (pts - (xy 185.269604 55.666653) (xy 184.908449 55.666653) (xy 184.821772 56.071414) (xy 185.052911 56.071414) - ) + (gr_line + (start 173.646745 56.957961) + (end 172.894533 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "b0fe41a7-d056-414a-b13f-4f52ba0705a2") + (uuid "6c04147b-2fb8-475d-8ea0-e0df2df004d3") ) - (gr_line - (start 190.916984 63.559492) - (end 190.107462 62.74997) + (gr_rect + (start 173.5522 67.676982) + (end 173.916874 68.053088) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "b5139cdf-1572-43e5-a47e-46faffde3caf") + (uuid "6c666828-c3c8-49bb-a204-296b91543212") ) (gr_line - (start 176.787018 57.488078) - (end 175.977496 56.678556) + (start 189.798366 59.214597) + (end 189.046154 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "b68f3f51-61c6-47cc-89de-98f7f434de1d") + (uuid "6c82bc8b-88bc-4dd0-9123-080b3ec70114") ) (gr_rect - (start 170 54.553561) - (end 192.536029 54.755941) + (start 180.940237 60.907074) + (end 183.3714 62.411498) (stroke (width 0.15) (type default) ) (fill none) (layer "Cmts.User") - (uuid "b6a9c228-1ccf-4daf-8b40-87c00943d028") + (uuid "6cae0760-beb6-42e2-8027-63f4f8187c02") ) (gr_line - (start 173.900466 57.488078) - (end 173.090944 56.678556) + (start 175.383872 56.957961) + (end 174.63166 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "b876c5b7-c794-47f5-a712-40b18ec26a94") + (uuid "6f112cd3-0d54-4cb3-ba28-51b0493dd850") ) (gr_rect - (start 188.288854 58.49998) - (end 188.519992 61.738067) + (start 183.91166 60.154862) + (end 184.073737 63.16371) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "bb66e10a-2737-47ec-8ae8-1339525138a9") + (uuid "6f841a7b-4d3e-43df-aaf0-233e11d58ee8") ) (gr_rect - (start 170 66.69639) - (end 192.536029 66.89877) + (start 180.035304 65.420346) + (end 180.399978 65.796452) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) + (layer "Cmts.User") + (uuid "6fedd0db-59d5-4a27-b101-46d0d869f666") + ) + (gr_rect + (start 180.237901 57.898226) + (end 180.399978 59.778756) + (stroke + (width 0.01) + (type default) + ) + (fill solid) (layer "Cmts.User") - (uuid "bfcc0def-a879-42a9-aea7-0ba440a82118") + (uuid "7038e9b5-537f-4ed6-a891-9fabca825acb") ) (gr_line - (start 220 68.821385) - (end 220 68.821385) + (start 185.686213 62.411498) + (end 187.190637 60.907074) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "c045515f-afe2-4f6f-8296-cbc6ce84a966") + (uuid "7271b05e-9c92-4393-bab2-d36211e278a0") ) - (gr_rect - (start 181.918092 64.166634) - (end 187.552099 64.571395) + (gr_line + (start 191.703909 62.411498) + (end 193.208333 60.907074) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "73ceb8c9-5e51-4b2e-936a-6d8660033831") + ) + (gr_poly + (pts + (xy 189.651908 65.796452) (xy 189.854505 65.420346) (xy 189.651908 65.420346) + ) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "c1358cb7-88a4-4260-99c5-66cb99d5cec7") + (uuid "742d21f4-e027-4c95-ae31-ea2396a1f598") ) (gr_line - (start 170.662378 63.559492) - (end 170 62.897114) + (start 189.102292 64.856187) + (end 188.35008 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "c23a9cb6-5b40-47e6-a6d4-ea6ce143dc03") + (uuid "754a6b76-4016-43c8-b7b8-0680598e1111") ) (gr_line - (start 182.911659 63.559492) - (end 182.102137 62.74997) + (start 185.108528 59.214597) + (end 184.356316 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "c6fa067d-050d-469d-be22-d1c020a4cde8") + (uuid "781cc2c5-92bb-4bb6-8916-fd2c9ecc9780") ) (gr_rect - (start 181.918092 58.09522) - (end 184.30171 58.499981) + (start 180.237901 63.539816) + (end 180.399978 65.420346) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "c724d3eb-fc00-4915-b8fd-ebb6b53eb91e") + (uuid "7b2b67d2-1ee1-4f2f-9d42-3c3afc0e1741") ) (gr_rect - (start 181.918092 55.666654) - (end 184.085017 56.071415) + (start 174.187004 57.898226) + (end 174.349081 59.778756) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "c899a74f-ca43-4299-9b41-a2997d2a79d2") + (uuid "7b4e6406-01b4-468d-8dca-73ed08e2bfe4") ) (gr_rect - (start 188.635562 61.738068) - (end 192.536028 62.142829) + (start 174.65973 67.676982) + (end 183.168803 68.053088) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "c99ad574-771d-46e6-ba1a-45589622d136") + (uuid "7b60dbbc-3c0e-4e37-afb9-ddca68a7e02b") ) - (gr_poly - (pts - (xy 180.617936 55.666653) (xy 180.834629 56.071414) (xy 180.617936 56.071414) - ) + (gr_rect + (start 170 59.778756) + (end 173.646745 60.154862) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "cd2d8d5a-a32a-4e4b-8d4e-1fe24812ec42") + (uuid "7b6b04b3-f747-4877-9ac9-9cdb926be969") ) - (gr_rect - (start 170 55.666654) - (end 173.683773 56.071415) + (gr_line + (start 191.30279 67.112823) + (end 190.550578 66.360611) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "cd9163e7-b6fe-4eb3-ad8c-417c5d14b1ff") + (uuid "7b76c287-3bb9-4851-88e5-5e092c00d6a0") ) - (gr_rect - (start 177.483117 58.49998) - (end 177.656471 61.738067) + (gr_line + (start 175.961557 62.411498) + (end 176.888296 61.484759) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "cde2b246-fa3c-486b-85ae-8504f9dcf56a") + (uuid "7d3a274d-75ac-4987-ab1f-eb3ed6287da7") ) - (gr_rect - (start 184.821772 58.49998) - (end 185.05291 61.738067) + (gr_line + (start 183.604104 56.957961) + (end 182.851892 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "7e1db0c5-b8f2-4eef-9e6f-6b4f7a04161f") + ) + (gr_line + (start 176.888296 59.214597) + (end 176.136084 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "7eb19569-e670-4103-ab73-7051cf825756") + ) + (gr_line + (start 192.055002 64.856187) + (end 191.30279 64.103975) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "cdfa65bc-90fc-4454-98a2-eb9971d5d7a6") + (uuid "7f3ce4ad-7f89-48a7-8104-a7cde9dc99df") ) (gr_rect - (start 184.41728 56.071414) - (end 184.648418 58.095219) + (start 177.428556 63.16371) + (end 177.79323 63.539816) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "ce92c91f-cded-4898-80a3-47954cb553cd") + (uuid "7f96ac79-5a5e-401b-aa07-928ff8841117") ) (gr_line - (start 176.787018 63.559492) - (end 175.977496 62.74997) + (start 179.090832 56.957961) + (end 178.33862 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "cff10522-a1bc-4270-934d-74417e0b98be") + (uuid "80a16ba4-89c2-4c4d-96bf-37b56e03ee36") ) - (gr_poly - (pts - (xy 181.802522 64.571394) (xy 181.441368 64.571394) (xy 181.354691 64.166633) (xy 181.58583 64.166633) - ) + (gr_line + (start 182.444661 62.411498) + (end 183.3714 61.484759) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "d24bf5b0-55c7-44b3-bdd1-bb0a86b8f890") + (uuid "80e43a72-ee9e-48d0-bcf5-ca292b3766cf") + ) + (gr_rect + (start 170 71.155963) + (end 194.311639 71.344016) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "81d8aca5-4717-46f6-a861-64abe07f50f3") + ) + (gr_rect + (start 187.423341 58.462385) + (end 194.311638 59.214597) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "83a0cf2c-7773-4f89-8638-2fdea25f8ff7") ) (gr_line - (start 190.254606 60.928546) - (end 191.87365 59.309502) + (start 185.341232 64.856187) + (end 184.58902 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "d3a30730-7fb2-43d9-85ed-3dc33aaa4b19") + (uuid "8451aa0f-80da-40f3-b9c0-76d7ed52908f") ) (gr_rect - (start 187.884361 58.49998) - (end 188.115499 61.738067) + (start 177.428556 55.265484) + (end 177.79323 55.64159) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "d441fe94-9ab8-40f6-8d75-3ff60602a9bf") + (uuid "8506848e-aa71-41c0-beef-6ce68a8a9fee") + ) + (gr_line + (start 176.136084 56.957961) + (end 175.383872 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "85aee5a6-b3c4-4be6-8f29-8131cdf8d5f6") ) (gr_line - (start 185.168481 60.928546) - (end 186.787525 59.309502) + (start 179.61034 67.112823) + (end 178.858128 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "d5cba1ae-e6d2-45ac-ae6c-67276258b2a6") + (uuid "85c8a4eb-9649-4d1a-82f9-42ae576a0b32") ) (gr_line - (start 192.536029 60.119024) - (end 193.836184 60.119024) + (start 182.619188 67.112823) + (end 181.866976 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "d696bedb-d77a-4ced-9463-e50cbafadf61") + (uuid "8a1ecbd1-3e5c-458e-ae64-61134ea40ab7") ) (gr_rect - (start 174.478313 60.928545) - (end 174.651667 62.95235) + (start 174.187004 55.265484) + (end 174.551678 55.64159) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "d7158fde-969c-4aff-b368-1026b2ffc6ae") + (uuid "8a975f8a-210b-42c5-b0f6-e1350467b1a9") ) (gr_line - (start 179.215584 57.488078) - (end 178.406062 56.678556) + (start 183.3714 67.112823) + (end 182.619188 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "d80b9b9e-a6b1-4084-bcd4-4a1270f31b9f") + (uuid "8b00dc52-7b01-4419-8b1d-875de94947b1") ) - (gr_rect - (start 174.016035 57.285697) - (end 174.189389 59.309502) + (gr_line + (start 184.356316 56.957961) + (end 183.604104 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "d8c73f36-2f6c-466a-9dcf-8d90f92018a2") + (uuid "8b477d3d-82a4-47f1-ba7a-c9c3c900dd6a") ) - (gr_rect - (start 180.733506 61.738067) - (end 181.802522 62.142828) + (gr_line + (start 177.121 64.856187) + (end 176.368788 64.103975) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "da013ee6-aed3-4e67-8e10-803cff7d5112") + (uuid "8b82b142-5347-426f-b51e-9b3b7044d35f") ) - (gr_poly - (pts - (xy 188.852255 64.571394) (xy 188.635562 64.166633) (xy 188.852255 64.166633) + (gr_rect + (start 116 76) + (end 136 81) + (stroke + (width 0.1) + (type default) ) + (fill none) + (layer "Cmts.User") + (uuid "8bb06e45-2f17-4f8c-975c-343233a727b5") + ) + (gr_line + (start 194.311639 55.453537) + (end 195.52722 55.453537) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "dabc52d5-e602-4e77-b5cf-b99c6b36499a") + (uuid "8ccfbc0b-91bc-4054-a763-80ad92c18627") ) - (gr_rect - (start 184.41728 58.49998) - (end 184.648418 61.738067) + (gr_line + (start 194.311639 65.608399) + (end 195.52722 65.608399) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "dc5a9730-f49c-4f9f-a685-b49af8791757") + (uuid "90782886-7666-47ae-bbf6-b72d096955cb") ) (gr_line - (start 176.38628 60.928546) - (end 177.367547 59.947279) + (start 170.637897 59.214597) + (end 170 58.5767) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "dd3bf3c6-feec-448a-9be0-964f4c159ffe") + (uuid "90daa012-54e7-4a2c-9804-cdda0919be4f") ) (gr_rect - (start 177.945394 58.095219) - (end 178.33544 58.49998) + (start 170 65.420346) + (end 173.646745 65.796452) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "ded2eabe-e578-4347-8639-245eda463b71") + (uuid "913fb753-611a-4b4a-8a09-273238bed9a8") + ) + (gr_rect + (start 170 70.027645) + (end 194.311639 70.215698) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "922a2ecd-80de-4d95-9ebf-6490f8b44bef") ) (gr_rect - (start 180.950198 56.071414) - (end 181.181336 58.095219) + (start 174.187004 64.668134) + (end 174.349081 66.548664) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "dfcb61f8-50b0-4a96-a4ca-53430c14c83a") + (uuid "93fa2860-204d-4085-8905-d6fc6db1e3f4") ) (gr_line - (start 187.768791 63.559492) - (end 186.959269 62.74997) + (start 194.311639 56.581855) + (end 195.52722 56.581855) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "e0aea8df-98a8-468e-b05a-a279731f3c66") + (uuid "954405ed-4ee6-450e-a179-c55a6c82bd41") ) (gr_line - (start 188.488418 57.488078) - (end 187.678896 56.678556) + (start 172.894533 67.112823) + (end 172.142321 66.360611) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "e0fd8869-e2fd-45cc-8fa6-0962803d9093") + (uuid "955333c7-e26f-41b6-856f-ece94a50293a") ) (gr_rect - (start 174.767236 62.74997) - (end 180.834628 63.559492) + (start 176.996349 57.898226) + (end 177.158426 59.778756) (stroke - (width 0.15) + (width 0.01) (type default) ) - (fill none) + (fill solid) (layer "Cmts.User") - (uuid "e1b4c8bf-a0af-4625-a8f3-626699633d4e") + (uuid "9772c5d9-51f3-4dbe-bedf-6093307ea094") ) (gr_line - (start 175.977496 57.488078) - (end 175.167974 56.678556) + (start 181.347468 56.957961) + (end 180.595256 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "e31b3d87-7b78-4c24-88ae-136b67b35432") + (uuid "98658f1e-d6d5-44c6-9686-d1e3605b8de0") ) (gr_rect - (start 177.266424 58.095219) - (end 177.65647 58.49998) + (start 183.479453 60.154862) + (end 183.64153 63.16371) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "e40f0945-60bb-45b0-904f-f87bc933e88d") + (uuid "9896d0d7-0a91-43b4-b2d4-17f325cba11f") + ) + (gr_line + (start 194.311639 57.710173) + (end 195.52722 57.710173) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "98bc4c3f-ddea-4203-bad2-dcce7a0cf541") + ) + (gr_line + (start 187.54173 59.214597) + (end 187.423341 59.096208) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "996cfb83-5ad1-4d40-a160-8063987d4fae") ) (gr_rect - (start 184.821772 57.285697) - (end 185.05291 59.309502) + (start 174.187004 62.411498) + (end 174.349081 64.292028) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "e4bd0a3f-35ca-45f3-b222-d1a6ab8c7504") + (uuid "99f88162-4344-4f12-8b43-cd929a9553b2") + ) + (gr_line + (start 185.86074 56.957961) + (end 185.108528 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "9a3fdc3a-5c4d-41ee-83e2-c7e042267f07") ) (gr_rect - (start 188.852255 64.166634) - (end 192.536028 64.571395) + (start 177.901282 63.16371) + (end 180.129848 63.539816) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "e7d60683-e2c2-4033-b6ab-2d3ce1a7c183") + (uuid "9aa8d8e1-c9b0-4716-82dc-6811bc568b99") ) (gr_line - (start 188.635562 60.928546) - (end 190.254606 59.309502) + (start 186.612952 59.214597) + (end 185.86074 58.462385) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "e89cb577-78d5-4e08-a02e-23abc45a24df") + (uuid "9c0368d4-bf1e-4c9b-8be3-0378561604e5") + ) + (gr_line + (start 173.646745 67.112823) + (end 172.894533 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "9c0f24ea-cc0d-4d15-80cb-d84d35085a2b") ) (gr_poly (pts - (xy 184.085018 62.142828) (xy 184.30171 61.738067) (xy 184.085018 61.738067) + (xy 190.759438 65.796452) (xy 190.421776 65.796452) (xy 190.340737 65.420346) (xy 190.556841 65.420346) ) (stroke (width 0.01) @@ -2440,65 +2686,73 @@ ) (fill solid) (layer "Cmts.User") - (uuid "eadf1b97-5f95-420c-a32a-08a30b1ba333") + (uuid "9d6d332b-6181-436f-ad76-0d537e8791a1") ) (gr_line - (start 192.536029 66.79758) - (end 193.836184 66.79758) + (start 193.559426 64.856187) + (end 192.807214 64.103975) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "ec5ddd8a-9992-4808-9c8c-a7764674dfc3") + (uuid "9e906ed4-c9fd-4e25-91fc-c359dcabc6f8") ) - (gr_line - (start 192.536029 65.583297) - (end 193.836184 65.583297) + (gr_rect + (start 180.670108 62.411498) + (end 180.832185 64.292028) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "ed86d7cd-8331-4539-8578-fe92d2473539") + (uuid "a09b74a7-e8c2-4605-ab91-8eb8b4d3237c") ) (gr_rect - (start 170 64.166634) - (end 173.683773 64.571395) + (start 176.996349 55.64159) + (end 177.158426 57.52212) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "ed8ed61f-3707-4b3d-acc3-edc1bf69475d") + (uuid "a131fa11-4933-466f-9140-9356414445a5") ) - (gr_rect - (start 180.733506 58.095219) - (end 181.802522 58.49998) + (gr_line + (start 193.559426 56.957961) + (end 192.807214 56.205749) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "edc2da79-9579-4cdd-af43-36a7413ba0fa") + (uuid "a16ce594-7946-4c3e-8f3a-6c37576c263b") ) - (gr_poly - (pts - (xy 181.918092 64.571394) (xy 181.701399 64.166633) (xy 181.918092 64.166633) + (gr_line + (start 190.550578 59.214597) + (end 189.798366 58.462385) + (stroke + (width 0.01) + (type default) ) + (layer "Cmts.User") + (uuid "a1ed5c85-8df1-4c58-87f4-d4f7ebd93265") + ) + (gr_line + (start 175.84928 67.112823) + (end 175.097068 66.360611) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "eec7dd20-7973-4304-a958-a6e9fada9c0d") + (uuid "a219ad04-760f-4112-94c5-86bd74b56ac6") ) (gr_poly (pts - (xy 184.085018 55.666653) (xy 184.30171 56.071414) (xy 184.085018 56.071414) + (xy 186.410356 57.52212) (xy 186.612953 57.898226) (xy 186.410356 57.898226) ) (stroke (width 0.01) @@ -2506,234 +2760,1464 @@ ) (fill solid) (layer "Cmts.User") - (uuid "efd0e2f7-f52d-4752-969f-566f2973e8c6") + (uuid "a3671798-cb9d-41e8-8d68-dd0772cc6079") ) - (gr_rect - (start 177.266424 61.738067) - (end 177.65647 62.142828) + (gr_line + (start 193.208333 62.411498) + (end 194.311638 61.308193) (stroke (width 0.01) (type default) ) - (fill solid) (layer "Cmts.User") - (uuid "f2e64310-5893-4cea-8d34-f119d0f8dd1c") + (uuid "a5d6909d-9026-4907-b166-c82f5a809d2c") ) - (gr_line - (start 187.678896 57.488078) - (end 186.869374 56.678556) + (gr_rect + (start 180.670108 65.420346) + (end 181.034782 65.796452) (stroke (width 0.01) (type default) ) + (fill solid) (layer "Cmts.User") - (uuid "f41c30b6-d170-4446-aa4d-97a56676c011") + (uuid "a6470a2f-0ad7-473b-9066-e8b292011a54") ) (gr_rect - (start 170 58.09522) - (end 173.900466 58.499981) + (start 183.276856 67.676982) + (end 183.64153 68.053088) (stroke (width 0.01) (type default) ) (fill solid) (layer "Cmts.User") - (uuid "f554dd14-b123-4496-9dbe-8b91bf359746") + (uuid "a81723c3-7907-4bf5-a68b-4cabc3e98f13") + ) + (gr_rect + (start 170 64.103975) + (end 173.646745 64.856187) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "a8b8ba60-8c79-4b70-93b6-9090839537ac") ) (gr_line - (start 184.30171 57.488078) - (end 183.492188 56.678556) + (start 172.894533 56.957961) + (end 172.142321 56.205749) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "fbaf13f0-754d-477f-9043-0bf59521d391") + (uuid "ab7a2a83-7a50-4b4e-8485-9967a8a334be") ) (gr_line - (start 182.682666 57.488078) - (end 181.873144 56.678556) + (start 194.311639 66.736717) + (end 195.52722 66.736717) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "fc0bd20d-c8e3-4532-b28a-d61aefd82dd5") + (uuid "abf9fca8-f589-4096-99da-5fef77ca58d7") ) (gr_line - (start 173.090944 57.488078) - (end 172.281422 56.678556) + (start 194.311639 64.480081) + (end 195.52722 64.480081) (stroke (width 0.01) (type default) ) (layer "Cmts.User") - (uuid "fe42d772-789c-40dc-8e01-e5c846be2c1b") + (uuid "ac02f401-4dd7-47b4-8c00-af966b04342b") ) (gr_rect - (start 184.41728 57.285697) - (end 184.648418 59.309502) + (start 184.181789 65.420346) + (end 189.651907 65.796452) (stroke (width 0.01) (type default) ) - (fill solid) + (fill solid) + (layer "Cmts.User") + (uuid "ad581eb3-9378-426b-9a43-ef1727bd4ae0") + ) + (gr_rect + (start 190.340737 63.539816) + (end 190.55684 65.420346) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ad8b5e4f-d136-4800-bd25-da832b2ba64b") + ) + (gr_poly + (pts + (xy 187.625938 57.52212) (xy 187.423341 57.898226) (xy 187.625938 57.898226) + ) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ae1b305f-c406-424d-9ca8-7e15e6d90f08") + ) + (gr_rect + (start 184.181789 66.360611) + (end 194.311638 67.112823) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "afbf76fe-2a7a-445b-9346-41d09324a988") + ) + (gr_line + (start 182.09968 56.957961) + (end 181.347468 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b0b4cb97-64c0-412d-9d06-3a59f81d05ba") + ) + (gr_rect + (start 174.457133 63.16371) + (end 176.685699 63.539816) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "b194b3bc-06da-4c87-b6db-a213ab22eb26") + ) + (gr_rect + (start 187.099186 57.898226) + (end 187.315289 59.778756) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "b1d7cd78-f654-4e35-868e-94f087ca50fb") + ) + (gr_line + (start 192.055002 67.112823) + (end 191.30279 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b32a5f73-ad4d-4f18-aa04-40a523048561") + ) + (gr_line + (start 194.311639 63.351763) + (end 195.52722 63.351763) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b47fc825-abcc-4d23-b575-a75f6588aacb") + ) + (gr_line + (start 178.105916 67.112823) + (end 177.353704 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b485fe95-6312-4658-a30a-f2b7d68c4d23") + ) + (gr_line + (start 172.894533 64.856187) + (end 172.142321 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b4d93532-3b99-4c72-8841-601df29a8020") + ) + (gr_line + (start 194.311639 61.659286) + (end 195.52722 61.659286) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b56bc782-145d-438f-bd20-84bd8933e3d3") + ) + (gr_line + (start 193.559426 67.112823) + (end 192.807214 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b658195a-653a-4c57-bd13-1a49b3cb3515") + ) + (gr_rect + (start 174.457133 66.360611) + (end 183.3714 67.112823) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "b68a8d39-64a7-4d1b-87fd-ed87a1014009") + ) + (gr_line + (start 172.142321 67.112823) + (end 171.390109 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b745aa22-e3be-44d2-92f5-c0980ae0c1d9") + ) + (gr_rect + (start 180.670108 60.154862) + (end 180.832185 63.16371) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "b83dc8b9-81b9-487c-93e4-2b238e1d6482") + ) + (gr_line + (start 175.097068 67.112823) + (end 174.457133 66.472888) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "b9246968-5974-4941-be16-a500c7edabe8") + ) + (gr_line + (start 177.873212 59.214597) + (end 177.698685 59.04007) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bb0bfb73-c488-4acc-adfc-096e5ad2bcd0") + ) + (gr_rect + (start 170 56.205749) + (end 173.646745 56.957961) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "bc55a07c-e7ad-4e45-92d5-9cdc317f3ad5") + ) + (gr_rect + (start 176.793752 63.16371) + (end 177.158426 63.539816) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "bd420f44-56b3-48ed-a6e6-a11ad4afc4db") + ) + (gr_line + (start 181.866976 67.112823) + (end 181.114764 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bd422e50-0a94-4449-baf1-0f0ac789d719") + ) + (gr_line + (start 172.142321 64.856187) + (end 171.390109 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bd5242e5-fbfa-4b3e-8160-0ea9e3722f05") + ) + (gr_line + (start 190.550578 56.957961) + (end 189.798366 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bd82550d-cc84-4a65-941e-438eeabe8be0") + ) + (gr_line + (start 192.807214 59.214597) + (end 192.055002 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "beaace61-745c-4963-b09b-fa307080d400") + ) + (gr_rect + (start 180.940237 59.778756) + (end 183.3714 60.154862) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "bf1e7f5e-6d74-4966-96a3-7930f480a1bf") + ) + (gr_rect + (start 186.721005 55.64159) + (end 186.937108 57.52212) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "bf37ceb3-bfc8-492d-bbc7-ddee4982458d") + ) + (gr_line + (start 193.559426 59.214597) + (end 192.807214 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bfa20db4-ab38-4a37-808d-84c4d61ac963") + ) + (gr_line + (start 180.129848 59.214597) + (end 179.377636 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "bff12533-eb72-40e3-b653-63979ddc191c") + ) + (gr_line + (start 170.637897 56.957961) + (end 170 56.320064) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c0a3d6ba-d8f9-4781-8b13-771f1bc5c4c4") + ) + (gr_rect + (start 170 53.102875) + (end 194.311639 53.290928) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "c0b89b98-cf6d-4928-943b-ed3ce30fd469") + ) + (gr_line + (start 184.356316 59.214597) + (end 184.181789 59.04007) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c1052858-1af0-4632-ba5a-c710102f4aa9") + ) + (gr_line + (start 181.114764 64.856187) + (end 180.940237 64.68166) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c117ecae-c0b4-4f90-884c-bb4273d5905e") + ) + (gr_rect + (start 176.996349 60.154862) + (end 177.158426 63.16371) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "c1bfa12c-0847-4396-bdc8-7a1d8c22ebc1") + ) + (gr_rect + (start 183.91166 59.026544) + (end 184.073737 60.907074) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "c288c105-6b7e-4656-8b56-01b6beece3f6") + ) + (gr_poly + (pts + (xy 187.517886 57.52212) (xy 187.180224 57.52212) (xy 187.099186 57.898226) (xy 187.315289 57.898226) + ) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "c2c05350-695b-487a-8d69-72ed87f96605") + ) + (gr_line + (start 192.055002 59.214597) + (end 191.30279 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c5255e53-ecab-42b4-abf6-d7e769f01e12") + ) + (gr_line + (start 191.30279 59.214597) + (end 190.550578 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c6657db9-056b-4fdf-b128-03be251e5bb9") + ) + (gr_rect + (start 183.91166 57.52212) + (end 184.276334 57.898226) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "c754877e-4257-48b6-b07b-8b206c085695") + ) + (gr_line + (start 194.311638 64.856187) + (end 193.559426 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "c86d58ee-f6df-4f44-9140-e0255368c5cc") + ) + (gr_rect + (start 174.187004 56.769908) + (end 174.349081 58.650438) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "c9e7b2aa-c167-401b-a9a3-e107d18388b8") + ) + (gr_rect + (start 190.664893 64.103975) + (end 194.311638 64.856187) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "c9fe63c5-e55e-42bc-9f6e-eb16de2cbaa8") + ) + (gr_line + (start 179.377636 64.856187) + (end 178.625424 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "ca822aeb-7968-4153-9ef2-c8ac189a012a") + ) + (gr_line + (start 182.851892 56.957961) + (end 182.09968 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "ca9c2818-d2ce-4eb9-89bf-119b92ab9b14") + ) + (gr_rect + (start 187.625938 55.265484) + (end 194.311638 55.64159) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "cf49f9f0-c92e-44c1-af2b-6d8fc1e891bf") + ) + (gr_rect + (start 177.428556 56.769908) + (end 177.590633 58.650438) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "cf5086b1-596b-4ccb-af87-cbba8450a696") + ) + (gr_line + (start 192.055002 56.957961) + (end 191.30279 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "cf6464d2-b751-45b4-800f-f91f4ed8f924") + ) + (gr_line + (start 176.136084 59.214597) + (end 175.383872 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "cffc4e93-604d-4ee0-a89f-6977ea9a579b") + ) + (gr_rect + (start 190.86749 65.420346) + (end 194.311638 65.796452) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "d2d4559b-3881-40b4-b0d0-6934f9f10bf6") + ) + (gr_line + (start 194.311639 54.325219) + (end 195.52722 54.325219) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "d2f036d2-e15b-4beb-9622-bb14fd0d6468") + ) + (gr_rect + (start 183.91166 67.676982) + (end 184.276334 68.053088) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "d4827711-2117-4964-b004-b491660b5c43") + ) + (gr_rect + (start 183.91166 64.668134) + (end 184.073737 66.548664) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "d83038e4-f1a2-4fa6-ae00-0ec2c241cd60") + ) + (gr_poly + (pts + (xy 189.759959 65.796452) (xy 190.097621 65.796452) (xy 190.17866 65.420346) (xy 189.962556 65.420346) + ) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "d929b88d-d199-4ec6-b7dd-0ce84f051176") + ) + (gr_rect + (start 170 54.231193) + (end 194.311639 54.419246) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "d9a68f13-1eff-4b25-b029-41482f897dae") + ) + (gr_rect + (start 177.428556 59.026544) + (end 177.590633 60.907074) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "da8462f4-4cd3-4ab0-9520-8ea319a04312") + ) + (gr_rect + (start 174.457133 60.907074) + (end 176.888296 62.411498) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "da8bcb26-406a-4be5-91e0-f12b6a061dff") + ) + (gr_line + (start 175.616576 64.856187) + (end 174.864364 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "da9d5f3d-116f-469d-9d29-0969e75d0033") + ) + (gr_line + (start 194.311639 58.838491) + (end 195.52722 58.838491) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "db61197e-b7f2-4588-9df9-b7c3ddf7c381") + ) + (gr_rect + (start 183.91166 62.411498) + (end 184.073737 64.292028) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "dbdb5206-65e2-4494-9bd6-6c4768f065f5") + ) + (gr_line + (start 181.114764 67.112823) + (end 180.362552 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "dca2af64-40e8-4bb1-92d9-84917f962f81") + ) + (gr_line + (start 170.637897 67.112823) + (end 170 66.474926) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "dcc86fc9-97c1-48c6-9e96-8001ad8c4734") + ) + (gr_rect + (start 184.181789 60.907074) + (end 194.311638 62.411498) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "dd20c8db-8f26-4339-bd40-6ff47ed23615") + ) + (gr_rect + (start 173.754797 57.898226) + (end 173.916874 59.778756) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "de1f344c-39c4-451d-a290-bc5201b4981b") + ) + (gr_line + (start 190.550578 67.112823) + (end 189.798366 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "df355cff-8aca-4b89-afdc-50feb807156c") + ) + (gr_line + (start 180.362552 67.112823) + (end 179.61034 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e0b65104-90a1-40b6-9964-93e3e3382e0c") + ) + (gr_line + (start 172.142321 59.214597) + (end 171.390109 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e1964be2-9ed5-4e8e-ab92-7ca93bfb33fe") + ) + (gr_line + (start 178.625424 64.856187) + (end 177.873212 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e1a63d77-6fd2-43b5-b656-c159708d4bff") + ) + (gr_line + (start 187.597868 64.856187) + (end 186.845656 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e225c926-185b-42f7-8af3-b89acef0c85c") + ) + (gr_rect + (start 174.187004 67.676982) + (end 174.551678 68.053088) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "e282ede1-8c58-49a6-9c6e-cbd4306ce258") + ) + (gr_line + (start 194.311639 53.196901) + (end 195.52722 53.196901) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e2f8f7c4-3dbb-42c1-932a-ebe5bc7f1cd0") + ) + (gr_rect + (start 184.384386 67.676982) + (end 194.311638 68.053088) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "e317665d-7aef-4b71-ae0e-cf0d6f90aa64") + ) + (gr_line + (start 183.3714 59.214597) + (end 182.619188 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e433d425-f2f8-4e03-a2e9-009d00733846") + ) + (gr_rect + (start 174.457133 65.420346) + (end 179.927251 65.796452) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "e5582107-2532-415a-b2d3-c7c39f9fa14d") + ) + (gr_line + (start 172.894533 59.214597) + (end 172.142321 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e7b94e94-f530-4da3-b4f4-bce2e0b1450f") + ) + (gr_line + (start 171.504424 62.411498) + (end 173.008848 60.907074) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e85a71c3-7398-4ae9-a299-ccbdcb5a67de") + ) + (gr_rect + (start 186.518408 59.778756) + (end 187.517886 60.154862) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "e8e7229d-3689-44eb-8e03-a5437a8c456c") + ) + (gr_line + (start 184.181789 62.411498) + (end 185.686213 60.907074) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e90bfa48-9667-45e3-b97a-05050618d1de") + ) + (gr_rect + (start 177.698685 56.205749) + (end 186.612952 56.957961) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "e90fd16e-409f-4db0-8122-58060342aba0") + ) + (gr_line + (start 183.3714 64.856187) + (end 182.619188 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "e99cbd20-e2c1-451a-bb8f-bbd00a1fec8e") + ) + (gr_rect + (start 174.187004 63.539816) + (end 174.349081 65.420346) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ea768885-c9f1-48c4-bef8-02bc4d329f1a") + ) + (gr_rect + (start 180.237901 59.026544) + (end 180.399978 60.907074) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ec150d25-c701-4a05-9836-bd2197f5c43d") + ) + (gr_rect + (start 180.670108 63.539816) + (end 180.832185 65.420346) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ed255159-73ce-43ee-b221-65cae38e55fe") + ) + (gr_line + (start 174.864364 64.856187) + (end 174.457133 64.448956) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "ee75cf28-9453-4d8a-ab51-66e15a80dd04") + ) + (gr_line + (start 181.114764 59.214597) + (end 180.940237 59.04007) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "eedb836c-69ce-4414-80e4-d2776b4fb901") + ) + (gr_rect + (start 173.754797 64.668134) + (end 173.916874 66.548664) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ef59b453-53e9-4326-b76b-72584f120255") + ) + (gr_rect + (start 173.754797 59.026544) + (end 173.916874 60.907074) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "f02b3f24-d2ca-4a1c-9409-5d0b593ee7ae") + ) + (gr_rect + (start 173.754797 65.796452) + (end 173.916874 67.676982) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "f0376897-9fc5-4998-bcbf-4edebde08f60") + ) + (gr_line + (start 194.311638 67.112823) + (end 193.559426 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f0447121-151c-4fae-8fa1-4d46d6e29300") + ) + (gr_line + (start 192.807214 67.112823) + (end 192.055002 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f1feb018-0a21-4c4b-bd29-acfc43b47831") + ) + (gr_rect + (start 184.181789 59.778756) + (end 186.410355 60.154862) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "f510db38-e43b-4cb5-8dd2-c32506895dba") + ) + (gr_line + (start 178.33862 56.957961) + (end 177.698685 56.318026) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f5554674-c48b-4647-8579-b514641777ca") + ) + (gr_line + (start 189.046154 59.214597) + (end 188.293942 58.462385) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f6140eda-8e35-4edc-b30f-2af8439f45de") + ) + (gr_line + (start 194.311639 67.865035) + (end 195.52722 67.865035) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f62131bf-53da-41e8-bf65-d44945d50029") + ) + (gr_rect + (start 170 66.360611) + (end 173.646745 67.112823) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "f622a60a-8b14-4c4d-8638-0f90167e8969") + ) + (gr_line + (start 194.311638 56.957961) + (end 193.559426 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f6267427-722c-478a-9b2e-96f9a4e52774") + ) + (gr_line + (start 177.873212 64.856187) + (end 177.121 64.103975) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "f75e66b6-04b0-4a6a-8ad4-2e35f04aeb8b") + ) + (gr_rect + (start 190.86749 63.16371) + (end 194.311638 63.539816) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "f8c08adf-6e02-4222-953d-77a3a305c95f") + ) + (gr_rect + (start 170 60.907074) + (end 173.646745 62.411498) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "fc247906-b416-46b0-a4aa-ac3f602e1a3a") + ) + (gr_line + (start 176.888296 56.957961) + (end 176.136084 56.205749) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "fd2fb374-7619-43d4-90e2-892db0e97b77") + ) + (gr_rect + (start 174.457133 64.103975) + (end 180.129848 64.856187) + (stroke + (width 0.15) + (type default) + ) + (fill none) + (layer "Cmts.User") + (uuid "fdc866a0-f2df-40b5-9eab-c8fdf6d79116") + ) + (gr_rect + (start 183.479453 64.668134) + (end 183.64153 66.548664) + (stroke + (width 0.01) + (type default) + ) + (fill solid) + (layer "Cmts.User") + (uuid "ff7011a7-a4df-4c9e-bd19-9381c07f33a3") + ) + (gr_line + (start 171.390109 67.112823) + (end 170.637897 66.360611) + (stroke + (width 0.01) + (type default) + ) + (layer "Cmts.User") + (uuid "ff88198d-e9bf-4204-bdc6-854d7f214487") + ) + (gr_rect + (start 100 50) + (end 140 90) + (stroke + (width 0.05) + (type default) + ) + (fill none) + (layer "Edge.Cuts") + (uuid "7ff694ea-cc10-4714-a850-36cd8a6b5ea8") + ) + (gr_text "" + (at 211.396849 71.249989 0) + (layer "Cmts.User") + (uuid "07018d50-d514-4528-a9eb-3c2f2e1f537a") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Copper" + (at 196.279432 63.351763 0) + (layer "Cmts.User") + (uuid "0740222e-4db6-4d6e-8e41-626302823b09") + (effects + (font + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) + ) + (justify left) + ) + ) + (gr_text "B.Paste" + (at 200.000468 71.249989 0) + (layer "Cmts.User") + (uuid "077f8001-0526-4242-9a2f-f5b44295d372") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Via F-In2" + (at 117 79 0) + (layer "Cmts.User") + (uuid "08e627de-66ec-4e84-82a2-22bcdfff8ff7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "Dielectric" + (at 215.606754 58.838491 0) + (layer "Cmts.User") + (uuid "09b464ea-6af7-4e7c-91b8-9242e44a5043") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Via In1-B" + (at 127 69 0) + (layer "Cmts.User") + (uuid "1d6a7d94-e1df-408b-848a-1c461b148255") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "Dielectric" + (at 211.396849 50.564159 0) + (layer "Cmts.User") + (uuid "1df77167-8de0-4622-9173-b511ff88eb8c") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "" + (at 211.396849 67.865035 0) + (layer "Cmts.User") + (uuid "1f095bc5-6109-4b91-b3a0-14c36cb97321") + (effects + (font + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) + ) + (justify left) + ) + ) + (gr_text "Paired" + (at 116 76 0) + (layer "Cmts.User") + (uuid "25959bd8-4a26-4907-891d-d0d629bc4cee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify left bottom) + ) + ) + (gr_text "Signal" + (at 215.606754 55.453537 0) + (layer "Cmts.User") + (uuid "25de60a4-f74b-4dcb-9de7-49a7ac9e5344") + (effects + (font + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) + ) + (justify left) + ) + ) + (gr_text "Legend" + (at 215.606754 70.121671 0) + (layer "Cmts.User") + (uuid "2608afc9-af06-4e39-a362-348a52cc222f") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "B.Mask" + (at 200.000468 68.993353 0) (layer "Cmts.User") - (uuid "ffc7ea2e-e7c4-4d28-81c4-377c2238ee16") + (uuid "282e2ac3-f919-413e-a8fe-3b9c181e332b") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) ) - (gr_rect - (start 100 50) - (end 140 90) - (stroke - (width 0.05) - (type default) + (gr_text "Total thickness: 1.57mm" + (at 195.52722 72.56636 0) + (layer "Cmts.User") + (uuid "2a3ff817-b8c7-4c7b-9def-e4b3610dcdee") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) ) - (fill none) - (layer "Edge.Cuts") - (uuid "7ff694ea-cc10-4714-a850-36cd8a6b5ea8") ) - (gr_text "Via F-In1" - (at 117 79 0) + (gr_text "Copper" + (at 196.279432 57.710173 0) (layer "Cmts.User") - (uuid "08e627de-66ec-4e84-82a2-22bcdfff8ff7") + (uuid "2bb3e23d-3ff5-4ed8-88e4-f09fcbf4c081") (effects (font - (size 1 1) - (thickness 0.15) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) - (justify left bottom) + (justify left) ) ) (gr_text "" - (at 194.645706 68.011863 0) + (at 211.396849 55.453537 0) (layer "Cmts.User") - (uuid "0ad9428e-4d47-4884-bba2-9a653ea55e96") + (uuid "2ddb592c-e452-4567-92d1-007510c33e6e") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Paste Mask" - (at 215.30852 68.011863 0) + (gr_text "" + (at 200.000468 58.838491 0) (layer "Cmts.User") - (uuid "0bce6fef-130d-4309-8047-0f80c4a62fac") + (uuid "2e4b80c8-e656-4b7f-b053-19089463f14b") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 194.645706 65.583297 0) + (at 211.396849 65.608399 0) (layer "Cmts.User") - (uuid "0bf2d099-5c9b-4789-b03b-c01f46bfda6c") + (uuid "30949205-d323-49d3-b6ef-ede99b200b6d") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "" - (at 204.102044 68.011863 0) + (gr_text "Copper" + (at 196.279432 67.865035 0) (layer "Cmts.User") - (uuid "0cd59cba-ed96-47f8-9276-fe870f53186f") + (uuid "32265a9c-94d6-4529-8fcd-ef5a2c47937b") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Dielectric" - (at 215.30852 60.119024 0) + (gr_text "Copper" + (at 196.279432 65.608399 0) + (layer "Cmts.User") + (uuid "345c7c29-e13e-4f27-988c-d1f9556e8e01") + (effects + (font + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) + ) + (justify left) + ) + ) + (gr_text "Legend" + (at 215.606754 53.196901 0) (layer "Cmts.User") - (uuid "0ea27c58-e156-43e8-8222-79eea52ac1e9") + (uuid "3a3f0850-e079-48f7-9239-c430ba1f194c") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "Prepreg" - (at 194.645706 63.154731 0) + (at 196.279432 56.581855 0) (layer "Cmts.User") - (uuid "0f6344ef-a986-4e5d-91d8-85bb6e09fd4d") + (uuid "3c1211e2-dc91-489c-a7ed-4029b65435f8") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "B.Silkscreen" - (at 198.62386 66.79758 0) + (gr_text "Thickness" + (at 205.124582 50.564159 0) (layer "Cmts.User") - (uuid "1955eae1-764c-45f0-8a7c-be2a1a926b82") + (uuid "3e9fd621-8d12-4460-9075-d17d4a61e838") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "B.Cu" - (at 198.62386 64.369014 0) + (gr_text "0.01mm" + (at 205.124582 64.480081 0) (layer "Cmts.User") - (uuid "1d5267fb-2d46-402c-8152-ea9d1bc362d8") + (uuid "4208ffd8-d6cb-4ab5-9b17-ae3e58ea6549") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Via In1-B" - (at 127 69 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 57.710173 0) (layer "Cmts.User") - (uuid "1d6a7d94-e1df-408b-848a-1c461b148255") + (uuid "4430c993-26ac-4141-866f-ba14885b5b3f") (effects (font - (size 1 1) - (thickness 0.15) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) - (justify left bottom) + (justify left) ) ) - (gr_text "Type" - (at 215.30852 50.607141 0) + (gr_text "F.Paste" + (at 200.000468 52.068583 0) (layer "Cmts.User") - (uuid "1f65c4f9-a8a1-48cf-ada1-f7bb6ae7ece1") + (uuid "47f2c63a-9ea9-4b59-ad83-42db33a40411") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "F.Cu" - (at 198.62386 55.869034 0) + (gr_text "Layer" + (at 200.000468 50.564159 0) (layer "Cmts.User") - (uuid "24321634-17f4-4ba2-83f5-ee8176b37071") + (uuid "4ea6a7bd-27dc-4491-a7a6-e605c57904d9") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Paired" - (at 116 76 0) + (gr_text "Burried Via\nIn1-In4" + (at 127 59 0) (layer "Cmts.User") - (uuid "25959bd8-4a26-4907-891d-d0d629bc4cee") + (uuid "55fc29d4-db5e-4a24-8415-dcffdbce9994") (effects (font (size 1 1) @@ -2743,482 +4227,531 @@ ) ) (gr_text "" - (at 198.62386 63.154731 0) + (at 205.124582 52.068583 0) (layer "Cmts.User") - (uuid "266164de-9135-4f6b-b96a-f6b99f5e3134") + (uuid "5a4a445d-fbee-4743-80fb-f012a9e13df4") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 210.807716 53.440468 0) + (at 205.124582 71.249989 0) (layer "Cmts.User") - (uuid "2a4c5f1d-6af2-44ab-9628-38ce561ca7bc") + (uuid "626f39dd-07df-4d70-b38e-831ab8acfa13") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 210.807716 54.654751 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 67.865035 0) (layer "Cmts.User") - (uuid "2ef4c3e8-261c-41ab-94b4-306981eb3b92") + (uuid "67ce2a06-eeef-4dd1-87bf-fd3c671df139") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Dielectric" - (at 215.30852 63.154731 0) + (gr_text "0.01mm" + (at 205.124582 58.838491 0) (layer "Cmts.User") - (uuid "332bbf18-8357-48e3-8482-90ebc4f311c4") + (uuid "683bde63-e2c1-4377-b4ee-3c38790aed22") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Total thickness: 1.6mm" - (at 193.836184 69.428526 0) + (gr_text "" + (at 211.396849 59.966809 0) (layer "Cmts.User") - (uuid "35c40cf1-b02c-4393-bb26-ed48768d3c8d") + (uuid "69a7c005-ea26-4976-b537-04bb423b3a60") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) (gr_text "" - (at 210.807716 58.2976 0) + (at 211.396849 57.710173 0) (layer "Cmts.User") - (uuid "39b20080-6566-4b32-9da0-c5226aa2576d") + (uuid "69e62426-9b71-46e3-8c26-9cb35765e081") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "Paste Mask" - (at 215.30852 52.226185 0) + (gr_text "" + (at 211.396849 54.325219 0) (layer "Cmts.User") - (uuid "3e402313-40fb-415a-bad0-dae5d14b9c98") + (uuid "70ddd622-ca5b-4ab1-a092-1980061491d0") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Signal" - (at 215.30852 64.369014 0) + (gr_text "Dielectric" + (at 215.606754 64.480081 0) (layer "Cmts.User") - (uuid "3e893f94-5f91-42e1-a314-2afe38d63f1a") + (uuid "70f95e8b-8223-479d-842f-140cedb4c7c4") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Legend" - (at 215.30852 66.79758 0) + (gr_text "" + (at 211.396849 70.121671 0) (layer "Cmts.User") - (uuid "3fd026ec-0c4d-422d-8502-cde527c3c115") + (uuid "7184e25b-1d6d-4553-a4dc-53ee204b556c") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "B.Paste" - (at 198.62386 68.011863 0) + (gr_text "Signal" + (at 215.606754 57.710173 0) (layer "Cmts.User") - (uuid "417b4c37-6ba5-457f-bc4a-68ff7b25693f") + (uuid "7294bd18-6726-48ee-8c4f-431fa920fcde") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Solder Mask" - (at 215.30852 54.654751 0) + (gr_text "" + (at 196.279432 68.993353 0) (layer "Cmts.User") - (uuid "4217fcf7-2900-4fb6-941c-273a2ad18fb2") + (uuid "73adc85e-6d30-4ecc-98f9-850db51af551") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "FR4" - (at 210.807716 63.154731 0) + (gr_text "" + (at 170.752212 50.564159 0) (layer "Cmts.User") - (uuid "4395dcf5-e9c0-4e2f-aa4c-6401ec4559f9") + (uuid "7490bcba-1713-40b3-ba98-3442ed37815e") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 210.807716 68.011863 0) + (at 196.279432 54.325219 0) (layer "Cmts.User") - (uuid "43c9911e-ab80-4138-8f1d-5b428139bdbd") + (uuid "765ff6ea-3fb2-4883-90f2-f8ad859ece33") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Dielectric" - (at 215.30852 57.083317 0) + (gr_text "In4.Cu" + (at 200.000468 65.608399 0) (layer "Cmts.User") - (uuid "4513cdc7-84f9-421f-8c89-f371f0c89dbe") + (uuid "76b73043-103d-4aa6-a291-05b28a5ba104") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Material" - (at 194.645706 50.607141 0) + (gr_text "Prepreg" + (at 196.279432 58.838491 0) (layer "Cmts.User") - (uuid "47f2e28f-152d-4ac1-b660-e6aaa8bfd0cf") + (uuid "788a881f-a6c0-4ce1-826b-0908f73c4b4c") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.035mm (1oz)" - (at 204.102044 55.869034 0) + (gr_text "Solder Mask" + (at 215.606754 68.993353 0) (layer "Cmts.User") - (uuid "4f41e741-5e0f-4888-9c47-5ca5b1f7cc66") + (uuid "7a46e209-42c9-4052-81fe-99436153a2de") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Burried Via\nIn1-In2" - (at 127 59 0) + (gr_text "" + (at 211.396849 53.196901 0) (layer "Cmts.User") - (uuid "55fc29d4-db5e-4a24-8415-dcffdbce9994") + (uuid "7bb841a7-de2e-417f-9924-4a727f83d6be") (effects (font - (size 1 1) - (thickness 0.15) + (size 0.376106 0.376106) ) - (justify left bottom) + (justify left) ) ) - (gr_text "" - (at 198.62386 57.083317 0) + (gr_text "0.01mm" + (at 205.124582 54.325219 0) (layer "Cmts.User") - (uuid "56202c29-9ed9-4214-8ea9-d333c6876454") + (uuid "818df7f0-55ae-46e1-8652-34279fb2a97c") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 194.645706 52.226185 0) + (at 200.000468 56.581855 0) (layer "Cmts.User") - (uuid "5db8c816-cb03-4320-a3be-49de234001d5") + (uuid "81a56d56-b40b-4c2b-b86b-c4ca2b57bb16") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Core" - (at 194.645706 60.119024 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 63.351763 0) (layer "Cmts.User") - (uuid "63290bc3-1023-4aec-a211-e7625e169a69") + (uuid "82626a3f-9467-445a-a4f0-99f0f14bc604") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Signal" - (at 215.30852 55.869034 0) + (gr_text "FR4" + (at 211.396849 61.659286 0) (layer "Cmts.User") - (uuid "69913601-ec80-402d-a452-d30c7a2b2cdc") + (uuid "839195b1-551c-42ee-82ad-fa6bb10de3a8") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "In2.Cu" - (at 198.62386 61.940448 0) + (gr_text "Dielectric" + (at 215.606754 56.581855 0) (layer "Cmts.User") - (uuid "6bd77598-80eb-4607-8507-890ac2208f5e") + (uuid "8536e323-5d02-4dd4-bbf6-edafa61bcfaf") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "" + (at 200.000468 64.480081 0) + (layer "Cmts.User") + (uuid "86bc5329-0827-4342-8c76-c30ca2b71d70") + (effects + (font + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "Copper" - (at 194.645706 64.369014 0) + (at 196.279432 59.966809 0) (layer "Cmts.User") - (uuid "74d3ce11-6e7e-46f5-a114-642369dd6c5c") + (uuid "890302f6-1140-493a-ac5e-c6ea27646a9c") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "FR4" - (at 210.807716 57.083317 0) + (gr_text "" + (at 205.124582 70.121671 0) (layer "Cmts.User") - (uuid "76d79ed8-5260-429f-ad75-c6b2dc196b9d") + (uuid "8abd7cf7-4f5b-4ab5-84b2-9c8cc7b1c952") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Copper" - (at 194.645706 55.869034 0) + (gr_text "0.01mm" + (at 205.124582 68.993353 0) (layer "Cmts.User") - (uuid "77b313d6-f45c-4855-8264-202d84742b0f") + (uuid "8bd988ea-ca39-4335-a922-f58c3f82d2ce") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Prepreg" - (at 194.645706 57.083317 0) + (gr_text "" + (at 200.000468 66.736717 0) (layer "Cmts.User") - (uuid "787c2b78-10f9-47ae-ad45-6c266e9c342f") + (uuid "8d700592-7ac9-4295-b7ad-bcb83e184e19") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 210.807716 65.583297 0) + (at 196.279432 52.068583 0) (layer "Cmts.User") - (uuid "78fe477f-9b95-415a-a34d-16e4c7bb424b") + (uuid "8e78366c-659e-4693-9ccb-340a3dddabaf") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "F.Paste" - (at 198.62386 52.226185 0) + (gr_text "Signal" + (at 215.606754 67.865035 0) (layer "Cmts.User") - (uuid "7db47d14-0d2f-4c69-b047-bbb8d0dbfb85") + (uuid "8f02c761-88d5-4419-ab12-17421faa73a6") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "" - (at 198.62386 60.119024 0) + (gr_text "F.Cu" + (at 200.000468 55.453537 0) (layer "Cmts.User") - (uuid "7f07f2ee-d441-4e1d-a546-71b2d1b271aa") + (uuid "8ff54a44-a9de-4e05-8319-69c5372f86de") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "B.Mask" - (at 198.62386 65.583297 0) + (gr_text "1.3mm" + (at 205.124582 61.659286 0) (layer "Cmts.User") - (uuid "8350588a-a8b0-4fa9-933a-b4bc302fe92a") + (uuid "92f8b4fc-6b29-42bc-9f98-43bf32a56ca0") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 210.807716 55.869034 0) + (gr_text "In3.Cu" + (at 200.000468 63.351763 0) (layer "Cmts.User") - (uuid "92e3e7b6-4a80-493b-adb5-f69bb0a65b14") + (uuid "95222f13-f682-40fc-acb0-a47e00406006") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "Dielectric" - (at 210.807716 50.607141 0) + (gr_text "B.Cu" + (at 200.000468 67.865035 0) (layer "Cmts.User") - (uuid "95007d79-1a6e-49cc-9e23-48231ba82703") + (uuid "9838073d-92e5-4ec6-94f9-45ef53c24fbf") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "" - (at 204.102044 66.79758 0) + (gr_text "In1.Cu" + (at 200.000468 57.710173 0) (layer "Cmts.User") - (uuid "a0c7e729-5362-457a-974b-a98b46867097") + (uuid "9b46da05-d1c8-4152-aaae-01df7e30ce96") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) (gr_text "F.Silkscreen" - (at 198.62386 53.440468 0) + (at 200.000468 53.196901 0) (layer "Cmts.User") - (uuid "a63a878c-6ab4-4e3f-9b9d-8ec660a16143") + (uuid "9bf82c75-cf0b-4c5b-89ce-bee184ebd0ea") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 170.809522 50.607141 0) + (gr_text "Signal" + (at 215.606754 65.608399 0) (layer "Cmts.User") - (uuid "a82c273f-303e-448a-9046-e28bdb247867") + (uuid "a1faf443-0ed0-4811-9a5f-acad8a77aedc") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "Signal" - (at 215.30852 61.940448 0) + (gr_text "Copper" + (at 196.279432 55.453537 0) (layer "Cmts.User") - (uuid "a8a9672a-bd84-4e66-9179-81ead7639c7e") + (uuid "a2418055-98d0-4fb2-9fef-2913bbbbede9") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "Copper" - (at 194.645706 61.940448 0) + (gr_text "0.01mm" + (at 205.124582 66.736717 0) (layer "Cmts.User") - (uuid "a998f09d-8432-4124-9197-3b367a79f6a9") + (uuid "a5b90ef6-3cf5-4d48-b1b6-94f45a66f99c") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Signal" - (at 215.30852 58.2976 0) + (gr_text "Prepreg" + (at 196.279432 66.736717 0) (layer "Cmts.User") - (uuid "aee3bccc-e915-4367-a40d-4aae9aeb6beb") + (uuid "a7185a82-eb30-448e-b1fd-a78a05b9f987") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 210.807716 61.940448 0) + (gr_text "FR4" + (at 211.396849 56.581855 0) (layer "Cmts.User") - (uuid "ba12e74f-6b40-411b-850b-ef0f55e5039d") + (uuid "ac9a049e-4b62-40be-8826-f42770be9182") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.01mm" - (at 204.102044 65.583297 0) + (gr_text "FR4" + (at 211.396849 64.480081 0) (layer "Cmts.User") - (uuid "bc8a3aed-a82e-43d7-9825-bccb00cc4e1b") + (uuid "aea884d6-fa1a-4ee2-803b-04757eeee9d1") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.1mm" - (at 204.102044 57.083317 0) + (gr_text "B.Silkscreen" + (at 200.000468 70.121671 0) (layer "Cmts.User") - (uuid "be050e07-c086-4185-8d01-d7e71c77f0d7") + (uuid "b0007123-a98c-4924-89b4-460cea022a40") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Via F-In2" + (gr_text "Core" + (at 196.279432 61.659286 0) + (layer "Cmts.User") + (uuid "b3370557-4632-4d56-9e0a-cabfb46a47a2") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "" + (at 211.396849 63.351763 0) + (layer "Cmts.User") + (uuid "b38fffc3-0926-4279-8c56-bda99a1c0421") + (effects + (font + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) + ) + (justify left) + ) + ) + (gr_text "Dielectric" + (at 215.606754 66.736717 0) + (layer "Cmts.User") + (uuid "bc47993e-21c7-4313-bd12-7afe906eb389") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Via F-In3" (at 117 69 0) (layer "Cmts.User") (uuid "c1594a55-f0c6-40b1-b457-ae93cacda629") @@ -3242,213 +4775,237 @@ (justify left bottom) ) ) - (gr_text "F.Mask" - (at 198.62386 54.654751 0) + (gr_text "In2.Cu" + (at 200.000468 59.966809 0) (layer "Cmts.User") - (uuid "c7ec0c10-5592-47d0-a424-ac0b6d59da05") + (uuid "c5d218ec-f4fe-4f85-8225-32434322fdec") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) (gr_text "" - (at 204.102044 52.226185 0) + (at 196.279432 70.121671 0) (layer "Cmts.User") - (uuid "cb49b843-e832-41cf-ad5e-5f0a242eee5e") + (uuid "c68b6431-4d7e-42a2-bee5-737b1c1c0080") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.01mm" - (at 204.102044 54.654751 0) + (gr_text "" + (at 211.396849 68.993353 0) (layer "Cmts.User") - (uuid "cd955db9-c2c5-41eb-b0b7-d140a58f957a") + (uuid "c8a626d3-7c3f-46fd-abce-b5117c00064e") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.035mm (1oz)" - (at 204.102044 58.2976 0) + (gr_text "" + (at 211.396849 52.068583 0) (layer "Cmts.User") - (uuid "d0145302-437c-46d1-9124-045c25765767") + (uuid "cacb9378-8d95-4e44-a0a0-1f6d4fb84c33") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.035mm (1oz)" - (at 204.102044 64.369014 0) + (gr_text "Signal" + (at 215.606754 59.966809 0) (layer "Cmts.User") - (uuid "d542976d-74ec-4817-bf83-1583c89963b4") + (uuid "cae02d65-fc6f-4a6f-a2c1-a6b5b544cf22") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "Layer" - (at 198.62386 50.607141 0) + (gr_text "" + (at 205.124582 53.196901 0) (layer "Cmts.User") - (uuid "dbfbbf73-0b7c-40af-905b-079baeacf67f") + (uuid "caf7d181-f513-4f03-9e96-f1371f65f34e") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 194.645706 54.654751 0) + (gr_text "FR4" + (at 211.396849 66.736717 0) (layer "Cmts.User") - (uuid "dc53362a-21fc-4b5f-93e7-803b4a36b64e") + (uuid "cd7e1d29-0d18-4af0-958d-9d0c3fbb190a") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 210.807716 52.226185 0) + (gr_text "Solder Mask" + (at 215.606754 54.325219 0) (layer "Cmts.User") - (uuid "de4f77aa-8fc6-4f11-91c6-4815eb8b1c96") + (uuid "ced19699-c0bb-47c3-9501-076af406edf5") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) (gr_text "" - (at 194.645706 66.79758 0) + (at 196.279432 71.249989 0) (layer "Cmts.User") - (uuid "df7683c4-b5fc-40dd-9c18-b187c51cab4e") + (uuid "d145c7a1-b890-4044-b5ca-546c0febe1fc") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 194.645706 53.440468 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 59.966809 0) (layer "Cmts.User") - (uuid "e4cc0814-a571-42fd-82fc-6ef063240b73") + (uuid "d2332918-1e1e-4005-b871-dc526a38a593") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) + (thickness 0.075221) + (bold yes) ) (justify left) ) ) - (gr_text "1.24mm" - (at 204.102044 60.119024 0) + (gr_text "0.01mm" + (at 205.124582 56.581855 0) (layer "Cmts.User") - (uuid "e6ec201d-e936-4af1-a0ee-9928822f8c6b") + (uuid "d702162b-d7be-41b6-9623-7cabe85e7e8e") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "0.1mm" - (at 204.102044 63.154731 0) + (gr_text "FR4" + (at 211.396849 58.838491 0) (layer "Cmts.User") - (uuid "e85d76ee-1577-4a56-82ac-9fcf169a80ec") + (uuid "d796f030-ad36-4ed1-8d3f-cbf1d6039dde") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 204.102044 53.440468 0) + (gr_text "Material" + (at 196.279432 50.564159 0) (layer "Cmts.User") - (uuid "ea822ec5-a85f-4c44-8e3b-26c353a3b605") + (uuid "d888a578-c745-4bf1-9dba-ebd4e15fa062") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Copper" - (at 194.645706 58.2976 0) + (gr_text "Prepreg" + (at 196.279432 64.480081 0) + (layer "Cmts.User") + (uuid "dc675158-db6a-4ad8-94aa-50fdbada4042") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Dielectric" + (at 215.606754 61.659286 0) + (layer "Cmts.User") + (uuid "de1b5877-a452-4885-8e36-6c7c1bfec2d9") + (effects + (font + (size 0.376106 0.376106) + ) + (justify left) + ) + ) + (gr_text "Signal" + (at 215.606754 63.351763 0) (layer "Cmts.User") - (uuid "ed573b58-6a3d-4d9c-a839-569ed654cec7") + (uuid "e481a03f-b9fe-4d9b-aa74-bea400058d08") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "Thickness" - (at 204.102044 50.607141 0) + (gr_text "" + (at 200.000468 61.659286 0) (layer "Cmts.User") - (uuid "eed60160-ac1a-4ef7-b6cf-d7902f026255") + (uuid "e916df97-aa8e-488f-9b6d-039ed6b51887") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Solder Mask" - (at 215.30852 65.583297 0) + (gr_text "F.Mask" + (at 200.000468 54.325219 0) (layer "Cmts.User") - (uuid "efe57d8b-a7e4-4e13-8ec7-858dd8cb95d9") + (uuid "e945b687-a80f-477b-a9de-57229ee4efa5") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "In1.Cu" - (at 198.62386 58.2976 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 65.608399 0) (layer "Cmts.User") - (uuid "f205ee6a-deb5-4605-b58b-6d45fa9bdb88") + (uuid "ebb0e031-6916-4932-83b0-38532714406f") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "" - (at 210.807716 66.79758 0) + (gr_text "Type" + (at 215.606754 50.564159 0) (layer "Cmts.User") - (uuid "f454cf8a-f451-4bcb-8df5-46e2db7832b5") + (uuid "ebb25914-f6c8-4deb-81e5-28e517616beb") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "Via In2-B" + (gr_text "Via In3-In4" (at 127 79 0) (layer "Cmts.User") (uuid "f46ef7b6-1254-419d-81c9-2f8ba683009c") @@ -3460,59 +5017,57 @@ (justify left bottom) ) ) - (gr_text "Legend" - (at 215.30852 53.440468 0) + (gr_text "Paste Mask" + (at 215.606754 52.068583 0) (layer "Cmts.User") - (uuid "f9c80f87-698a-4e55-8f70-36f82d0210fb") + (uuid "f4ad4b1d-b02c-4776-b36b-5c389861d3f2") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "FR4" - (at 210.807716 60.119024 0) + (gr_text "" + (at 196.279432 53.196901 0) (layer "Cmts.User") - (uuid "fc146b4b-1ba1-41a2-b715-36066d143c12") + (uuid "f6876e68-dc06-4570-a86d-99e126cb177b") (effects (font - (size 0.404761 0.404761) + (size 0.376106 0.376106) ) (justify left) ) ) - (gr_text "" - (at 210.807716 64.369014 0) + (gr_text "0.035mm (1oz)" + (at 205.124582 55.453537 0) (layer "Cmts.User") - (uuid "fcabc875-0b24-4e6c-8695-2f3093ea83bf") + (uuid "f6dd143a-5613-405d-8759-d4b6e4208302") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) + (size 0.376106 0.376106) + (thickness 0.075221) (bold yes) ) (justify left) ) ) - (gr_text "0.035mm (1oz)" - (at 204.102044 61.940448 0) + (gr_text "Paste Mask" + (at 215.606754 71.249989 0) (layer "Cmts.User") - (uuid "fcd4702f-1364-4953-9ef2-1031a02d3659") + (uuid "fb4bcd9b-c68a-44b3-a50d-3fbc0503a246") (effects (font - (size 0.404761 0.404761) - (thickness 0.080952) - (bold yes) + (size 0.376106 0.376106) ) (justify left) ) ) - (via micro + (via blind (at 120 70) (size 0.6) (drill 0.3) - (layers "F.Cu" "In2.Cu") + (layers "F.Cu" "In3.Cu") (net 0) (uuid "11e470c9-5561-46c8-8351-349e2d50e0bd") ) @@ -3520,7 +5075,7 @@ (at 120 80) (size 0.6) (drill 0.3) - (layers "F.Cu" "In1.Cu") + (layers "F.Cu" "In2.Cu") (net 0) (uuid "2db1c19b-aeaf-4be9-aefa-5f9435380798") ) @@ -3536,11 +5091,11 @@ (at 130 60) (size 0.6) (drill 0.3) - (layers "In1.Cu" "In2.Cu") + (layers "In1.Cu" "In4.Cu") (net 0) (uuid "7f6eeb3c-52fd-4625-a4ea-c3a2717aa16a") ) - (via micro + (via blind (at 130 70) (size 0.6) (drill 0.3) @@ -3552,139 +5107,211 @@ (at 130 80) (size 0.6) (drill 0.3) - (layers "In2.Cu" "B.Cu") + (layers "In3.Cu" "In4.Cu") (net 0) (uuid "428018d7-b4d6-414b-b03f-a1c656801230") ) (group "kibot_fancy_stackup" (uuid "b9f57fbc-bdf5-4ebc-8aea-0c3c303fbf8c") - (members "000c424b-fd9c-4b8a-a743-e99148fd18db" "00dbb8ad-ec11-4e55-9a02-6c93e567166b" - "01801f15-a21b-4d75-8ef9-80e794f87372" "0453e366-2c9b-4a75-b001-0eac9dc341a0" - "0632eb08-052f-4205-bf43-befe56c414db" "06d49860-6a17-469c-8257-f761f7cfb888" - "090b68da-fa99-4a9e-aca8-c7595fc156d4" "0a641318-ad75-47bd-ba8a-cd6c3c1b6419" - "0ad9428e-4d47-4884-bba2-9a653ea55e96" "0b1c396b-fa90-4dae-9a71-472f5bf6a6c3" - "0bb1dba9-6a6b-463d-84e4-61a24afe7110" "0bce6fef-130d-4309-8047-0f80c4a62fac" - "0bf2d099-5c9b-4789-b03b-c01f46bfda6c" "0cd59cba-ed96-47f8-9276-fe870f53186f" - "0ce04bf8-456e-4acd-801d-37c12516b019" "0e16c28c-f201-4dd7-b7af-d0ca37312ffb" - "0ea27c58-e156-43e8-8222-79eea52ac1e9" "0f6344ef-a986-4e5d-91d8-85bb6e09fd4d" - "18839960-6cad-4fd7-9654-d7262c698696" "1884bbec-ed95-4b70-a4a5-0f80d067de0e" - "1955eae1-764c-45f0-8a7c-be2a1a926b82" "1aa542dc-9a57-4335-8b8f-679e23d4cb90" - "1ad39f9a-dd41-4c6e-96e2-a91cf31a2374" "1b1634b5-ae46-4e8b-a899-a20e3edbcb6a" - "1c119a2a-3aee-4c66-b14f-ffca80ec4cb0" "1d5267fb-2d46-402c-8152-ea9d1bc362d8" - "1dc257f3-7ac1-483a-a83a-57e4a0c945be" "1e6d924b-5f89-4218-bff7-e46b6542e3a9" - "1f65c4f9-a8a1-48cf-ada1-f7bb6ae7ece1" "207a9c3a-13cd-4353-9a02-f540eb9f517a" - "21c52c54-37e0-4e4f-8fd0-971c58cd9997" "22d8d0a4-4ccf-4bda-a8f4-b107607bf8bd" - "23edfcab-403c-4572-acd6-11b9a8888c22" "24321634-17f4-4ba2-83f5-ee8176b37071" - "24926d91-bb5f-4d2f-aeb2-cb8c526fbdcc" "26112bd5-ef29-4832-8c29-5468f565d3f9" - "266164de-9135-4f6b-b96a-f6b99f5e3134" "28658d33-ed99-459d-90ad-08a205a64cba" - "28926c78-2fbb-4688-a0ac-b7702fd56dc0" "29b07ab8-39c6-4c98-bb50-9f855e690a62" - "29be2467-8a1a-4531-8f29-77eb2561218a" "2a4c5f1d-6af2-44ab-9628-38ce561ca7bc" - "2adcb2af-3651-4c85-a161-458d0d435aa6" "2eeaeaf7-05ce-42ca-942b-9248d053098b" - "2ef4c3e8-261c-41ab-94b4-306981eb3b92" "2fdd6088-4740-4a36-9cf9-0c15f1767f14" - "31538765-297e-4d7a-9de0-b7825d8ebdc8" "332bbf18-8357-48e3-8482-90ebc4f311c4" - "35661d7c-22f7-4a91-a89f-4e1004c69cd3" "35c40cf1-b02c-4393-bb26-ed48768d3c8d" - "35c814ad-2ff3-4b64-97aa-876a5b8c9620" "35f2094b-91ea-49c4-8aeb-2107c4a4eacf" - "378b84f0-15e3-4e87-ac20-4983f0b6f696" "39740cdd-3a0e-4b59-8527-6bcc45822c1a" - "398fdda5-9e3a-4f44-9b50-f30a74820995" "39b20080-6566-4b32-9da0-c5226aa2576d" - "3a029f5c-9225-4f2d-a1fe-1d6d85dcb790" "3a5ffef6-0775-458e-917d-8a306143bf0b" - "3b100640-fd1d-412d-9bf3-4cc57674816e" "3ce45791-969a-41d7-bb55-fdfe7db94444" - "3e402313-40fb-415a-bad0-dae5d14b9c98" "3e893f94-5f91-42e1-a314-2afe38d63f1a" - "3fd026ec-0c4d-422d-8502-cde527c3c115" "417b4c37-6ba5-457f-bc4a-68ff7b25693f" - "4217fcf7-2900-4fb6-941c-273a2ad18fb2" "4395dcf5-e9c0-4e2f-aa4c-6401ec4559f9" - "43c9911e-ab80-4138-8f1d-5b428139bdbd" "4513cdc7-84f9-421f-8c89-f371f0c89dbe" - "457ffb07-78e4-4e1a-a8fc-6a721dc79256" "46d8b29a-5b0a-4b08-8585-0da38dd9b928" - "46f1fc29-71dc-4b78-a8f9-1d9d41d5e321" "47080d5b-977d-46c6-9ad3-a19edd66a52a" - "476cf5d0-d63c-4555-8091-f808552a2371" "47f2e28f-152d-4ac1-b660-e6aaa8bfd0cf" - "49af8185-49c8-46e6-93e8-099975039362" "4b468e16-e592-4f1b-8f96-b05a3191812e" - "4c92c69b-66a5-40a6-9756-8a8229dd3866" "4d103cf3-25d3-4131-8e87-6cc0a361fbf5" - "4d83c632-838a-4113-8135-5b36f582af44" "4f41e741-5e0f-4888-9c47-5ca5b1f7cc66" - "51019645-ae05-4dfa-ad3f-378a1eb7d1ee" "52f3669b-a0a3-4afd-82c0-ec12bf64b668" - "531a049e-2991-4167-8b95-c5d0e84e7878" "54c34725-3f9c-40c9-8f05-b20e389b8064" - "557c177f-b568-416a-a5d3-a11ad3ff2b8f" "55db4ea8-3211-4e9a-9211-f792a4d9dec7" - "55ffab34-f427-4733-a83b-e45fa5766d16" "56202c29-9ed9-4214-8ea9-d333c6876454" - "5701ee8f-a13f-4e43-b1ef-ec73b4a97494" "5715e354-0140-4181-9f7b-08b437255c7f" - "577a026a-9cdb-4fa2-9146-0d6d6fba20db" "58a5a6da-a481-4c61-a605-d7c19b82912d" - "59d6f103-f97d-4bcf-9a0b-9a78f990907b" "5b1a4110-887f-4471-a75d-e03ab8ce011e" - "5b83aa82-8ca2-4bdb-aee4-21b1bc902843" "5bac19cb-0a86-402f-9149-cd478696b153" - "5c4d4892-cd90-411c-9969-0fc40600616a" "5c5563b1-45bc-4798-9b71-014094d63e38" - "5cc6bad6-cef7-4740-ba05-8e82236b2a4e" "5db8c816-cb03-4320-a3be-49de234001d5" - "5e06e9be-c5cd-42bf-bb74-b3166d689fff" "5fb871d9-eadf-424b-b13e-964d83e5b5fd" - "602daf3e-c3e7-4d81-b7ec-58d4264a35fb" "60937be9-a51e-4152-a0ad-1bdd86ebb47a" - "609e84da-f1fe-41a0-ac7e-7fcf1fa1a54b" "618970dd-16f1-42ff-b044-25ec7dc8cb61" - "63290bc3-1023-4aec-a211-e7625e169a69" "639f808d-63c7-49ee-be9c-1ce15b4c20cd" - "6403acb5-3723-496e-9ac5-373ab53f8ede" "658efd4d-984f-4ced-b817-8fa29f287339" - "69913601-ec80-402d-a452-d30c7a2b2cdc" "69ae269f-018e-4cb4-a6d2-b885820349ae" - "6bd77598-80eb-4607-8507-890ac2208f5e" "6bea55f1-922f-4ac0-8c2e-a4008a903de1" - "6f008aab-411c-47dd-96e4-cb2fc51a745b" "6f1de2f2-ce5a-43cb-92f4-33eee70622e6" - "70c74950-a9b3-4f60-949e-8fb2f2e38f3f" "72ad05a1-bbf9-4197-8874-9dd08f4a4451" - "74c55753-6102-4954-bc39-39cf1f278f6a" "74d3ce11-6e7e-46f5-a114-642369dd6c5c" - "76d79ed8-5260-429f-ad75-c6b2dc196b9d" "772e53a5-2e34-4d9e-af5b-5255ac305582" - "77b313d6-f45c-4855-8264-202d84742b0f" "787c2b78-10f9-47ae-ad45-6c266e9c342f" - "78fe477f-9b95-415a-a34d-16e4c7bb424b" "79a76175-4998-4bf5-987f-e1966221603d" - "79bb178d-b414-409c-b2b6-be7d322929ca" "79e5743d-0aa2-4106-ac65-9e93382c5ab1" - "7d31680e-8954-4e2f-83fe-d2c5884fba98" "7db47d14-0d2f-4c69-b047-bbb8d0dbfb85" - "7f07f2ee-d441-4e1d-a546-71b2d1b271aa" "7f3d0782-48d7-4afb-90ac-0826f280e98a" - "804d83e4-9f29-4ebf-85d2-703e833617b2" "81fdde15-95c3-4841-800b-7042423cac03" - "82239e29-6766-4413-abb9-bd744009c3f8" "8350588a-a8b0-4fa9-933a-b4bc302fe92a" - "84dca7c9-0e77-455c-9380-e7d903ce2aab" "851452be-4872-4481-8e6b-58f8f890e979" - "85388bb0-38d3-47c8-9c8d-467c571e9540" "87fe6e77-7934-4831-99c7-854fa1a07ad6" - "8ab89f6c-da1b-4189-bc35-57077310425b" "8b5405c7-7e18-41fe-af04-23310dbab7da" - "8b6b498f-14be-4873-acf2-b06ac05603f2" "8beb7c28-5ef7-438c-8310-db9f4d0f4e73" - "8c0cd50b-33bf-4bee-b505-a32ee049e63d" "8c59a1a3-c040-4d19-9bbf-9e2f484b124d" - "92e3e7b6-4a80-493b-adb5-f69bb0a65b14" "94bdb55e-b907-4ba5-9c8a-421d5ed1c8c9" - "95007d79-1a6e-49cc-9e23-48231ba82703" "96de7d07-cb04-41f2-bf3b-5f7e7eb870ee" - "9c873835-73b6-44f0-9609-b26e093062a5" "9d34092a-064d-4e2b-ab5b-c5179890ad71" - "9d88ca05-b436-4861-83ba-535af33f5fda" "9db755de-0dcc-41a0-8835-793c33bdc0ba" - "9dfd5a58-05c6-4ff8-98c0-591fcd2da5e1" "a0c7e729-5362-457a-974b-a98b46867097" - "a0cbce11-1a2c-42f1-91f3-e3dd22f7bdc4" "a22d05bf-f667-47fc-93a6-7b5eba99fcf6" - "a48a487b-44b5-4e4c-a8ca-b4ab95af8fed" "a51ddc12-6d8a-495b-accd-42367a32ef55" - "a53770de-735f-4be6-ac93-eaf6820d8107" "a63a878c-6ab4-4e3f-9b9d-8ec660a16143" - "a69b279a-c4bb-4d48-bddf-2f673719d6f2" "a82c273f-303e-448a-9046-e28bdb247867" - "a8a9672a-bd84-4e66-9179-81ead7639c7e" "a998f09d-8432-4124-9197-3b367a79f6a9" - "aabd6a9f-bfef-48d8-a393-1ba5c820cde4" "ad8c275d-1da4-4351-aea8-101f046bfa66" - "aee3bccc-e915-4367-a40d-4aae9aeb6beb" "af739a70-9f9f-4819-9e74-3fe20f5600a0" - "afc30462-c83c-409f-8df9-8dab221be52a" "b061cdf5-53ef-4837-b520-fa408621b009" - "b0fe41a7-d056-414a-b13f-4f52ba0705a2" "b5139cdf-1572-43e5-a47e-46faffde3caf" - "b68f3f51-61c6-47cc-89de-98f7f434de1d" "b6a9c228-1ccf-4daf-8b40-87c00943d028" - "b876c5b7-c794-47f5-a712-40b18ec26a94" "ba12e74f-6b40-411b-850b-ef0f55e5039d" - "bb66e10a-2737-47ec-8ae8-1339525138a9" "bc8a3aed-a82e-43d7-9825-bccb00cc4e1b" - "be050e07-c086-4185-8d01-d7e71c77f0d7" "bfcc0def-a879-42a9-aea7-0ba440a82118" - "c045515f-afe2-4f6f-8296-cbc6ce84a966" "c1358cb7-88a4-4260-99c5-66cb99d5cec7" - "c23a9cb6-5b40-47e6-a6d4-ea6ce143dc03" "c6fa067d-050d-469d-be22-d1c020a4cde8" - "c724d3eb-fc00-4915-b8fd-ebb6b53eb91e" "c7ec0c10-5592-47d0-a424-ac0b6d59da05" - "c899a74f-ca43-4299-9b41-a2997d2a79d2" "c99ad574-771d-46e6-ba1a-45589622d136" - "cb49b843-e832-41cf-ad5e-5f0a242eee5e" "cd2d8d5a-a32a-4e4b-8d4e-1fe24812ec42" - "cd9163e7-b6fe-4eb3-ad8c-417c5d14b1ff" "cd955db9-c2c5-41eb-b0b7-d140a58f957a" - "cde2b246-fa3c-486b-85ae-8504f9dcf56a" "cdfa65bc-90fc-4454-98a2-eb9971d5d7a6" - "ce92c91f-cded-4898-80a3-47954cb553cd" "cff10522-a1bc-4270-934d-74417e0b98be" - "d0145302-437c-46d1-9124-045c25765767" "d24bf5b0-55c7-44b3-bdd1-bb0a86b8f890" - "d3a30730-7fb2-43d9-85ed-3dc33aaa4b19" "d441fe94-9ab8-40f6-8d75-3ff60602a9bf" - "d542976d-74ec-4817-bf83-1583c89963b4" "d5cba1ae-e6d2-45ac-ae6c-67276258b2a6" - "d696bedb-d77a-4ced-9463-e50cbafadf61" "d7158fde-969c-4aff-b368-1026b2ffc6ae" - "d80b9b9e-a6b1-4084-bcd4-4a1270f31b9f" "d8c73f36-2f6c-466a-9dcf-8d90f92018a2" - "da013ee6-aed3-4e67-8e10-803cff7d5112" "dabc52d5-e602-4e77-b5cf-b99c6b36499a" - "dbfbbf73-0b7c-40af-905b-079baeacf67f" "dc53362a-21fc-4b5f-93e7-803b4a36b64e" - "dc5a9730-f49c-4f9f-a685-b49af8791757" "dd3bf3c6-feec-448a-9be0-964f4c159ffe" - "de4f77aa-8fc6-4f11-91c6-4815eb8b1c96" "ded2eabe-e578-4347-8639-245eda463b71" - "df7683c4-b5fc-40dd-9c18-b187c51cab4e" "dfcb61f8-50b0-4a96-a4ca-53430c14c83a" - "e0aea8df-98a8-468e-b05a-a279731f3c66" "e0fd8869-e2fd-45cc-8fa6-0962803d9093" - "e1b4c8bf-a0af-4625-a8f3-626699633d4e" "e31b3d87-7b78-4c24-88ae-136b67b35432" - "e40f0945-60bb-45b0-904f-f87bc933e88d" "e4bd0a3f-35ca-45f3-b222-d1a6ab8c7504" - "e4cc0814-a571-42fd-82fc-6ef063240b73" "e6ec201d-e936-4af1-a0ee-9928822f8c6b" - "e7d60683-e2c2-4033-b6ab-2d3ce1a7c183" "e85d76ee-1577-4a56-82ac-9fcf169a80ec" - "e89cb577-78d5-4e08-a02e-23abc45a24df" "ea822ec5-a85f-4c44-8e3b-26c353a3b605" - "eadf1b97-5f95-420c-a32a-08a30b1ba333" "ec5ddd8a-9992-4808-9c8c-a7764674dfc3" - "ed573b58-6a3d-4d9c-a839-569ed654cec7" "ed86d7cd-8331-4539-8578-fe92d2473539" - "ed8ed61f-3707-4b3d-acc3-edc1bf69475d" "edc2da79-9579-4cdd-af43-36a7413ba0fa" - "eec7dd20-7973-4304-a958-a6e9fada9c0d" "eed60160-ac1a-4ef7-b6cf-d7902f026255" - "efd0e2f7-f52d-4752-969f-566f2973e8c6" "efe57d8b-a7e4-4e13-8ec7-858dd8cb95d9" - "f205ee6a-deb5-4605-b58b-6d45fa9bdb88" "f2e64310-5893-4cea-8d34-f119d0f8dd1c" - "f41c30b6-d170-4446-aa4d-97a56676c011" "f454cf8a-f451-4bcb-8df5-46e2db7832b5" - "f554dd14-b123-4496-9dbe-8b91bf359746" "f9c80f87-698a-4e55-8f70-36f82d0210fb" - "fbaf13f0-754d-477f-9043-0bf59521d391" "fc0bd20d-c8e3-4532-b28a-d61aefd82dd5" - "fc146b4b-1ba1-41a2-b715-36066d143c12" "fcabc875-0b24-4e6c-8695-2f3093ea83bf" - "fcd4702f-1364-4953-9ef2-1031a02d3659" "fe42d772-789c-40dc-8e01-e5c846be2c1b" - "ffc7ea2e-e7c4-4d28-81c4-377c2238ee16" + (members "004f4aa2-5348-466d-93fc-7bc0e3ec94bd" "00647cbd-a85f-4955-9de2-1063abe6dce9" + "0122494a-2c1a-4228-a0b9-99d68cf7cf62" "0268ef84-7ff9-44b0-b021-026ed368be96" + "03904012-b049-465a-ba7c-73c7d7cf3fd4" "03f350cd-a050-4103-b887-45a35966ea3f" + "03f971e8-532c-4e17-81e6-41befc6eb80d" "04c256e6-fe54-4c32-a731-dd0970a52015" + "04d3b945-30a5-4ddc-a4aa-f656a051a31c" "04eb9081-1a33-44d4-b9b5-6541742b6528" + "05a8d7f2-97fd-4030-96b6-18b21aebd87c" "064a2aa0-aa11-4d6f-9cc9-436ca18cac5d" + "06cfa0cf-54a5-4a38-b42f-93f54414ea41" "07018d50-d514-4528-a9eb-3c2f2e1f537a" + "0740222e-4db6-4d6e-8e41-626302823b09" "077f8001-0526-4242-9a2f-f5b44295d372" + "0951501a-886c-4601-9fb9-9a54560e0fae" "09b464ea-6af7-4e7c-91b8-9242e44a5043" + "09cb28cd-09e4-40d3-bf83-a5c07166b224" "0a13d1e0-fad7-4b3d-b061-034383fc0244" + "0a46ad44-80a0-49ed-8a0d-f37b76c18c9a" "0beb0ae3-e1ea-4220-865e-1d4901171180" + "0c32b305-4487-434b-801f-e64b0ad34dcb" "0cf7f670-1fd2-4f08-9fc6-d469e27f855f" + "0f3277c4-5989-4545-938f-9c228e6bb066" "10e01ff2-2ab6-4784-afe4-c016bb5b8e7a" + "12c9c056-c572-452f-beb4-95019cb2086e" "1337f969-8590-4a0c-a987-bd997822e161" + "155bfc75-8fee-4660-a325-e68c3cda13d0" "161482ec-a3c5-46b1-beff-2963bf6da220" + "172b0d79-84e4-4c2f-bab7-93853079091d" "17481bba-ed5c-49c0-8e0f-a130338b30e8" + "18fe0e85-f721-4e68-bfb5-e731330cbceb" "190163da-1e4e-4f6f-b32a-6005b0affd87" + "19677679-f289-4a88-9759-d939af47af8d" "196ff75c-0bec-4331-8824-3264d2a862f5" + "1a590839-06b4-447d-a467-c59fb234afe2" "1b20a7df-ac3c-4590-b0fd-3f81fb0366d5" + "1b819622-1d94-4dc5-bc70-c839d1de64c3" "1bfb4b19-3eae-4966-80ee-16050231220c" + "1c3e385b-2637-4687-99b8-e239afc32fe3" "1d4c01cb-e727-4597-9224-3b92ed00135e" + "1df77167-8de0-4622-9173-b511ff88eb8c" "1e982547-f983-487b-9dae-9b478f87dc4f" + "1f095bc5-6109-4b91-b3a0-14c36cb97321" "1f4c4c2a-491c-49b6-b8ea-f85c510f87b9" + "1f7c2d1e-a356-4bf4-8004-94dfb8a3301b" "212f6554-54a1-451d-a236-da5967976229" + "2217700d-9e62-44ea-918c-420dc8cbc5b6" "22b60401-2505-4215-a1dc-5e8c0b65dbef" + "22c68b45-c07a-4677-bb38-6d0553bbc3d1" "2337cfb0-0dcc-4cad-a2a8-6c661459658e" + "23bb2522-4724-4b0e-88f2-f30da4b472d2" "24c8f7b5-cb99-4def-a39b-789be2a65893" + "24f9f4a7-a272-497a-b3d4-55d45579b2b0" "259286ee-af0b-4ad3-841d-51bbd1f0c628" + "25de60a4-f74b-4dcb-9de7-49a7ac9e5344" "2608afc9-af06-4e39-a362-348a52cc222f" + "26992865-baca-415c-99aa-8cbef87461ab" "282e2ac3-f919-413e-a8fe-3b9c181e332b" + "28531933-a00a-4b50-a1b7-3c2ec9d8ef8c" "287c0d55-75f3-4dd5-8fd5-34d9942fc6a1" + "28e48d06-8511-4470-b914-6b68fc72f785" "291e1d52-2417-48e2-ac6a-b8546bb02fd9" + "2979eb27-a7bf-4132-9e4d-4419178486df" "2a3ff817-b8c7-4c7b-9def-e4b3610dcdee" + "2a7a794a-35c5-44f2-b202-18cab46190d9" "2bb3e23d-3ff5-4ed8-88e4-f09fcbf4c081" + "2bdb5290-0cd3-4635-9f57-3d6db2364a1e" "2cb01b37-dd1e-45f2-81f0-03eed9dbe4f9" + "2dabeb4e-9713-47bc-9683-522ab941e90f" "2ddb592c-e452-4567-92d1-007510c33e6e" + "2e4b80c8-e656-4b7f-b053-19089463f14b" "2f1480db-5307-445c-b8b6-dfd3e7218ae8" + "2f1a0c5f-d84e-4dc5-b738-c8ee645da0b0" "2f97097a-1328-4ae1-8e4e-4bfe9a5fc1de" + "30596a92-a3a0-4e93-8646-9f3bbd8bf4c0" "30949205-d323-49d3-b6ef-ede99b200b6d" + "31170886-46d4-4a4a-bdcc-0a09f07c7fd8" "32191a42-fe70-4ee6-975f-23afc736a4db" + "32265a9c-94d6-4529-8fcd-ef5a2c47937b" "333a64fa-c7b3-4746-a960-fe999087d082" + "345c7c29-e13e-4f27-988c-d1f9556e8e01" "35ea0617-8e5e-4d03-b544-7f24c60a9198" + "35ea6d83-60e2-490a-9562-3b59e36c9d81" "36066773-abec-43f2-be1b-edbb391130b9" + "36d8da40-a570-4377-a24b-8ccd1d8779cd" "3788b1c4-8e78-4ce7-a48c-62fa5355a17e" + "37c9eb54-6ca2-49ab-99da-868ee0a8cfff" "37f3181b-0b7d-4913-a934-84e1c724da58" + "38680409-1eda-466d-8ef5-f7bad60d8c89" "38886844-6913-4638-92bc-53c6a02110fe" + "38d21e01-3025-4cc8-bbf4-5a2a9494b223" "3a3f0850-e079-48f7-9239-c430ba1f194c" + "3b302e23-5e49-41bc-a7f6-997efba03d4b" "3b42eadf-f93e-4c62-8de7-c0df39b1c176" + "3bf80c64-27a7-44de-ae3b-21a9bea7b235" "3c1211e2-dc91-489c-a7ed-4029b65435f8" + "3caf34ad-9ff4-45ba-97a4-0b0ed6b8c7a3" "3e17d2e2-0cf9-4e98-968e-3dac2ab124f3" + "3e553fbd-f3a1-47ee-86cc-672514b630f5" "3e9fd621-8d12-4460-9075-d17d4a61e838" + "3fe5f85c-db05-4784-b397-dc71112af0e1" "4059c2f0-0dc0-4a83-b328-543158c3b89e" + "4208ffd8-d6cb-4ab5-9b17-ae3e58ea6549" "43eb26d9-52f3-463b-839f-b917022f4e55" + "442fb699-de81-4d74-83b3-031b91e274bb" "4430c993-26ac-4141-866f-ba14885b5b3f" + "44407d83-b496-46d3-88fe-ff0624f385b1" "44420582-7ecf-456a-886e-2d89083cfd0c" + "44a71e52-cf8f-48b4-a554-87ccfabca467" "45474360-6c72-4b98-a3d2-11caef4e7cbe" + "460de490-282f-4c64-ae61-3796ca1d5de9" "4691a046-21b7-4787-9950-a8ede25dad4a" + "47f2c63a-9ea9-4b59-ad83-42db33a40411" "480ee85e-a53e-4593-8155-e35c3f6dba92" + "483462ae-fd8c-40cf-bbe7-aa3840269816" "4ab6cd40-c4a7-4875-933f-010fc9917f45" + "4ac589fa-c7fb-46bd-a951-c5d3e9fe5507" "4ae202d4-3a49-4333-8ab6-baa8e4f33023" + "4b71ac04-4dd9-48d2-9070-76f30692a443" "4d9ac1df-0e1f-45fa-81bc-3595b5c5af71" + "4ea6a7bd-27dc-4491-a7a6-e605c57904d9" "4fb7278f-2e98-4dbe-bfad-62c715683203" + "4fdaf5b5-65f9-491a-bced-fbda47809d48" "5058d14c-766c-4515-9da1-89b1eb4f7781" + "50d8d936-4190-4f6c-a8e2-9c8a6657613d" "517c4d22-d175-464e-9863-f437b6acddfc" + "51ab5048-8fd3-4bd1-b3ff-5ec0d373f228" "51ef0cc0-7db0-4a92-ae80-6600acbce246" + "5201cc88-b621-4670-a2d5-6c217a800c90" "52da1f39-277e-4bad-812d-5f4055b20541" + "52ee2629-7877-475f-80f5-27b06979e9c0" "52efc193-d969-4fcc-9e4a-cf648f082b08" + "52fa9ee0-c381-4626-b0f6-6d0360ad70a8" "53f445ee-f91f-4d62-ae17-e941241bfce0" + "5413e3f1-92bd-4c79-b941-4cbc3c775508" "5469e886-430c-4593-a0f1-d92b339db77f" + "54ca266b-df2d-49db-8be6-ee2ff2e1cb1b" "55f16221-65cc-4204-ae37-d0bf0dbdcc4a" + "58ec8bc9-9957-4884-bc99-dc5ec665558c" "591fbfaa-2ae0-4f35-94c6-79282d06c356" + "5a4a445d-fbee-4743-80fb-f012a9e13df4" "5a954333-813e-4f76-ba42-13480af66e4d" + "5ad1382e-7f3d-4bab-b088-802a1c72237c" "5b41fe66-b487-406c-ad2a-ccb9c863a008" + "5c4ada4d-980b-477d-8a0f-b9bd40beb1e6" "5db8381b-9212-4ef7-b7f4-58262d70dfe0" + "5e0743a1-6f69-41a0-9a60-e30fea459d23" "5e1c8af4-d325-4394-aee0-b426304bf12d" + "5f558718-9987-4af6-8610-0ebc87d45d72" "5feec148-cb49-469f-81e7-f11da3d5a3bd" + "60aede97-69da-4f86-b01f-8a45743a6f45" "626f0ff0-7f4d-41ab-b66f-9ac562a02154" + "626f39dd-07df-4d70-b38e-831ab8acfa13" "62adc539-ea87-4de9-b6d3-f89bf1e717ff" + "633608f8-1686-40be-abaa-22bf31d80694" "6568220b-0fc6-4211-a97f-1395d84d3f87" + "67ce2a06-eeef-4dd1-87bf-fd3c671df139" "683bde63-e2c1-4377-b4ee-3c38790aed22" + "69a7c005-ea26-4976-b537-04bb423b3a60" "69e62426-9b71-46e3-8c26-9cb35765e081" + "6a8a6939-bfef-4347-9d20-d221655b90e8" "6bd53f38-f2ca-40ce-8e94-9ae311c05184" + "6bf950e5-a5c9-455c-a790-72bca2601fcd" "6c04147b-2fb8-475d-8ea0-e0df2df004d3" + "6c666828-c3c8-49bb-a204-296b91543212" "6c82bc8b-88bc-4dd0-9123-080b3ec70114" + "6cae0760-beb6-42e2-8027-63f4f8187c02" "6f112cd3-0d54-4cb3-ba28-51b0493dd850" + "6f841a7b-4d3e-43df-aaf0-233e11d58ee8" "6fedd0db-59d5-4a27-b101-46d0d869f666" + "7038e9b5-537f-4ed6-a891-9fabca825acb" "70ddd622-ca5b-4ab1-a092-1980061491d0" + "70f95e8b-8223-479d-842f-140cedb4c7c4" "7184e25b-1d6d-4553-a4dc-53ee204b556c" + "7271b05e-9c92-4393-bab2-d36211e278a0" "7294bd18-6726-48ee-8c4f-431fa920fcde" + "73adc85e-6d30-4ecc-98f9-850db51af551" "73ceb8c9-5e51-4b2e-936a-6d8660033831" + "742d21f4-e027-4c95-ae31-ea2396a1f598" "7490bcba-1713-40b3-ba98-3442ed37815e" + "754a6b76-4016-43c8-b7b8-0680598e1111" "765ff6ea-3fb2-4883-90f2-f8ad859ece33" + "76b73043-103d-4aa6-a291-05b28a5ba104" "781cc2c5-92bb-4bb6-8916-fd2c9ecc9780" + "788a881f-a6c0-4ce1-826b-0908f73c4b4c" "7a46e209-42c9-4052-81fe-99436153a2de" + "7b2b67d2-1ee1-4f2f-9d42-3c3afc0e1741" "7b4e6406-01b4-468d-8dca-73ed08e2bfe4" + "7b60dbbc-3c0e-4e37-afb9-ddca68a7e02b" "7b6b04b3-f747-4877-9ac9-9cdb926be969" + "7b76c287-3bb9-4851-88e5-5e092c00d6a0" "7bb841a7-de2e-417f-9924-4a727f83d6be" + "7d3a274d-75ac-4987-ab1f-eb3ed6287da7" "7e1db0c5-b8f2-4eef-9e6f-6b4f7a04161f" + "7eb19569-e670-4103-ab73-7051cf825756" "7f3ce4ad-7f89-48a7-8104-a7cde9dc99df" + "7f96ac79-5a5e-401b-aa07-928ff8841117" "80a16ba4-89c2-4c4d-96bf-37b56e03ee36" + "80e43a72-ee9e-48d0-bcf5-ca292b3766cf" "818df7f0-55ae-46e1-8652-34279fb2a97c" + "81a56d56-b40b-4c2b-b86b-c4ca2b57bb16" "81d8aca5-4717-46f6-a861-64abe07f50f3" + "82626a3f-9467-445a-a4f0-99f0f14bc604" "839195b1-551c-42ee-82ad-fa6bb10de3a8" + "83a0cf2c-7773-4f89-8638-2fdea25f8ff7" "8451aa0f-80da-40f3-b9c0-76d7ed52908f" + "8506848e-aa71-41c0-beef-6ce68a8a9fee" "8536e323-5d02-4dd4-bbf6-edafa61bcfaf" + "85aee5a6-b3c4-4be6-8f29-8131cdf8d5f6" "85c8a4eb-9649-4d1a-82f9-42ae576a0b32" + "86bc5329-0827-4342-8c76-c30ca2b71d70" "890302f6-1140-493a-ac5e-c6ea27646a9c" + "8a1ecbd1-3e5c-458e-ae64-61134ea40ab7" "8a975f8a-210b-42c5-b0f6-e1350467b1a9" + "8abd7cf7-4f5b-4ab5-84b2-9c8cc7b1c952" "8b00dc52-7b01-4419-8b1d-875de94947b1" + "8b477d3d-82a4-47f1-ba7a-c9c3c900dd6a" "8b82b142-5347-426f-b51e-9b3b7044d35f" + "8bd988ea-ca39-4335-a922-f58c3f82d2ce" "8ccfbc0b-91bc-4054-a763-80ad92c18627" + "8d700592-7ac9-4295-b7ad-bcb83e184e19" "8e78366c-659e-4693-9ccb-340a3dddabaf" + "8f02c761-88d5-4419-ab12-17421faa73a6" "8ff54a44-a9de-4e05-8319-69c5372f86de" + "90782886-7666-47ae-bbf6-b72d096955cb" "90daa012-54e7-4a2c-9804-cdda0919be4f" + "913fb753-611a-4b4a-8a09-273238bed9a8" "922a2ecd-80de-4d95-9ebf-6490f8b44bef" + "92f8b4fc-6b29-42bc-9f98-43bf32a56ca0" "93fa2860-204d-4085-8905-d6fc6db1e3f4" + "95222f13-f682-40fc-acb0-a47e00406006" "954405ed-4ee6-450e-a179-c55a6c82bd41" + "955333c7-e26f-41b6-856f-ece94a50293a" "9772c5d9-51f3-4dbe-bedf-6093307ea094" + "9838073d-92e5-4ec6-94f9-45ef53c24fbf" "98658f1e-d6d5-44c6-9686-d1e3605b8de0" + "9896d0d7-0a91-43b4-b2d4-17f325cba11f" "98bc4c3f-ddea-4203-bad2-dcce7a0cf541" + "996cfb83-5ad1-4d40-a160-8063987d4fae" "99f88162-4344-4f12-8b43-cd929a9553b2" + "9a3fdc3a-5c4d-41ee-83e2-c7e042267f07" "9aa8d8e1-c9b0-4716-82dc-6811bc568b99" + "9b46da05-d1c8-4152-aaae-01df7e30ce96" "9bf82c75-cf0b-4c5b-89ce-bee184ebd0ea" + "9c0368d4-bf1e-4c9b-8be3-0378561604e5" "9c0f24ea-cc0d-4d15-80cb-d84d35085a2b" + "9d6d332b-6181-436f-ad76-0d537e8791a1" "9e906ed4-c9fd-4e25-91fc-c359dcabc6f8" + "a09b74a7-e8c2-4605-ab91-8eb8b4d3237c" "a131fa11-4933-466f-9140-9356414445a5" + "a16ce594-7946-4c3e-8f3a-6c37576c263b" "a1ed5c85-8df1-4c58-87f4-d4f7ebd93265" + "a1faf443-0ed0-4811-9a5f-acad8a77aedc" "a219ad04-760f-4112-94c5-86bd74b56ac6" + "a2418055-98d0-4fb2-9fef-2913bbbbede9" "a3671798-cb9d-41e8-8d68-dd0772cc6079" + "a5b90ef6-3cf5-4d48-b1b6-94f45a66f99c" "a5d6909d-9026-4907-b166-c82f5a809d2c" + "a6470a2f-0ad7-473b-9066-e8b292011a54" "a7185a82-eb30-448e-b1fd-a78a05b9f987" + "a81723c3-7907-4bf5-a68b-4cabc3e98f13" "a8b8ba60-8c79-4b70-93b6-9090839537ac" + "ab7a2a83-7a50-4b4e-8485-9967a8a334be" "abf9fca8-f589-4096-99da-5fef77ca58d7" + "ac02f401-4dd7-47b4-8c00-af966b04342b" "ac9a049e-4b62-40be-8826-f42770be9182" + "ad581eb3-9378-426b-9a43-ef1727bd4ae0" "ad8b5e4f-d136-4800-bd25-da832b2ba64b" + "ae1b305f-c406-424d-9ca8-7e15e6d90f08" "aea884d6-fa1a-4ee2-803b-04757eeee9d1" + "afbf76fe-2a7a-445b-9346-41d09324a988" "b0007123-a98c-4924-89b4-460cea022a40" + "b0b4cb97-64c0-412d-9d06-3a59f81d05ba" "b194b3bc-06da-4c87-b6db-a213ab22eb26" + "b1d7cd78-f654-4e35-868e-94f087ca50fb" "b32a5f73-ad4d-4f18-aa04-40a523048561" + "b3370557-4632-4d56-9e0a-cabfb46a47a2" "b38fffc3-0926-4279-8c56-bda99a1c0421" + "b47fc825-abcc-4d23-b575-a75f6588aacb" "b485fe95-6312-4658-a30a-f2b7d68c4d23" + "b4d93532-3b99-4c72-8841-601df29a8020" "b56bc782-145d-438f-bd20-84bd8933e3d3" + "b658195a-653a-4c57-bd13-1a49b3cb3515" "b68a8d39-64a7-4d1b-87fd-ed87a1014009" + "b745aa22-e3be-44d2-92f5-c0980ae0c1d9" "b83dc8b9-81b9-487c-93e4-2b238e1d6482" + "b9246968-5974-4941-be16-a500c7edabe8" "bb0bfb73-c488-4acc-adfc-096e5ad2bcd0" + "bc47993e-21c7-4313-bd12-7afe906eb389" "bc55a07c-e7ad-4e45-92d5-9cdc317f3ad5" + "bd420f44-56b3-48ed-a6e6-a11ad4afc4db" "bd422e50-0a94-4449-baf1-0f0ac789d719" + "bd5242e5-fbfa-4b3e-8160-0ea9e3722f05" "bd82550d-cc84-4a65-941e-438eeabe8be0" + "beaace61-745c-4963-b09b-fa307080d400" "bf1e7f5e-6d74-4966-96a3-7930f480a1bf" + "bf37ceb3-bfc8-492d-bbc7-ddee4982458d" "bfa20db4-ab38-4a37-808d-84c4d61ac963" + "bff12533-eb72-40e3-b653-63979ddc191c" "c0a3d6ba-d8f9-4781-8b13-771f1bc5c4c4" + "c0b89b98-cf6d-4928-943b-ed3ce30fd469" "c1052858-1af0-4632-ba5a-c710102f4aa9" + "c117ecae-c0b4-4f90-884c-bb4273d5905e" "c1bfa12c-0847-4396-bdc8-7a1d8c22ebc1" + "c288c105-6b7e-4656-8b56-01b6beece3f6" "c2c05350-695b-487a-8d69-72ed87f96605" + "c5255e53-ecab-42b4-abf6-d7e769f01e12" "c5d218ec-f4fe-4f85-8225-32434322fdec" + "c6657db9-056b-4fdf-b128-03be251e5bb9" "c68b6431-4d7e-42a2-bee5-737b1c1c0080" + "c754877e-4257-48b6-b07b-8b206c085695" "c86d58ee-f6df-4f44-9140-e0255368c5cc" + "c8a626d3-7c3f-46fd-abce-b5117c00064e" "c9e7b2aa-c167-401b-a9a3-e107d18388b8" + "c9fe63c5-e55e-42bc-9f6e-eb16de2cbaa8" "ca822aeb-7968-4153-9ef2-c8ac189a012a" + "ca9c2818-d2ce-4eb9-89bf-119b92ab9b14" "cacb9378-8d95-4e44-a0a0-1f6d4fb84c33" + "cae02d65-fc6f-4a6f-a2c1-a6b5b544cf22" "caf7d181-f513-4f03-9e96-f1371f65f34e" + "cd7e1d29-0d18-4af0-958d-9d0c3fbb190a" "ced19699-c0bb-47c3-9501-076af406edf5" + "cf49f9f0-c92e-44c1-af2b-6d8fc1e891bf" "cf5086b1-596b-4ccb-af87-cbba8450a696" + "cf6464d2-b751-45b4-800f-f91f4ed8f924" "cffc4e93-604d-4ee0-a89f-6977ea9a579b" + "d145c7a1-b890-4044-b5ca-546c0febe1fc" "d2332918-1e1e-4005-b871-dc526a38a593" + "d2d4559b-3881-40b4-b0d0-6934f9f10bf6" "d2f036d2-e15b-4beb-9622-bb14fd0d6468" + "d4827711-2117-4964-b004-b491660b5c43" "d702162b-d7be-41b6-9623-7cabe85e7e8e" + "d796f030-ad36-4ed1-8d3f-cbf1d6039dde" "d83038e4-f1a2-4fa6-ae00-0ec2c241cd60" + "d888a578-c745-4bf1-9dba-ebd4e15fa062" "d929b88d-d199-4ec6-b7dd-0ce84f051176" + "d9a68f13-1eff-4b25-b029-41482f897dae" "da8462f4-4cd3-4ab0-9520-8ea319a04312" + "da8bcb26-406a-4be5-91e0-f12b6a061dff" "da9d5f3d-116f-469d-9d29-0969e75d0033" + "db61197e-b7f2-4588-9df9-b7c3ddf7c381" "dbdb5206-65e2-4494-9bd6-6c4768f065f5" + "dc675158-db6a-4ad8-94aa-50fdbada4042" "dca2af64-40e8-4bb1-92d9-84917f962f81" + "dcc86fc9-97c1-48c6-9e96-8001ad8c4734" "dd20c8db-8f26-4339-bd40-6ff47ed23615" + "de1b5877-a452-4885-8e36-6c7c1bfec2d9" "de1f344c-39c4-451d-a290-bc5201b4981b" + "df355cff-8aca-4b89-afdc-50feb807156c" "e0b65104-90a1-40b6-9964-93e3e3382e0c" + "e1964be2-9ed5-4e8e-ab92-7ca93bfb33fe" "e1a63d77-6fd2-43b5-b656-c159708d4bff" + "e225c926-185b-42f7-8af3-b89acef0c85c" "e282ede1-8c58-49a6-9c6e-cbd4306ce258" + "e2f8f7c4-3dbb-42c1-932a-ebe5bc7f1cd0" "e317665d-7aef-4b71-ae0e-cf0d6f90aa64" + "e433d425-f2f8-4e03-a2e9-009d00733846" "e481a03f-b9fe-4d9b-aa74-bea400058d08" + "e5582107-2532-415a-b2d3-c7c39f9fa14d" "e7b94e94-f530-4da3-b4f4-bce2e0b1450f" + "e85a71c3-7398-4ae9-a299-ccbdcb5a67de" "e8e7229d-3689-44eb-8e03-a5437a8c456c" + "e90bfa48-9667-45e3-b97a-05050618d1de" "e90fd16e-409f-4db0-8122-58060342aba0" + "e916df97-aa8e-488f-9b6d-039ed6b51887" "e945b687-a80f-477b-a9de-57229ee4efa5" + "e99cbd20-e2c1-451a-bb8f-bbd00a1fec8e" "ea768885-c9f1-48c4-bef8-02bc4d329f1a" + "ebb0e031-6916-4932-83b0-38532714406f" "ebb25914-f6c8-4deb-81e5-28e517616beb" + "ec150d25-c701-4a05-9836-bd2197f5c43d" "ed255159-73ce-43ee-b221-65cae38e55fe" + "ee75cf28-9453-4d8a-ab51-66e15a80dd04" "eedb836c-69ce-4414-80e4-d2776b4fb901" + "ef59b453-53e9-4326-b76b-72584f120255" "f02b3f24-d2ca-4a1c-9409-5d0b593ee7ae" + "f0376897-9fc5-4998-bcbf-4edebde08f60" "f0447121-151c-4fae-8fa1-4d46d6e29300" + "f1feb018-0a21-4c4b-bd29-acfc43b47831" "f4ad4b1d-b02c-4776-b36b-5c389861d3f2" + "f510db38-e43b-4cb5-8dd2-c32506895dba" "f5554674-c48b-4647-8579-b514641777ca" + "f6140eda-8e35-4edc-b30f-2af8439f45de" "f62131bf-53da-41e8-bf65-d44945d50029" + "f622a60a-8b14-4c4d-8638-0f90167e8969" "f6267427-722c-478a-9b2e-96f9a4e52774" + "f6876e68-dc06-4570-a86d-99e126cb177b" "f6dd143a-5613-405d-8759-d4b6e4208302" + "f75e66b6-04b0-4a6a-8ad4-2e35f04aeb8b" "f8c08adf-6e02-4222-953d-77a3a305c95f" + "fb4bcd9b-c68a-44b3-a50d-3fbc0503a246" "fc247906-b416-46b0-a4aa-ac3f602e1a3a" + "fd2fb374-7619-43d4-90e2-892db0e97b77" "fdc866a0-f2df-40b5-9eab-c8fdf6d79116" + "ff7011a7-a4df-4c9e-bd19-9381c07f33a3" "ff88198d-e9bf-4204-bdc6-854d7f214487" ) ) )