Update teardrop graphics

Make sure that 'w' is on the minor axis of the pad attachment
Change track ends to "wave" denoting that they continue
Standardize size for each at 275x130px
Add 2x HiDPI version
This commit is contained in:
Seth Hillbrand 2024-02-19 17:05:08 -08:00
parent 89592d08bf
commit 421b95d1fa
26 changed files with 860 additions and 719 deletions

View File

@ -357,6 +357,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_24.png" ), 24, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_24.png" ), 24, wxT( "light" ) );
@ -758,6 +759,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_dark_24.png" ), 24, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_dark_24.png" ), 24, wxT( "dark" ) );
@ -1159,6 +1161,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_16.png" ), 16, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_16.png" ), 16, wxT( "light" ) );
@ -1560,6 +1563,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_dark_16.png" ), 16, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_dark_16.png" ), 16, wxT( "dark" ) );
@ -1961,6 +1965,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_32.png" ), 32, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_32.png" ), 32, wxT( "light" ) );
@ -2362,6 +2367,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_dark_32.png" ), 32, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_dark_32.png" ), 32, wxT( "dark" ) );
@ -2763,6 +2769,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_48.png" ), 48, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_48.png" ), 48, wxT( "light" ) );
@ -3164,6 +3171,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_dark_48.png" ), 48, wxT( "dark" ) );
@ -3565,6 +3573,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_64.png" ), 64, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_64.png" ), 64, wxT( "light" ) );
@ -3966,6 +3975,7 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::about].emplace_back( BITMAPS::about, wxT( "about_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_aligned_dimension].emplace_back( BITMAPS::add_aligned_dimension, wxT( "add_aligned_dimension_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_arc].emplace_back( BITMAPS::add_arc, wxT( "add_arc_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bezier].emplace_back( BITMAPS::add_bezier, wxT( "add_bezier_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_board].emplace_back( BITMAPS::add_board, wxT( "add_board_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus2bus].emplace_back( BITMAPS::add_bus2bus, wxT( "add_bus2bus_dark_64.png" ), 64, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::add_bus].emplace_back( BITMAPS::add_bus, wxT( "add_bus_dark_64.png" ), 64, wxT( "dark" ) );
@ -4516,6 +4526,18 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::reannotate_up_right].emplace_back( BITMAPS::reannotate_up_right, wxT( "reannotate_up_right_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::icon_pagelayout_editor].emplace_back( BITMAPS::icon_pagelayout_editor, wxT( "icon_pagelayout_editor_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::wizard_add_fplib_icon].emplace_back( BITMAPS::wizard_add_fplib_icon, wxT( "wizard_add_fplib_icon_dark_48.png" ), 48, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes_130.png" ), 130, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes_130.png" ), 130, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes_130.png" ), 130, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes_dark_130.png" ), 130, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes_dark_130.png" ), 130, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes_dark_130.png" ), 130, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes_260.png" ), 260, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes_260.png" ), 260, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes_260.png" ), 260, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes_dark_260.png" ), 260, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes_dark_260.png" ), 260, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes_dark_260.png" ), 260, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::att_bridge].emplace_back( BITMAPS::att_bridge, wxT( "att_bridge.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::att_pi].emplace_back( BITMAPS::att_pi, wxT( "att_pi.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::att_splitter].emplace_back( BITMAPS::att_splitter, wxT( "att_splitter.png" ), -1, wxT( "light" ) );
@ -4548,9 +4570,6 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::stroke_dashdotdot].emplace_back( BITMAPS::stroke_dashdotdot, wxT( "stroke_dashdotdot.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::stroke_dot].emplace_back( BITMAPS::stroke_dot, wxT( "stroke_dot.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::stroke_solid].emplace_back( BITMAPS::stroke_solid, wxT( "stroke_solid.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::tune_diff_pair_length_legend].emplace_back( BITMAPS::tune_diff_pair_length_legend, wxT( "tune_diff_pair_length_legend.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::tune_diff_pair_skew_legend].emplace_back( BITMAPS::tune_diff_pair_skew_legend, wxT( "tune_diff_pair_skew_legend.png" ), -1, wxT( "light" ) );
aBitmapInfoCache[BITMAPS::tune_single_track_length_legend].emplace_back( BITMAPS::tune_single_track_length_legend, wxT( "tune_single_track_length_legend.png" ), -1, wxT( "light" ) );
@ -4588,9 +4607,6 @@ void BuildBitmapInfo( std::unordered_map<BITMAPS, std::vector<BITMAP_INFO>>& aBi
aBitmapInfoCache[BITMAPS::stroke_dashdotdot].emplace_back( BITMAPS::stroke_dashdotdot, wxT( "stroke_dashdotdot_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::stroke_dot].emplace_back( BITMAPS::stroke_dot, wxT( "stroke_dot_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::stroke_solid].emplace_back( BITMAPS::stroke_solid, wxT( "stroke_solid_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_sizes].emplace_back( BITMAPS::teardrop_sizes, wxT( "teardrop_sizes_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_rect_sizes].emplace_back( BITMAPS::teardrop_rect_sizes, wxT( "teardrop_rect_sizes_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::teardrop_track_sizes].emplace_back( BITMAPS::teardrop_track_sizes, wxT( "teardrop_track_sizes_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::tune_diff_pair_length_legend].emplace_back( BITMAPS::tune_diff_pair_length_legend, wxT( "tune_diff_pair_length_legend_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::tune_diff_pair_skew_legend].emplace_back( BITMAPS::tune_diff_pair_skew_legend, wxT( "tune_diff_pair_skew_legend_dark.png" ), -1, wxT( "dark" ) );
aBitmapInfoCache[BITMAPS::tune_single_track_length_legend].emplace_back( BITMAPS::tune_single_track_length_legend, wxT( "tune_single_track_length_legend_dark.png" ), -1, wxT( "dark" ) );

View File

@ -659,6 +659,13 @@ set( BMAPS_256
icon_pcbcalculator
)
# Teardrop images (275x130 native size) for teardrop dialogs
set( BMAPS_TEARDROPS
teardrop_sizes
teardrop_rect_sizes
teardrop_track_sizes
)
# Images in this section are generated at whatever resolution is set in the source SVG file
# Use Inkscape Document Properties > Custom Size to set (make sure units are pixels)
# These are used for images in the UI that are not-square or very large (infographics, etc)
@ -696,9 +703,6 @@ set( BMAPS_OTHER
stroke_dashdotdot
stroke_dot
stroke_solid
teardrop_sizes
teardrop_rect_sizes
teardrop_track_sizes
tune_diff_pair_length_legend
tune_diff_pair_skew_legend
tune_single_track_length_legend
@ -942,6 +946,10 @@ if( MAINTAIN_PNGS )
bitmap_dir( 48 48 "${BMAPS_BIG}" )
bitmap_dir( 275 130 "${BMAPS_TEARDROPS}" )
bitmap_dir( 550 260 "${BMAPS_TEARDROPS}" )
bitmap_dir( -1 -1 "${BMAPS_OTHER}" )
configure_file( ${BITMAP_INFO_TEMPLATE} ${BITMAP_INFO_FILE} NEWLINE_STYLE UNIX )

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 22.924506 15.555556"
viewBox="0 0 30.555556 14.444445"
version="1.1"
sodipodi:docname="teardrop_rect_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="206.32056"
height="140"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -29,13 +29,13 @@
id="namedview30"
showgrid="true"
inkscape:zoom="5.656854"
inkscape:cx="60.104079"
inkscape:cy="123.6553"
inkscape:cx="2.0329321"
inkscape:cy="77.163031"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:document-rotation="0"
inkscape:current-layer="g1279"
inkscape:current-layer="Слой_1"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-bbox-edge-midpoints="true"
@ -51,69 +51,38 @@
opacity="0.13"
empspacing="2"
visible="false"
originx="-0.64005777"
originy="-4.388889" />
originx="6.9095774"
originy="-7.5000006" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
id="defs159429">
<marker
style="overflow:visible"
id="marker2044"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend"
inkscape:isstock="true">
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042" />
</marker>
<marker
style="overflow:visible"
id="marker2034"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mstart"
inkscape:isstock="true">
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2032" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect927"
is_visible="true"
lpeversion="1"
satellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="0.61"
chamfer_steps="1"
flexible="false"
use_knot_distance="true"
apply_no_radius="true"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 | F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1 @ F,0,0,1,0,0,0,1" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect925"
@ -132,6 +101,80 @@
only_selected="false"
hide_knots="false"
nodesatellites_param="F,0,0,1,0,0.61,0,1 @ F,0,0,1,0,0.61,0,1 @ F,0,0,1,0,0.61,0,1 @ F,0,0,1,0,0.61,0,1" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1117"
is_visible="true"
lpeversion="1"
satellites_param="F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="10"
chamfer_steps="1"
flexible="true"
use_knot_distance="false"
apply_no_radius="false"
apply_with_radius="false"
only_selected="true"
hide_knots="false"
nodesatellites_param="F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1 @ F,1,0,1,0,0,0,1" />
<inkscape:path-effect
effect="fillet_chamfer"
id="path-effect1740"
is_visible="true"
lpeversion="1"
satellites_param="IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1"
unit="px"
method="auto"
mode="F"
radius="10"
chamfer_steps="1"
flexible="true"
use_knot_distance="false"
apply_no_radius="false"
apply_with_radius="true"
only_selected="false"
hide_knots="false"
nodesatellites_param="IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1 @ IC,1,0,1,0,0,0,1" />
<marker
style="overflow:visible"
id="marker2044"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend"
inkscape:isstock="true"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304585"
markerHeight="5.1962252"
preserveAspectRatio="xMidYMid">
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042" />
</marker>
<marker
style="overflow:visible"
id="marker2034"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mstart"
inkscape:isstock="true"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304585"
markerHeight="5.1962256"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2032" />
</marker>
<style
id="style159427">.cls-1{fill:#1a81c4;}</style>
<marker
style="overflow:visible"
id="marker2034-3"
@ -143,12 +186,12 @@
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2032-6" />
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2032-7" />
</marker>
<marker
style="overflow:visible"
id="marker2044-7"
id="marker2044-5"
refX="0"
refY="0"
orient="auto"
@ -157,173 +200,165 @@
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042-5" />
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042-9" />
</marker>
<marker
style="overflow:visible"
id="marker1859"
id="marker1675-6"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mstart"
inkscape:isstock="true"
inkscape:collect="always">
inkscape:collect="always"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304581"
markerHeight="5.1962252"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1857" />
id="path1673-7" />
</marker>
<marker
style="overflow:visible"
id="marker1869"
id="marker2029-5"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend"
inkscape:isstock="true"
inkscape:collect="always">
inkscape:collect="always"
viewBox="0 0 6.9304588 5.1962256"
markerWidth="6.9304581"
markerHeight="5.1962252"
preserveAspectRatio="xMidYMid">
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1867" />
id="path2027-3" />
</marker>
<marker
style="overflow:visible"
id="marker1675"
refX="0"
refY="0"
markerWidth="1.0001216"
markerHeight="0.99900001"
refX="12.514034"
refY="12.5"
orient="auto"
inkscape:stockid="Arrow2Mstart"
inkscape:isstock="true"
inkscape:collect="always">
id="marker58982"
viewBox="0 0 25.028068 25"
preserveAspectRatio="xMidYMid">
<path
transform="scale(0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path1673" />
</marker>
<marker
style="overflow:visible"
id="marker2029"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend"
inkscape:isstock="true"
inkscape:collect="always">
<path
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2027" />
id="rect1543-1"
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.804953,25 c 0,0 1.590039,-8.333333 -3.719295,-12.5 C 15.776322,8.3333331 17.725841,0 17.725841,0 H 0 v 25 z"
sodipodi:nodetypes="czcccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g2832"
transform="translate(-0.57549644,-3.95)">
<g
id="g1279"
transform="translate(-15,-13)">
<path
style="fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 25,19.380001 8.499999,3.173081 v 1.903843 L 25,27.63 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:#f2647e;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 25,22 A 1.5,1.5 0 0 0 23.5,23.5 1.5,1.5 0 0 0 25,25 h 8.5 A 1.5,1.5 0 0 0 35,23.5 1.5,1.5 0 0 0 33.5,22 Z"
id="path1389" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 18,17.364192 V 29.572565"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 15.631052,17.05 h 4"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="28.523277"
y="32.339031"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="28.523277"
y="32.339031"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="36.761894"
y="24.219519"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="36.761894"
y="24.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 15.631052,29.95 h 4"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 31.749087,30.4 H 26.250913"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 32.15,32.45 V 25.5"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 26,32.45 V 27.928417"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker2034-3);marker-end:url(#marker2044-7);paint-order:fill markers stroke"
d="m 36,19.853065 v 7.29387"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 37.495882,19.55 H 26"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 37.495882,27.45 H 26"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f29100;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="m 20.61,17 h 4.78 A 0.61,0.61 45 0 1 26,17.61 l 0,11.78 A 0.61,0.61 135 0 1 25.39,30 H 20.61 A 0.61,0.61 45 0 1 20,29.39 V 17.61 A 0.61,0.61 135 0 1 20.61,17 Z"
id="path919"
inkscape:original-d="m 20,17 h 6 v 13 h -6 z"
inkscape:path-effect="#path-effect925" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="16"
y="25"
id="text1327"><tspan
sodipodi:role="line"
id="tspan1325"
x="16"
y="25" /></text>
<path
id="path1395"
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0115861"
d="m 16.211272,24.200817 c -0.06644,-0.0474 -0.07492,-0.142609 -0.0543,-0.21603 0.03755,-0.171715 0.09221,-0.33945 0.125688,-0.512009 0.0099,-0.07173 -0.08865,-0.03617 -0.104462,-0.07075 0.05535,-0.02215 0.272318,-0.0971 0.309022,-0.08647 -0.05284,0.231035 -0.126084,0.457376 -0.16785,0.69088 -0.0096,0.04942 -0.01877,0.143452 0.05743,0.136976 0.08154,-0.01837 0.136664,-0.08948 0.188704,-0.149972 0.146398,-0.185899 0.246456,-0.404577 0.311538,-0.631172 0.006,-0.01902 0.006,-0.03198 0.0337,-0.0359 0.08177,-0.01158 0.128118,-0.01158 0.129702,0.006 0.0016,0.01756 -0.02984,0.112101 -0.04044,0.16763 -0.04377,0.166287 -0.09876,0.330476 -0.124015,0.500965 -0.008,0.0495 -0.0016,0.115372 0.0541,0.133548 0.07241,0.02516 0.156362,0.0025 0.218107,-0.03976 0.108793,-0.08802 0.176777,-0.21744 0.221445,-0.347884 0.02003,-0.06741 0.03644,-0.141598 0.01733,-0.210883 -0.03051,-0.05999 -0.105859,-0.0993 -0.105523,-0.173011 0.02013,-0.05536 0.113058,-0.07692 0.155168,-0.03274 0.09926,0.1191 -0.01965,0.456679 -0.07245,0.561041 -0.07178,0.146447 -0.192177,0.283837 -0.356501,0.322339 -0.08397,0.009 -0.186675,0.01354 -0.249408,-0.05363 -0.04397,-0.04809 -0.04632,-0.116057 -0.03725,-0.17708 -7.33e-4,-0.04261 0.0242,-0.113639 0.01471,-0.137725 -0.06032,0.09528 -0.117812,0.195018 -0.20253,0.271507 -0.06453,0.06235 -0.150542,0.108507 -0.242505,0.100487 -0.02696,-0.0014 -0.05496,-0.0041 -0.07941,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
</g>
id="g1670"
transform="translate(0.04070892,0.44444466)">
<path
style="fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.0999996;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 16.974139,1.187498 8.499999,2.586544 v 1.5519216 l -8.499999,2.5865387 z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#f2647e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker58982);paint-order:fill markers stroke"
d="m 16.945948,4.5500001 h 9.000936"
id="path1389"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="19.444765"
y="13.389034"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="19.444765"
y="13.389034"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="28.736031"
y="5.2695189"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="28.736031"
y="5.2695189"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675-6);marker-end:url(#marker2029-5);paint-order:fill markers stroke"
d="M 22.80656,11.45 H 17.308386"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 23.207473,13.5 V 6.5500002"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 17.057473,13.5 V 8.9784172"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675-6);marker-end:url(#marker2029-5);paint-order:fill markers stroke"
d="M 27.974139,1.4169533 V 7.6552637"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 29.470021,1.1763896 H 17.974139"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 29.470021,7.9166668 H 17.974139"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f29100;fill-opacity:1;fill-rule:nonzero;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 4.1440078,0.05 H 16.474007 a 0.61,0.61 45 0 1 0.61,0.61 v 7.7800002 a 0.61,0.61 135 0 1 -0.61,0.61 H 4.1440078 a 0.61,0.61 45 0 1 -0.61,-0.61 V 0.66 a 0.61,0.61 135 0 1 0.61,-0.61 z"
id="path919"
inkscape:path-effect="#path-effect925"
inkscape:original-d="M 3.5340078,0.05 H 17.084007 V 9.0500002 H 3.5340078 Z" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="7.9741387"
y="6.0500002"
id="text1327"><tspan
sodipodi:role="line"
id="tspan1325"
x="7.9741387"
y="6.0500002" /></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675-6);marker-end:url(#marker2029-5);paint-order:fill markers stroke"
d="M 2.5196221,0.3697474 V 8.8003422"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.1506744,0.0555555 H 3.4840078"
id="path1878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.1506744,9.0444452 H 3.4840078"
id="path1585"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0115861"
d="m 0.0642275,4.9881801 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.108793,-0.08802 0.1767768,-0.21744 0.2214454,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24.659047 14.12665"
viewBox="0 0 30.555555 14.444445"
version="1.1"
sodipodi:docname="teardrop_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="221.93143"
height="127.13985"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -24,16 +24,16 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
inkscape:window-width="2053"
inkscape:window-height="1497"
id="namedview30"
showgrid="true"
inkscape:zoom="7.9999996"
inkscape:cx="62.375003"
inkscape:cy="35.062502"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:zoom="2.828427"
inkscape:cx="74.599769"
inkscape:cy="111.89965"
inkscape:window-x="3885"
inkscape:window-y="241"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g1330"
inkscape:snap-bbox="true"
@ -52,7 +52,7 @@
empspacing="2"
visible="false"
originx="1.0534922"
originy="-6.1400174" />
originy="-6.1400177" />
</sodipodi:namedview>
<metadata
id="metadata43">
@ -183,6 +183,21 @@
style="fill:#42b8eb;fill-opacity:1;fill-rule:evenodd;stroke:#42b8eb;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2027" />
</marker>
<marker
markerWidth="1.0001216"
markerHeight="0.99900001"
refX="12.514034"
refY="12.5"
orient="auto"
id="marker58982"
viewBox="0 0 25.028068 25"
preserveAspectRatio="xMidYMid">
<path
id="rect1543-1"
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.804953,25 c 0,0 1.590039,-8.333333 -3.719295,-12.5 C 15.776322,8.3333331 17.725841,0 17.725841,0 H 0 v 25 z"
sodipodi:nodetypes="czcccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
@ -191,91 +206,96 @@
transform="translate(1.1590478,-5.8289061)">
<g
id="g1330">
<path
style="opacity:1;fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10,7.3000005 8.105999,3.2423125 v 1.945382 L 10,15.73 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="M 12,10 A 1.5,1.5 0 0 0 10.5,11.5 1.5,1.5 0 0 0 12,13 h 7 A 1.5,1.5 0 0 0 20.5,11.5 1.5,1.5 0 0 0 19,10 Z"
id="path1389" />
<path
id="circle1364-5-3"
style="fill:#f29100;fill-opacity:1;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 6.6210938,5.8789062 A 5.620162,5.620162 0 0 0 1,11.5 5.620162,5.620162 0 0 0 6.6210938,17.121094 5.620162,5.620162 0 0 0 12.240234,11.5 5.620162,5.620162 0 0 0 6.6210938,5.8789062 Z M 6.5703125,9.5 a 2,2 0 0 1 0.050781,0 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 1.949219,-2 z" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="13.323277"
y="19.93903"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
<g
id="g1482"
transform="translate(2.9482539,0.15889759)">
<path
style="opacity:1;fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10,7.3000005 8.105999,3.2423125 v 1.945382 L 10,15.73 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#f2647e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker58982);paint-order:fill markers stroke"
d="m 10.71027,11.5 h 8.5"
id="path1389"
sodipodi:nodetypes="cc" />
<path
id="circle1364-5-3"
style="fill:#f29100;fill-opacity:1;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 6.6210938,5.8789062 A 5.620162,5.620162 0 0 0 1,11.5 5.620162,5.620162 0 0 0 6.6210938,17.121094 5.620162,5.620162 0 0 0 12.240234,11.5 5.620162,5.620162 0 0 0 6.6210938,5.8789062 Z M 6.5703125,9.5 a 2,2 0 0 1 0.050781,0 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 1.949219,-2 z" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="13.323277"
y="19.93903"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.761892"
y="12.219519"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="13.323277"
y="19.93903"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.761892"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 16.738682,18 H 10.681468"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 16.95,19.9 V 13.5"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.45,19.9 V 16"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 21,7.8530647 V 15.146935"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.495882,7.55 H 11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.495882,15.45 H 11"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0131111;stroke-dasharray:none"
d="m -0.9098341,12.415541 c -0.05881,-0.01446 -0.125421,-0.08739 -0.1458811,-0.159874 -0.03991,-0.141402 -0.01101,-0.32909 0.08088,-0.521747 0.142716,-0.299272 0.341307,-0.465474 0.556917,-0.466018 0.109686,-3.26e-4 0.170882,0.02724 0.196526,0.08826 l 0.01743,0.04141 0.01376,-0.0521 c 0.13533,-0.520221 0.137807,-0.532234 0.115007,-0.555046 -0.01422,-0.01446 -0.04175,-0.02153 -0.08056,-0.02072 -0.03762,6.42e-4 -0.05858,-0.0044 -0.05858,-0.0146 0,-0.01013 0.05326,-0.02382 0.147624,-0.03794 0.0812,-0.01215 0.1668,-0.02545 0.190288,-0.02952 0.02477,-0.0043 0.04266,-0.002 0.04266,0.0058 0,0.0073 -0.08583,0.357408 -0.190746,0.778117 -0.104914,0.420707 -0.187763,0.772695 -0.184093,0.782195 0.01376,0.03553 0.06454,0.01639 0.12964101,-0.04871 0.09151999,-0.09151 0.10725499,-0.06381 0.02201999,0.03867 -0.113769,0.136756 -0.22951,0.201587 -0.307175,0.17207 -0.05863,-0.02229 -0.07143,-0.09951 -0.03853,-0.233318 0.0073,-0.03075 -0.0064,-0.02137 -0.09592,0.06358 -0.150101,0.142851 -0.287954,0.199727 -0.410898,0.169515 z m 0.312176,-0.178513 c 0.09152,-0.0456 0.175837,-0.144347 0.245429,-0.287521 0.121796,-0.250588 0.144183,-0.509454 0.05032,-0.583262 -0.04175,-0.03291 -0.120467,-0.03541 -0.18281,-0.0058 -0.156203,0.07412 -0.340343,0.414117 -0.367409,0.678383 -0.02064,0.200723 0.08478,0.28278 0.254466,0.198208 z"
id="path3658-0"
sodipodi:nodetypes="ssscscsssssssssssssssssssss" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 0.7047659,6.2180622 V 16.718061"
id="path1043-2"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m -1.1034923,5.8847179 h 6.6"
id="path1878-3"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m -1.1034923,17.093061 h 6.6"
id="path1585-7"
sodipodi:nodetypes="cc" />
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="21.761892"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 16.738682,18 H 10.681468"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 16.95,19.9 V 13.5"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.45,19.9 V 16"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 21,7.8530647 V 15.146935"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.495882,7.55 H 11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.495882,15.45 H 11"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0131111;stroke-dasharray:none"
d="m -0.9098341,12.415541 c -0.05881,-0.01446 -0.125421,-0.08739 -0.1458811,-0.159874 -0.03991,-0.141402 -0.01101,-0.32909 0.08088,-0.521747 0.142716,-0.299272 0.341307,-0.465474 0.556917,-0.466018 0.109686,-3.26e-4 0.170882,0.02724 0.196526,0.08826 l 0.01743,0.04141 0.01376,-0.0521 c 0.13533,-0.520221 0.137807,-0.532234 0.115007,-0.555046 -0.01422,-0.01446 -0.04175,-0.02153 -0.08056,-0.02072 -0.03762,6.42e-4 -0.05858,-0.0044 -0.05858,-0.0146 0,-0.01013 0.05326,-0.02382 0.147624,-0.03794 0.0812,-0.01215 0.1668,-0.02545 0.190288,-0.02952 0.02477,-0.0043 0.04266,-0.002 0.04266,0.0058 0,0.0073 -0.08583,0.357408 -0.190746,0.778117 -0.104914,0.420707 -0.187763,0.772695 -0.184093,0.782195 0.01376,0.03553 0.06454,0.01639 0.12964101,-0.04871 0.09151999,-0.09151 0.10725499,-0.06381 0.02201999,0.03867 -0.113769,0.136756 -0.22951,0.201587 -0.307175,0.17207 -0.05863,-0.02229 -0.07143,-0.09951 -0.03853,-0.233318 0.0073,-0.03075 -0.0064,-0.02137 -0.09592,0.06358 -0.150101,0.142851 -0.287954,0.199727 -0.410898,0.169515 z m 0.312176,-0.178513 c 0.09152,-0.0456 0.175837,-0.144347 0.245429,-0.287521 0.121796,-0.250588 0.144183,-0.509454 0.05032,-0.583262 -0.04175,-0.03291 -0.120467,-0.03541 -0.18281,-0.0058 -0.156203,0.07412 -0.340343,0.414117 -0.367409,0.678383 -0.02064,0.200723 0.08478,0.28278 0.254466,0.198208 z"
id="path3658-0"
sodipodi:nodetypes="ssscscsssssssssssssssssssss" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 0.7047659,6.2180622 V 16.718061"
id="path1043-2"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m -1.1034923,5.8847179 h 6.6"
id="path1878-3"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m -1.1034923,17.093061 h 6.6"
id="path1585-7"
sodipodi:nodetypes="cc" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 22.263711 12.0625"
viewBox="0 0 30.555556 14.444444"
version="1.1"
sodipodi:docname="teardrop_track_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="200.3734"
height="108.5625"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -24,16 +24,16 @@
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="3840"
inkscape:window-height="2109"
inkscape:window-width="2173"
inkscape:window-height="1562"
id="namedview30"
showgrid="true"
inkscape:zoom="8"
inkscape:cx="20.25"
inkscape:cy="66.8125"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
inkscape:zoom="4"
inkscape:cx="123.25"
inkscape:cy="74.75"
inkscape:window-x="4403"
inkscape:window-y="236"
inkscape:window-maximized="0"
inkscape:document-rotation="0"
inkscape:current-layer="g2158"
inkscape:snap-bbox="true"
@ -52,36 +52,16 @@
empspacing="2"
snapvisiblegridlinesonly="true"
visible="false"
originx="-0.98750015"
originy="-7.7222225" />
originx="-0.98750017"
originy="-7.7222222" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
@ -204,6 +184,34 @@
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042-7" />
</marker>
<marker
markerWidth="25.028069"
markerHeight="25"
refX="12.514034"
refY="12.5"
orient="auto"
id="marker58982">
<path
id="rect1543-1"
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.804953,25 c 0,0 1.590039,-8.333333 -3.719295,-12.5 C 15.776322,8.3333331 17.725841,0 17.725841,0 H 0 v 25 z"
sodipodi:nodetypes="czcccc" />
</marker>
<marker
markerWidth="1.0001216"
markerHeight="0.99900001"
refX="12.514034"
refY="12.5"
orient="auto"
id="marker58982-2"
viewBox="0 0 25.028068 25"
preserveAspectRatio="xMidYMid">
<path
id="rect1543-1-7"
style="fill:#f2647e;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.804953,25 c 0,0 1.590039,-8.333333 -3.719295,-12.5 C 15.776322,8.3333331 17.725841,0 17.725841,0 H 0 v 25 z"
sodipodi:nodetypes="czcccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
@ -224,91 +232,96 @@
y="13" /></text>
<g
id="g2158">
<path
id="path1037"
style="fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10.45,8.1269531 v 6.7499989 l 6.492484,-2.424928 v -1.902095 z" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f2647e;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
d="M 10,10 A 1.5,1.5 0 0 0 8.5,11.5 1.5,1.5 0 0 0 10,13 h 7.949219 a 1.5,1.5 0 0 0 1.5,-1.5 1.5,1.5 0 0 0 -1.5,-1.5 z"
id="path1389" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.975081,7.3226424 V 15.672084"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.94999995,7.05 H 4.45"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="12.773277"
y="18.95376"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
<g
id="g1896"
transform="translate(4.1424499,1.1944444)">
<path
id="path1037"
style="fill:#bf2641;fill-opacity:1;stroke:#f2647e;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10.45,8.1269531 v 6.7499989 l 6.492484,-2.424928 v -1.902095 z" />
<path
style="fill:none;fill-opacity:1;stroke:#f2647e;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker58982-2);paint-order:fill markers stroke"
d="M 9.8504281,11.5 H 18.350428"
id="path1389-0"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.975081,7.3226424 V 15.672084"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.94999995,7.05 H 4.45"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="12.773277"
y="18.95376"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.413103"
y="12.219519"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="12.773277"
y="18.95376"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#42b8eb;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.413103"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.94999995,15.95 H 6.8023272"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 15.200818,17.014734 H 11.200913"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 15.5,18.95 V 13.314734"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.95,18.95 V 14.888932"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="m 20.45,8.734254 v 5.646858"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 22.45,8.3660196 h -11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.45,14.684421 H 11.187079"
id="path2136"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0115861"
d="m 1.186353,12.200817 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.1087927,-0.08802 0.1767765,-0.21744 0.2214451,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
<path
id="rect1543"
style="fill:#f2647e;fill-opacity:1;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 4.9999998,7 c 0,0 -0.4492188,3 1.0507812,4.5 1.5,1.5 0.9492188,4.5 0.9492188,4.5 h 0.5 C 9.993,16 12,13.993 12,11.5 12,9.007 9.993,7 7.4999998,7 Z"
sodipodi:nodetypes="czcsssc" />
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="21.413103"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#42b8eb;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 0.94999995,15.95 H 6.8023272"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 15.200818,17.014734 H 11.200913"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 15.5,18.95 V 13.314734"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 10.95,18.95 V 14.888932"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="m 20.45,8.734254 v 5.646858"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 22.45,8.3660196 h -11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#42b8eb;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 22.45,14.684421 H 11.187079"
id="path2136"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#42b8eb;fill-opacity:1;stroke-width:0.0115861"
d="m 1.186353,12.200817 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.1087927,-0.08802 0.1767765,-0.21744 0.2214451,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
<path
id="rect1543"
style="fill:#f2647e;fill-opacity:1;stroke:#bf2641;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 4.9999998,7 c 0,0 -0.4492188,3 1.0507812,4.5 1.5,1.5 0.9492188,4.5 0.9492188,4.5 h 0.5 C 9.993,16 12,13.993 12,11.5 12,9.007 9.993,7 7.4999998,7 Z"
sodipodi:nodetypes="czcsssc" />
</g>
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 16 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 22.931447 15.5625"
viewBox="0 0 30.555556 14.444445"
version="1.1"
sodipodi:docname="teardrop_rect_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="206.38303"
height="140.0625"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -28,9 +28,9 @@
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="11.313708"
inkscape:cx="98.464619"
inkscape:cy="73.052969"
inkscape:zoom="3.9999998"
inkscape:cx="205.87501"
inkscape:cy="36.125002"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
@ -51,36 +51,16 @@
opacity="0.13"
empspacing="2"
visible="false"
originx="-0.63311354"
originy="-5.5000004" />
originx="6.9095774"
originy="-7.5000006" />
</sodipodi:namedview>
<metadata
id="metadata43">
<rdf:RDF>
<cc:Work
rdf:about="">
<cc:license
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>ps_diff_pair_tune_phase</dc:title>
</cc:Work>
<cc:License
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
<cc:permits
rdf:resource="http://creativecommons.org/ns#Reproduction" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#Distribution" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Notice" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#Attribution" />
<cc:permits
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
<cc:requires
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
</cc:License>
</rdf:RDF>
</metadata>
<defs
@ -275,105 +255,124 @@
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042-9" />
</marker>
<marker
markerWidth="1.0000001"
markerHeight="1"
refX="12.500001"
refY="12.5"
orient="auto"
id="marker53625"
viewBox="0 0 25.000002 25"
preserveAspectRatio="xMidYMid">
<path
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.777261,25 c 0,0 1.587384,-8.333329 -3.713103,-12.499997 C 15.763671,8.3333358 17.709939,0 17.709939,0 H 15.943113 C 8.04312,0 0,0.0049959 0,0.0049959 V 24.989628 Z"
id="path49179-6"
sodipodi:nodetypes="cscsccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<path
style="fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 9.4314478,2.4300005 17.931447,5.603082 V 7.506925 L 9.4314478,10.68 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="M 9.4314478,6.55 H 17.931448"
id="path1389"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.4314478,0.4141919 V 12.622565"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.0625,0.1 H 4.0625001"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="12.954725"
y="15.389034"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="12.954725"
y="15.389034"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.19334"
y="7.2695189"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="21.19334"
y="7.2695189"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.0625,13 H 4.0625001"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 16.180535,13.45 H 10.682361"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 16.581448,15.5 V 8.55"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 10.431448,15.5 V 10.978417"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 20.431448,2.9030647 V 10.196935"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 21.92733,2.6 H 10.431448"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666666,0.66666666;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 21.92733,10.5 H 10.431448"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f29100;fill-opacity:1;fill-rule:nonzero;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 5.0414478,0.05 H 9.821448 a 0.61,0.61 45 0 1 0.61,0.61 v 11.78 a 0.61,0.61 135 0 1 -0.61,0.61 H 5.0414478 a 0.61,0.61 45 0 1 -0.61,-0.61 V 0.66 a 0.61,0.61 135 0 1 0.61,-0.61 z"
id="path919"
inkscape:path-effect="#path-effect925"
inkscape:original-d="m 4.4314478,0.05 h 6.0000002 v 13 H 4.4314478 Z" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="0.4314478"
y="8.0500002"
id="text1327"><tspan
sodipodi:role="line"
id="tspan1325"
x="0.4314478"
y="8.0500002" /></text>
<path
id="path1395"
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0115861"
d="m 0.64271983,7.250817 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 C 1.1433507,6.857543 1.2434084,6.638865 1.308491,6.41227 c 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 C 1.6884316,7.056733 1.7564154,6.927313 1.801084,6.796869 1.821117,6.729459 1.837527,6.655271 1.818417,6.585986 1.787905,6.525996 1.7125577,6.486686 1.7128941,6.412975 c 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.20252967,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
<g
id="g2134"
transform="translate(0.04070892,0.44444466)">
<path
style="fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.0999996;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 16.974139,1.187498 8.499999,2.586544 v 1.5519216 l -8.499999,2.5865387 z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker53625);paint-order:fill markers stroke"
d="m 16.974139,4.5500002 h 8.5"
id="path1389"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="19.444765"
y="13.389034"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="19.444765"
y="13.389034"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="28.736031"
y="5.2695189"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="28.736031"
y="5.2695189"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 22.80656,11.45 H 17.308386"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 23.207473,13.5 V 6.5500002"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 17.057473,13.5 V 8.9784172"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 27.974139,1.4169533 V 7.6552637"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 29.470021,1.1763896 H 17.974139"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 29.470021,7.9166668 H 17.974139"
id="path2136"
sodipodi:nodetypes="cc" />
<path
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:sans-serif;font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;text-orientation:mixed;dominant-baseline:auto;baseline-shift:baseline;text-anchor:start;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#f29100;fill-opacity:1;fill-rule:nonzero;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate;stop-color:#000000"
d="M 4.1440078,0.05 H 16.474007 a 0.61,0.61 45 0 1 0.61,0.61 v 7.7800002 a 0.61,0.61 135 0 1 -0.61,0.61 H 4.1440078 a 0.61,0.61 45 0 1 -0.61,-0.61 V 0.66 a 0.61,0.61 135 0 1 0.61,-0.61 z"
id="path919"
inkscape:path-effect="#path-effect925"
inkscape:original-d="M 3.5340078,0.05 H 17.084007 V 9.0500002 H 3.5340078 Z" />
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="7.9741387"
y="6.0500002"
id="text1327"><tspan
sodipodi:role="line"
id="tspan1325"
x="7.9741387"
y="6.0500002" /></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.5196221,0.3697474 V 8.8003422"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.1506744,0.0555555 H 3.4840078"
id="path1878"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.1506744,9.0444452 H 3.4840078"
id="path1585"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0115861"
d="m 0.0642275,4.9881801 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.108793,-0.08802 0.1767768,-0.21744 0.2214454,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
</g>
</svg>

Before

Width:  |  Height:  |  Size: 19 KiB

After

Width:  |  Height:  |  Size: 19 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 24.976976 14.839396"
viewBox="0 0 30.555555 14.444444"
version="1.1"
sodipodi:docname="teardrop_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="224.79279"
height="133.55457"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -29,8 +29,8 @@
id="namedview30"
showgrid="true"
inkscape:zoom="5.6568543"
inkscape:cx="127.63277"
inkscape:cy="74.511376"
inkscape:cx="88.653512"
inkscape:cy="74.86493"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
@ -53,9 +53,9 @@
empspacing="2"
visible="false"
originx="1.3714213"
originy="-6.1252091" />
originy="-6.125209" />
<sodipodi:guide
position="19.149199,-1.8131726"
position="19.149199,-2.2081243"
orientation="0,-1"
id="guide454"
inkscape:locked="false" />
@ -181,97 +181,116 @@
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2027" />
</marker>
<marker
markerWidth="1.0000001"
markerHeight="1"
refX="12.500001"
refY="12.5"
orient="auto"
id="marker53625"
viewBox="0 0 25.000002 25"
preserveAspectRatio="xMidYMid">
<path
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.777261,25 c 0,0 1.587384,-8.333329 -3.713103,-12.499997 C 15.763671,8.3333358 17.709939,0 17.709939,0 H 15.943113 C 8.04312,0 0,0.0049959 0,0.0049959 V 24.989628 Z"
id="path49179-6"
sodipodi:nodetypes="cscsccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
<g
id="g2832"
transform="translate(1.4769769,-5.8231037)">
<path
style="opacity:1;fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10,7.3000005 8.105999,3.2423125 v 1.945382 L 10,15.73 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 12,11.5 h 7"
id="path1389"
sodipodi:nodetypes="cc" />
<path
id="circle1364-5-3"
style="fill:#f29100;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 6.6210938,5.8789062 A 5.620162,5.620162 0 0 0 1,11.5 5.620162,5.620162 0 0 0 6.6210938,17.121094 5.620162,5.620162 0 0 0 12.240234,11.5 5.620162,5.620162 0 0 0 6.6210938,5.8789062 Z M 6.5703125,9.5 a 2,2 0 0 1 0.050781,0 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 1.949219,-2 z" />
<path
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0131228"
d="m -1.220819,12.416428 c -0.05881,-0.01446 -0.125421,-0.08739 -0.145881,-0.159874 -0.03991,-0.141402 -0.01101,-0.32909 0.08088,-0.521747 0.142716,-0.299272 0.34130697,-0.465474 0.55691697,-0.466018 0.109686,-3.26e-4 0.170882,0.02724 0.196526,0.08826 l 0.01743,0.04141 0.01376,-0.0521 c 0.13533,-0.520221 0.137807,-0.532234 0.115007,-0.555046 -0.01422,-0.01446 -0.04175,-0.02153 -0.08056,-0.02072 -0.03762,6.42e-4 -0.05858,-0.0044 -0.05858,-0.0146 0,-0.01013 0.05326,-0.02382 0.147624,-0.03794 0.0812,-0.01215 0.1668,-0.02545 0.190288,-0.02952 0.02477,-0.0043 0.04266,-0.002 0.04266,0.0058 0,0.0073 -0.08583,0.357408 -0.190746,0.778117 -0.104914,0.420707 -0.187763,0.772695 -0.184093,0.782195 0.01376,0.03553 0.06454,0.01639 0.129641,-0.04871 0.09152,-0.09151 0.107255,-0.06381 0.02202,0.03867 -0.113769,0.136756 -0.22951,0.201587 -0.307175,0.17207 -0.05863,-0.02229 -0.07143,-0.09951 -0.03853,-0.233318 0.0073,-0.03075 -0.0064,-0.02137 -0.09592,0.06358 -0.150101,0.142851 -0.28795397,0.199727 -0.41089797,0.169515 z m 0.31217597,-0.178513 c 0.09152,-0.0456 0.175837,-0.144347 0.245429,-0.287521 0.121796,-0.250588 0.144183,-0.509454 0.05032,-0.583262 -0.04175,-0.03291 -0.120467,-0.03541 -0.18281,-0.0058 -0.156203,0.07412 -0.34034297,0.414117 -0.36740897,0.678383 -0.02064,0.200723 0.08478,0.28278 0.25446597,0.198208 z"
id="path3658"
sodipodi:nodetypes="ssscscsssssssssssssssssssss" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="m 0.3937812,6.218948 v 10.5"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M -1.4144769,5.8856037 H 5.185523"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="13.323277"
y="19.93903"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
<g
id="g2701"
transform="translate(2.7858166,0.16135784)">
<path
style="opacity:1;fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10,7.3000005 8.105999,3.2423125 v 1.945382 L 10,15.73 Z"
id="path1037"
sodipodi:nodetypes="ccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker53625);paint-order:fill markers stroke"
d="m 12,11.5 h 7"
id="path1389"
sodipodi:nodetypes="cc" />
<path
id="circle1364-5-3"
style="fill:#f29100;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="M 6.6210938,5.8789062 A 5.620162,5.620162 0 0 0 1,11.5 5.620162,5.620162 0 0 0 6.6210938,17.121094 5.620162,5.620162 0 0 0 12.240234,11.5 5.620162,5.620162 0 0 0 6.6210938,5.8789062 Z M 6.5703125,9.5 a 2,2 0 0 1 0.050781,0 2,2 0 0 1 2,2 2,2 0 0 1 -2,2 2,2 0 0 1 -2,-2 2,2 0 0 1 1.949219,-2 z" />
<path
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0131228"
d="m -1.220819,12.416428 c -0.05881,-0.01446 -0.125421,-0.08739 -0.145881,-0.159874 -0.03991,-0.141402 -0.01101,-0.32909 0.08088,-0.521747 0.142716,-0.299272 0.34130697,-0.465474 0.55691697,-0.466018 0.109686,-3.26e-4 0.170882,0.02724 0.196526,0.08826 l 0.01743,0.04141 0.01376,-0.0521 c 0.13533,-0.520221 0.137807,-0.532234 0.115007,-0.555046 -0.01422,-0.01446 -0.04175,-0.02153 -0.08056,-0.02072 -0.03762,6.42e-4 -0.05858,-0.0044 -0.05858,-0.0146 0,-0.01013 0.05326,-0.02382 0.147624,-0.03794 0.0812,-0.01215 0.1668,-0.02545 0.190288,-0.02952 0.02477,-0.0043 0.04266,-0.002 0.04266,0.0058 0,0.0073 -0.08583,0.357408 -0.190746,0.778117 -0.104914,0.420707 -0.187763,0.772695 -0.184093,0.782195 0.01376,0.03553 0.06454,0.01639 0.129641,-0.04871 0.09152,-0.09151 0.107255,-0.06381 0.02202,0.03867 -0.113769,0.136756 -0.22951,0.201587 -0.307175,0.17207 -0.05863,-0.02229 -0.07143,-0.09951 -0.03853,-0.233318 0.0073,-0.03075 -0.0064,-0.02137 -0.09592,0.06358 -0.150101,0.142851 -0.28795397,0.199727 -0.41089797,0.169515 z m 0.31217597,-0.178513 c 0.09152,-0.0456 0.175837,-0.144347 0.245429,-0.287521 0.121796,-0.250588 0.144183,-0.509454 0.05032,-0.583262 -0.04175,-0.03291 -0.120467,-0.03541 -0.18281,-0.0058 -0.156203,0.07412 -0.34034297,0.414117 -0.36740897,0.678383 -0.02064,0.200723 0.08478,0.28278 0.25446597,0.198208 z"
id="path3658"
sodipodi:nodetypes="ssscscsssssssssssssssssssss" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="m 0.3937812,6.218948 v 10.5"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M -1.4144769,5.8856037 H 5.185523"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="13.323277"
y="19.93903"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.761892"
y="12.219519"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="13.323277"
y="19.93903"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.761892"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M -1.4144769,17.093948 H 5.185523"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 16.738682,18 H 10.681468"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 16.95,20.6 V 13.5"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 10.45,20.597326 V 16"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 21,7.8530647 V 15.146935"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.495882,7.55 H 11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.495882,15.45 H 11"
id="path2136"
sodipodi:nodetypes="cc" />
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="21.761892"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M -1.4144769,17.093948 H 5.185523"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 16.738682,18 H 10.681468"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 16.95,19.850265 V 13.494179"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 10.45,19.853328 V 15.991117"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="M 21,7.8530647 V 15.146935"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.495882,7.55 H 11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.495882,15.45 H 11"
id="path2136"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -2,12 +2,12 @@
<svg
id="Слой_1"
data-name="Слой 1"
viewBox="0 0 22.263711 12.0625"
viewBox="0 0 30.555556 14.444444"
version="1.1"
sodipodi:docname="teardrop_track_sizes.svg"
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
width="200.3734"
height="108.5625"
width="275"
height="130"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
@ -28,9 +28,9 @@
inkscape:window-height="2109"
id="namedview30"
showgrid="true"
inkscape:zoom="11.313708"
inkscape:cx="69.473241"
inkscape:cy="67.219338"
inkscape:zoom="3.9999998"
inkscape:cx="67.375003"
inkscape:cy="80.125004"
inkscape:window-x="0"
inkscape:window-y="27"
inkscape:window-maximized="1"
@ -52,8 +52,8 @@
empspacing="2"
snapvisiblegridlinesonly="true"
visible="false"
originx="-0.98749996"
originy="-7.7222219" />
originx="-0.98749998"
originy="-7.7222216" />
</sodipodi:namedview>
<metadata
id="metadata43">
@ -204,6 +204,34 @@
style="fill:#1a81c4;fill-opacity:1;fill-rule:evenodd;stroke:#1a81c4;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path2042-7" />
</marker>
<marker
markerWidth="25.000002"
markerHeight="25"
refX="12.500001"
refY="12.5"
orient="auto"
id="marker53568">
<path
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 0.22274114,0 c 0,0 -1.58738404,8.333334 3.71310296,12.500001 C 9.2363401,16.666667 7.2900631,25 7.2900631,25 h 1.766835 C 16.956882,25 25.000002,24.995 25.000002,24.995 V 0.0103734 Z"
id="path49179"
sodipodi:nodetypes="cscsccc" />
</marker>
<marker
markerWidth="1.0000001"
markerHeight="1"
refX="12.500001"
refY="12.5"
orient="auto"
id="marker53625"
viewBox="0 0 25.000002 25"
preserveAspectRatio="xMidYMid">
<path
style="fill:#006400;fill-opacity:1;stroke:none;stroke-width:0.0999999;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 24.777261,25 c 0,0 1.587384,-8.333329 -3.713103,-12.499997 C 15.763671,8.3333358 17.709939,0 17.709939,0 H 15.943113 C 8.04312,0 0,0.0049959 0,0.0049959 V 24.989628 Z"
id="path49179-6"
sodipodi:nodetypes="cscsccc" />
</marker>
</defs>
<title
id="title159431">ps_diff_pair_tune_phase</title>
@ -222,91 +250,94 @@
<g
id="g2158"
transform="translate(-0.88749995,-6.95)">
<path
id="path1037"
style="fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10.45,8.1269531 v 6.7499989 l 6.492484,-2.424928 v -1.902095 z" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10,11.5 h 7.95"
id="path1389"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.975081,7.3226424 V 15.672084"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.94999995,7.05 H 4.45"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="12.773277"
y="18.953787"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
<g
id="g2316"
transform="translate(4.1424499,1.1944444)">
<path
id="path1037"
style="fill:#79ab79;fill-opacity:1;stroke:#006400;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;paint-order:fill markers stroke"
d="m 10.45,8.1269531 v 6.7499989 l 6.492484,-2.424928 v -1.902095 z" />
<path
style="fill:none;fill-opacity:1;stroke:#006400;stroke-width:3;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker53625);paint-order:fill markers stroke"
d="m 10,11.5 h 7.95"
id="path1389"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1675);marker-end:url(#marker2029);paint-order:fill markers stroke"
d="M 2.975081,7.3226424 V 15.672084"
id="path1043"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.94999995,7.05 H 4.45"
id="path1878"
sodipodi:nodetypes="cc" />
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="12.773277"
y="18.953787"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.413103"
y="12.219519"
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
id="text3524"><tspan
sodipodi:role="line"
id="tspan3522"
x="12.773277"
y="18.953787"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">L</tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:1.94202px;line-height:1.25;font-family:'Noto Sans Mono CJK SC';-inkscape-font-specification:'Noto Sans Mono CJK SC';letter-spacing:0px;word-spacing:0px;fill:#1a81c4;fill-opacity:1;stroke:none;stroke-width:0.121376"
x="21.413103"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.94999995,15.95 H 6.8023272"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 15.200818,17.014766 H 11.200913"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 15.5,18.95 V 13.314734"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 10.95,18.95 V 14.888932"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="m 20.45,8.734254 v 5.646858"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="m 22.45,8.3660196 h -11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.11111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.66666667,0.66666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.45,14.684421 H 11.187079"
id="path2136"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0115861"
d="m 1.186353,12.200817 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.1087927,-0.08802 0.1767765,-0.21744 0.2214451,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
<path
id="rect1543"
style="fill:#006400;fill-opacity:1;stroke:#79ab79;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 4.9999998,7 c 0,0 -0.4492188,3 1.0507812,4.5 1.5,1.5 0.9492188,4.5 0.9492188,4.5 h 0.5 C 9.993,16 12,13.993 12,11.5 12,9.007 9.993,7 7.4999998,7 Z"
sodipodi:nodetypes="czcsssc" />
id="text3600"><tspan
sodipodi:role="line"
id="tspan3598"
x="21.413103"
y="12.219519"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:1.94202px;font-family:'Noto Sans CJK SC';-inkscape-font-specification:'Noto Sans CJK SC Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#1a81c4;fill-opacity:1;stroke-width:0.121376">W</tspan></text>
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 0.94999995,15.95 H 6.8023272"
id="path1585"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker1859);marker-end:url(#marker1869);paint-order:fill markers stroke"
d="M 15.200818,17.014766 H 11.200913"
id="path1851"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 15.5,18.95 V 13.314734"
id="path1853"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 10.95,18.95 V 14.888932"
id="path1855"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;marker-start:url(#marker2034);marker-end:url(#marker2044);paint-order:fill markers stroke"
d="m 20.45,8.734254 v 5.646858"
id="path2025"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="m 22.45,8.3660196 h -11"
id="path2028"
sodipodi:nodetypes="cc" />
<path
style="fill:none;fill-opacity:1;stroke:#1a81c4;stroke-width:0.111111;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:0.666667, 0.666667;stroke-dashoffset:0;paint-order:fill markers stroke"
d="M 22.45,14.684421 H 11.187079"
id="path2136"
sodipodi:nodetypes="cc" />
<path
id="path1395"
style="fill:#1a81c4;fill-opacity:1;stroke-width:0.0115861"
d="m 1.186353,12.200817 c -0.06644,-0.0474 -0.074921,-0.142609 -0.054297,-0.21603 0.037547,-0.171715 0.09221,-0.33945 0.1256882,-0.512009 0.00987,-0.07173 -0.088651,-0.03617 -0.1044617,-0.07075 0.055347,-0.02215 0.2723173,-0.0971 0.309021,-0.08647 -0.052836,0.231035 -0.1260831,0.457376 -0.1678493,0.69088 -0.00964,0.04942 -0.018769,0.143452 0.057428,0.136976 0.081545,-0.01837 0.1366642,-0.08948 0.1887039,-0.149972 0.1463978,-0.185899 0.2464555,-0.404577 0.3115381,-0.631172 0.00604,-0.01902 0.006,-0.03198 0.033698,-0.0359 0.081774,-0.01158 0.1281177,-0.01158 0.1297015,0.006 0.00158,0.01756 -0.029836,0.112101 -0.040443,0.16763 -0.043765,0.166287 -0.098763,0.330476 -0.1240149,0.500965 -0.008,0.0495 -0.00161,0.115372 0.054099,0.133548 0.072409,0.02516 0.156362,0.0025 0.218107,-0.03976 0.1087927,-0.08802 0.1767765,-0.21744 0.2214451,-0.347884 0.020033,-0.06741 0.036443,-0.141598 0.017333,-0.210883 -0.030512,-0.05999 -0.1058593,-0.0993 -0.1055229,-0.173011 0.020127,-0.05536 0.113058,-0.07692 0.1551678,-0.03274 0.099255,0.1191 -0.019653,0.456679 -0.072446,0.561041 -0.07178,0.146447 -0.1921767,0.283837 -0.3565013,0.322339 -0.083967,0.009 -0.1866745,0.01354 -0.2494079,-0.05363 -0.043972,-0.04809 -0.046323,-0.116057 -0.037247,-0.17708 -7.324e-4,-0.04261 0.024198,-0.113639 0.014706,-0.137725 -0.060324,0.09528 -0.1178118,0.195018 -0.2025297,0.271507 -0.06453,0.06235 -0.1505418,0.108507 -0.2425052,0.100487 -0.026962,-0.0014 -0.05496,-0.0041 -0.079412,-0.01633 z"
sodipodi:nodetypes="cccccccccszcccccccccccccccc" />
<path
style="fill:#006400;fill-opacity:1;stroke:#79ab79;stroke-width:0.1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;paint-order:fill markers stroke"
d="m 4.9999998,7 c 0,0 -0.4492188,3 1.0507812,4.5 1.5,1.5 0.9492188,4.5 0.9492188,4.5 h 0.5 C 9.993,16 12,13.993 12,11.5 12,9.007 9.993,7 7.4999998,7 Z"
id="rect1543" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 17 KiB