From e2178b15a78b2b68f3b8cd8edf86ab8ee2f49856 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:39:45 -0800 Subject: [PATCH 01/21] Simplify references in AGauge --- WinNUT_V2/AGauge_mod/AGauge.cs | 344 ++++++++++++++++----------------- 1 file changed, 172 insertions(+), 172 deletions(-) diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs index 68f3b42..27d23ca 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ b/WinNUT_V2/AGauge_mod/AGauge.cs @@ -1,4 +1,4 @@ -// Copyright (C) 2007 A.J.Bauer +// Copyright (C) 2007 A.J.Bauer // // This software is provided as-is, without any express or implied // warranty. In no event will the authors be held liable for any damages @@ -40,7 +40,7 @@ namespace System.Windows.Forms /// AGauge - Copyright (C) 2007 A.J.Bauer /// http://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge /// - [ToolboxBitmapAttribute(typeof(AGauge), "AGauge.AGauge.bmp"), + [ToolboxBitmap(typeof(AGauge), "AGauge.AGauge.bmp"), DefaultEvent("ValueInRangeChanged"), Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")] public partial class AGauge : Control @@ -174,7 +174,7 @@ private void OnValueInRangeChanged(AGaugeRange range, Single value) //public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } } public new Boolean ForeColor { get { return false; } set { /*Do Nothing */ } } public new Boolean ImeMode { get { return false; } set { /*Do Nothing */ } } - public override System.Drawing.Color BackColor + public override Color BackColor { get { return base.BackColor; } set @@ -184,7 +184,7 @@ public override System.Drawing.Color BackColor Refresh(); } } - public override System.Drawing.Font Font + public override Font Font { get { return base.Font; } set @@ -194,7 +194,7 @@ public override System.Drawing.Font Font Refresh(); } } - public override System.Windows.Forms.ImageLayout BackgroundImageLayout + public override ImageLayout BackgroundImageLayout { get { return base.BackgroundImageLayout; } set @@ -220,11 +220,11 @@ public AGauge() } #region Properties - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), + [Browsable(true), + Category("AGauge"), //Modified By Gawindx //System.ComponentModel.Description("Gauge value.")] - System.ComponentModel.Description("Gauge value1.")] + Description("Gauge value1.")] public Single Value1 { get { return m_value1; } @@ -265,9 +265,9 @@ public Single Value1 } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Auto size Mode of the gauge.")] + [Browsable(true), + Category("AGauge"), + Description("Auto size Mode of the gauge.")] public Boolean GaugeAutoSize { get @@ -280,27 +280,27 @@ public Boolean GaugeAutoSize } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Gauge Ranges.")] + [Browsable(true), + Category("AGauge"), + Description("Gauge Ranges.")] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public AGaugeRangeCollection GaugeRanges { get { return _GaugeRanges; } } private AGaugeRangeCollection _GaugeRanges; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Gauge Labels.")] + [Browsable(true), + Category("AGauge"), + Description("Gauge Labels.")] [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] public AGaugeLabelCollection GaugeLabels { get { return _GaugeLabels; } } private AGaugeLabelCollection _GaugeLabels; #region << Gauge Base >> - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The center of the gauge (in the control's client area)."), + [Browsable(true), + Category("AGauge"), + Description("The center of the gauge (in the control's client area)."), //Modified By Gawindx //System.ComponentModel.DefaultValue(typeof(Point), "100, 100")] - System.ComponentModel.DefaultValue(typeof(Point), "148, 130")] + DefaultValue(typeof(Point), "148, 130")] public Point Center { get { return m_Center; } @@ -316,9 +316,9 @@ public Point Center } //Added By Gawindx - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("UseColor For Arc Base Color.")] + [Browsable(true), + Category("AGauge"), + Description("UseColor For Arc Base Color.")] public GradientType GradientColor { get { return m_gradientType; } @@ -333,9 +333,9 @@ public GradientType GradientColor } //Added By Gawindx - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Orientation Of Gradient Colors.")] + [Browsable(true), + Category("AGauge"), + Description("Orientation Of Gradient Colors.")] public GradientOrientation GradientColorOrientation { get { return m_gradientOrientation; } @@ -350,9 +350,9 @@ public GradientOrientation GradientColorOrientation } //Added By Gawindx - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Units For Value 1")] + [Browsable(true), + Category("AGauge"), + Description("Units For Value 1")] public UnitValue UnitValue1 { get { return m_unitvalue1; } @@ -367,9 +367,9 @@ public UnitValue UnitValue1 } //Added By Gawindx - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("UseColor For Arc Base Color.")] + [Browsable(true), + Category("AGauge"), + Description("UseColor For Arc Base Color.")] public UnitValue UnitValue2 { get { return m_unitvalue2; } @@ -384,9 +384,9 @@ public UnitValue UnitValue2 } //Added By Gawindx - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("Second Value To Display.")] + [Browsable(true), + Category("AGauge"), + Description("Second Value To Display.")] public Single Value2 { get { return m_value2; } @@ -401,9 +401,9 @@ public Single Value2 } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The color of the base arc.")] + [Browsable(true), + Category("AGauge"), + Description("The color of the base arc.")] public Color BaseArcColor { get { return m_BaseArcColor; } @@ -418,9 +418,9 @@ public Color BaseArcColor } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The radius of the base arc.")] + [Browsable(true), + Category("AGauge"), + Description("The radius of the base arc.")] public Int32 BaseArcRadius { get { return m_BaseArcRadius; } @@ -435,9 +435,9 @@ public Int32 BaseArcRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The start angle of the base arc.")] + [Browsable(true), + Category("AGauge"), + Description("The start angle of the base arc.")] public Int32 BaseArcStart { get { return m_BaseArcStart; } @@ -452,9 +452,9 @@ public Int32 BaseArcStart } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The sweep angle of the base arc.")] + [Browsable(true), + Category("AGauge"), + Description("The sweep angle of the base arc.")] public Int32 BaseArcSweep { get { return m_BaseArcSweep; } @@ -469,9 +469,9 @@ public Int32 BaseArcSweep } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The width of the base arc.")] + [Browsable(true), + Category("AGauge"), + Description("The width of the base arc.")] public Int32 BaseArcWidth { get { return m_BaseArcWidth; } @@ -490,9 +490,9 @@ public Int32 BaseArcWidth #region << Gauge Scale >> - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The minimum value to show on the scale.")] + [Browsable(true), + Category("AGauge"), + Description("The minimum value to show on the scale.")] public Single MinValue { get { return m_MinValue; } @@ -509,9 +509,9 @@ public Single MinValue } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The maximum value to show on the scale.")] + [Browsable(true), + Category("AGauge"), + Description("The maximum value to show on the scale.")] public Single MaxValue { get { return m_MaxValue; } @@ -528,9 +528,9 @@ public Single MaxValue } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] public Color ScaleLinesInterColor { get { return m_ScaleLinesInterColor; } @@ -545,9 +545,9 @@ public Color ScaleLinesInterColor } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] public Int32 ScaleLinesInterInnerRadius { get { return m_ScaleLinesInterInnerRadius; } @@ -562,9 +562,9 @@ public Int32 ScaleLinesInterInnerRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] public Int32 ScaleLinesInterOuterRadius { get { return m_ScaleLinesInterOuterRadius; } @@ -579,9 +579,9 @@ public Int32 ScaleLinesInterOuterRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] public Int32 ScaleLinesInterWidth { get { return m_ScaleLinesInterWidth; } @@ -596,9 +596,9 @@ public Int32 ScaleLinesInterWidth } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The number of minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The number of minor scale lines.")] public Int32 ScaleLinesMinorTicks { get { return m_ScaleLinesMinorTicks; } @@ -613,9 +613,9 @@ public Int32 ScaleLinesMinorTicks } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The color of the minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The color of the minor scale lines.")] public Color ScaleLinesMinorColor { get { return m_ScaleLinesMinorColor; } @@ -630,9 +630,9 @@ public Color ScaleLinesMinorColor } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The inner radius of the minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the minor scale lines.")] public Int32 ScaleLinesMinorInnerRadius { get { return m_ScaleLinesMinorInnerRadius; } @@ -647,9 +647,9 @@ public Int32 ScaleLinesMinorInnerRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The outer radius of the minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the minor scale lines.")] public Int32 ScaleLinesMinorOuterRadius { get { return m_ScaleLinesMinorOuterRadius; } @@ -664,9 +664,9 @@ public Int32 ScaleLinesMinorOuterRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The width of the minor scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The width of the minor scale lines.")] public Int32 ScaleLinesMinorWidth { get { return m_ScaleLinesMinorWidth; } @@ -681,9 +681,9 @@ public Int32 ScaleLinesMinorWidth } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The step value of the major scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The step value of the major scale lines.")] public Single ScaleLinesMajorStepValue { get { return m_ScaleLinesMajorStepValue; } @@ -698,9 +698,9 @@ public Single ScaleLinesMajorStepValue } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The color of the major scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The color of the major scale lines.")] public Color ScaleLinesMajorColor { get { return m_ScaleLinesMajorColor; } @@ -715,9 +715,9 @@ public Color ScaleLinesMajorColor } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The inner radius of the major scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the major scale lines.")] public Int32 ScaleLinesMajorInnerRadius { get { return m_ScaleLinesMajorInnerRadius; } @@ -732,9 +732,9 @@ public Int32 ScaleLinesMajorInnerRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The outer radius of the major scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the major scale lines.")] public Int32 ScaleLinesMajorOuterRadius { get { return m_ScaleLinesMajorOuterRadius; } @@ -749,9 +749,9 @@ public Int32 ScaleLinesMajorOuterRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The width of the major scale lines.")] + [Browsable(true), + Category("AGauge"), + Description("The width of the major scale lines.")] public Int32 ScaleLinesMajorWidth { get { return m_ScaleLinesMajorWidth; } @@ -770,9 +770,9 @@ public Int32 ScaleLinesMajorWidth #region << Gauge Scale Numbers >> - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The radius of the scale numbers.")] + [Browsable(true), + Category("AGauge"), + Description("The radius of the scale numbers.")] public Int32 ScaleNumbersRadius { get { return m_ScaleNumbersRadius; } @@ -787,9 +787,9 @@ public Int32 ScaleNumbersRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The color of the scale numbers.")] + [Browsable(true), + Category("AGauge"), + Description("The color of the scale numbers.")] public Color ScaleNumbersColor { get { return m_ScaleNumbersColor; } @@ -804,9 +804,9 @@ public Color ScaleNumbersColor } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The format of the scale numbers.")] + [Browsable(true), + Category("AGauge"), + Description("The format of the scale numbers.")] public String ScaleNumbersFormat { get { return m_ScaleNumbersFormat; } @@ -821,9 +821,9 @@ public String ScaleNumbersFormat } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The number of the scale line to start writing numbers next to.")] + [Browsable(true), + Category("AGauge"), + Description("The number of the scale line to start writing numbers next to.")] public Int32 ScaleNumbersStartScaleLine { get { return m_ScaleNumbersStartScaleLine; } @@ -838,9 +838,9 @@ public Int32 ScaleNumbersStartScaleLine } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The number of scale line steps for writing numbers.")] + [Browsable(true), + Category("AGauge"), + Description("The number of scale line steps for writing numbers.")] public Int32 ScaleNumbersStepScaleLines { get { return m_ScaleNumbersStepScaleLines; } @@ -855,9 +855,9 @@ public Int32 ScaleNumbersStepScaleLines } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] + [Browsable(true), + Category("AGauge"), + Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] public Int32 ScaleNumbersRotation { get { return m_ScaleNumbersRotation; } @@ -876,9 +876,9 @@ public Int32 ScaleNumbersRotation #region << Gauge Needle >> - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")] + [Browsable(true), + Category("AGauge"), + Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")] public NeedleType NeedleType { get { return m_NeedleType; } @@ -893,9 +893,9 @@ public NeedleType NeedleType } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The radius of the needle.")] + [Browsable(true), + Category("AGauge"), + Description("The radius of the needle.")] public Int32 NeedleRadius { get { return m_NeedleRadius; } @@ -910,9 +910,9 @@ public Int32 NeedleRadius } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The first color of the needle.")] + [Browsable(true), + Category("AGauge"), + Description("The first color of the needle.")] public AGaugeNeedleColor NeedleColor1 { get { return m_NeedleColor1; } @@ -927,9 +927,9 @@ public AGaugeNeedleColor NeedleColor1 } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The second color of the needle.")] + [Browsable(true), + Category("AGauge"), + Description("The second color of the needle.")] public Color NeedleColor2 { get { return m_NeedleColor2; } @@ -944,9 +944,9 @@ public Color NeedleColor2 } } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("AGauge"), - System.ComponentModel.Description("The width of the needle.")] + [Browsable(true), + Category("AGauge"), + Description("The width of the needle.")] public Int32 NeedleWidth { get { return m_NeedleWidth; } @@ -1667,29 +1667,29 @@ public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerR OuterRadius = outerRadius; } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Design"), - System.ComponentModel.DisplayName("(Name)"), - System.ComponentModel.Description("Instance Name.")] + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] public string Name { get; set; } - [System.ComponentModel.Browsable(false)] + [Browsable(false)] public Boolean InRange { get; set; } private AGauge Owner; - [System.ComponentModel.Browsable(false)] + [Browsable(false)] public void SetOwner(AGauge value) { Owner = value; } private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The color of the range.")] + [Browsable(true), + Category("Appearance"), + Description("The color of the range.")] public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } private Color _Color; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Limits"), - System.ComponentModel.Description("The start value of the range, must be less than RangeEndValue.")] + [Browsable(true), + Category("Limits"), + Description("The start value of the range, must be less than RangeEndValue.")] public Single StartValue { get { return _StartValue; } @@ -1705,9 +1705,9 @@ public Single StartValue } private Single _StartValue; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Limits"), - System.ComponentModel.Description("The end value of the range. Must be greater than RangeStartValue.")] + [Browsable(true), + Category("Limits"), + Description("The end value of the range. Must be greater than RangeStartValue.")] public Single EndValue { get { return _EndValue; } @@ -1723,9 +1723,9 @@ public Single EndValue } private Single _EndValue; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The inner radius of the range.")] + [Browsable(true), + Category("Appearance"), + Description("The inner radius of the range.")] public Int32 InnerRadius { get { return _InnerRadius; } @@ -1733,9 +1733,9 @@ public Int32 InnerRadius } private Int32 _InnerRadius = 70; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The outer radius of the range.")] + [Browsable(true), + Category("Appearance"), + Description("The outer radius of the range.")] public Int32 OuterRadius { get { return _OuterRadius; } @@ -1819,38 +1819,38 @@ private string GetUniqueName() public class AGaugeLabel { - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Design"), - System.ComponentModel.DisplayName("(Name)"), - System.ComponentModel.Description("Instance Name.")] + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] public string Name { get; set; } private AGauge Owner; - [System.ComponentModel.Browsable(false)] + [Browsable(false)] public void SetOwner(AGauge value) { Owner = value; } private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The color of the caption text.")] + [Browsable(true), + Category("Appearance"), + Description("The color of the caption text.")] public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } private Color _Color = Color.FromKnownColor(KnownColor.WindowText); - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The text of the caption.")] + [Browsable(true), + Category("Appearance"), + Description("The text of the caption.")] public String Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } private String _Text; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("The position of the caption.")] + [Browsable(true), + Category("Appearance"), + Description("The position of the caption.")] public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } private Point _Position; - [System.ComponentModel.Browsable(true), - System.ComponentModel.Category("Appearance"), - System.ComponentModel.Description("Font of Text.")] + [Browsable(true), + Category("Appearance"), + Description("Font of Text.")] public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } private Font _Font = DefaultFont; @@ -1911,6 +1911,6 @@ public ValueInRangeChangedEventArgs(AGaugeRange range, Single value, bool inRang } #endregion - [System.Runtime.CompilerServices.CompilerGenerated] + [Runtime.CompilerServices.CompilerGenerated] class NamespaceDoc { } //Namespace Documentation -} \ No newline at end of file +} From 63935c8e95c256cc57c97b63463c4c2fca59049a Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:40:53 -0800 Subject: [PATCH 02/21] Apply standard formatting --- WinNUT_V2/AGauge_mod/AGauge.cs | 3332 ++++++++++++++++---------------- 1 file changed, 1667 insertions(+), 1665 deletions(-) diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs index 27d23ca..7ab1562 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ b/WinNUT_V2/AGauge_mod/AGauge.cs @@ -36,1881 +36,1883 @@ namespace System.Windows.Forms { - /// - /// AGauge - Copyright (C) 2007 A.J.Bauer - /// http://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge - /// - [ToolboxBitmap(typeof(AGauge), "AGauge.AGauge.bmp"), - DefaultEvent("ValueInRangeChanged"), - Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")] - public partial class AGauge : Control - { - #region Private Fields - - private Single fontBoundY1; - private Single fontBoundY2; - private Bitmap gaugeBitmap; - private Boolean drawGaugeBackground = true; - - //Modified by Gawindx - //private Single m_value1; - private Single m_value1; - //Added By Gawindx - private Single m_value2; - //private Boolean m_AutoSize = false; - - //private Point m_Center = new Point(100, 100); - //Modified by gawindx - private Point m_Center = new Point(74, 70); - private Single m_MinValue = 0; - private Single m_MaxValue = 100; - - private Color m_BaseArcColor = Color.Gray; - //Modified by Gawindx - //private Int32 m_BaseArcRadius = 80; - private Int32 m_BaseArcRadius = 45; - private Int32 m_BaseArcStart = 135; - private Int32 m_BaseArcSweep = 270; - //Modified by Gawindx - //private Int32 m_BaseArcStart = -135; - //private Int32 m_BaseArcSweep = -45; - private Int32 m_BaseArcWidth = 5; - - private Color m_ScaleLinesInterColor = Color.Black; - //Modified by Gawindx - //private Int32 m_ScaleLinesInterInnerRadius = 73; - //private Int32 m_ScaleLinesInterOuterRadius = 80; - private Int32 m_ScaleLinesInterInnerRadius = 40; - private Int32 m_ScaleLinesInterOuterRadius = 48; - private Int32 m_ScaleLinesInterWidth = 1; - - - private Int32 m_ScaleLinesMinorTicks = 9; - private Color m_ScaleLinesMinorColor = Color.Gray; - //Modified by Gawindx - //private Int32 m_ScaleLinesMinorInnerRadius = 75; - //private Int32 m_ScaleLinesMinorOuterRadius = 80 - private Int32 m_ScaleLinesMinorInnerRadius = 42; - private Int32 m_ScaleLinesMinorOuterRadius = 48; - private Int32 m_ScaleLinesMinorWidth = 1; - - private Single m_ScaleLinesMajorStepValue = 50.0f; - private Color m_ScaleLinesMajorColor = Color.Black; - //Modified by Gawindx - //private Int32 m_ScaleLinesMajorInnerRadius = 70; - //private Int32 m_ScaleLinesMajorOuterRadius = 80; - private Int32 m_ScaleLinesMajorInnerRadius = 40; - private Int32 m_ScaleLinesMajorOuterRadius = 48; - private Int32 m_ScaleLinesMajorWidth = 2; - - //Modified by Gawindx - //private Int32 m_ScaleNumbersRadius = 95; - private Int32 m_ScaleNumbersRadius = 60; - private Color m_ScaleNumbersColor = Color.Black; - private String m_ScaleNumbersFormat; - private Int32 m_ScaleNumbersStartScaleLine; - private Int32 m_ScaleNumbersStepScaleLines = 1; - private Int32 m_ScaleNumbersRotation; - - private NeedleType m_NeedleType; - //Modified by Gawindx - //private Int32 m_NeedleRadius = 80; - private Int32 m_NeedleRadius = 32; - private AGaugeNeedleColor m_NeedleColor1 = AGaugeNeedleColor.Gray; - private Color m_NeedleColor2 = Color.DimGray; - private Int32 m_NeedleWidth = 2; - - //Added By Gawindx - public enum GradientType - { - None, - RedGreen - } - public enum GradientOrientation - { - UpToBottom, - BottomToUp, - RightToLeft, - LeftToRight - } - public enum UnitValue - { - None, - Hertz, - Percent, - Volts, - Watts - } + /// + /// AGauge - Copyright (C) 2007 A.J.Bauer + /// http://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge + /// + [ToolboxBitmap(typeof(AGauge), "AGauge.AGauge.bmp"), + DefaultEvent("ValueInRangeChanged"), + Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")] + public partial class AGauge : Control + { + #region Private Fields + + private Single fontBoundY1; + private Single fontBoundY2; + private Bitmap gaugeBitmap; + private Boolean drawGaugeBackground = true; + + //Modified by Gawindx + //private Single m_value1; + private Single m_value1; + //Added By Gawindx + private Single m_value2; + //private Boolean m_AutoSize = false; + + //private Point m_Center = new Point(100, 100); + //Modified by gawindx + private Point m_Center = new Point(74, 70); + private Single m_MinValue = 0; + private Single m_MaxValue = 100; + + private Color m_BaseArcColor = Color.Gray; + //Modified by Gawindx + //private Int32 m_BaseArcRadius = 80; + private Int32 m_BaseArcRadius = 45; + private Int32 m_BaseArcStart = 135; + private Int32 m_BaseArcSweep = 270; + //Modified by Gawindx + //private Int32 m_BaseArcStart = -135; + //private Int32 m_BaseArcSweep = -45; + private Int32 m_BaseArcWidth = 5; + + private Color m_ScaleLinesInterColor = Color.Black; + //Modified by Gawindx + //private Int32 m_ScaleLinesInterInnerRadius = 73; + //private Int32 m_ScaleLinesInterOuterRadius = 80; + private Int32 m_ScaleLinesInterInnerRadius = 40; + private Int32 m_ScaleLinesInterOuterRadius = 48; + private Int32 m_ScaleLinesInterWidth = 1; + + + private Int32 m_ScaleLinesMinorTicks = 9; + private Color m_ScaleLinesMinorColor = Color.Gray; + //Modified by Gawindx + //private Int32 m_ScaleLinesMinorInnerRadius = 75; + //private Int32 m_ScaleLinesMinorOuterRadius = 80 + private Int32 m_ScaleLinesMinorInnerRadius = 42; + private Int32 m_ScaleLinesMinorOuterRadius = 48; + private Int32 m_ScaleLinesMinorWidth = 1; + + private Single m_ScaleLinesMajorStepValue = 50.0f; + private Color m_ScaleLinesMajorColor = Color.Black; + //Modified by Gawindx + //private Int32 m_ScaleLinesMajorInnerRadius = 70; + //private Int32 m_ScaleLinesMajorOuterRadius = 80; + private Int32 m_ScaleLinesMajorInnerRadius = 40; + private Int32 m_ScaleLinesMajorOuterRadius = 48; + private Int32 m_ScaleLinesMajorWidth = 2; + + //Modified by Gawindx + //private Int32 m_ScaleNumbersRadius = 95; + private Int32 m_ScaleNumbersRadius = 60; + private Color m_ScaleNumbersColor = Color.Black; + private String m_ScaleNumbersFormat; + private Int32 m_ScaleNumbersStartScaleLine; + private Int32 m_ScaleNumbersStepScaleLines = 1; + private Int32 m_ScaleNumbersRotation; + + private NeedleType m_NeedleType; + //Modified by Gawindx + //private Int32 m_NeedleRadius = 80; + private Int32 m_NeedleRadius = 32; + private AGaugeNeedleColor m_NeedleColor1 = AGaugeNeedleColor.Gray; + private Color m_NeedleColor2 = Color.DimGray; + private Int32 m_NeedleWidth = 2; + + //Added By Gawindx + public enum GradientType + { + None, + RedGreen + } + public enum GradientOrientation + { + UpToBottom, + BottomToUp, + RightToLeft, + LeftToRight + } + public enum UnitValue + { + None, + Hertz, + Percent, + Volts, + Watts + } - private GradientType m_gradientType = GradientType.RedGreen; - private GradientOrientation m_gradientOrientation = GradientOrientation.BottomToUp; - private UnitValue m_unitvalue1 = UnitValue.Volts; - private UnitValue m_unitvalue2 = UnitValue.None; - #endregion + private GradientType m_gradientType = GradientType.RedGreen; + private GradientOrientation m_gradientOrientation = GradientOrientation.BottomToUp; + private UnitValue m_unitvalue1 = UnitValue.Volts; + private UnitValue m_unitvalue2 = UnitValue.None; + #endregion - #region EventHandler + #region EventHandler - [Description("This event is raised when gauge value changed.")] - public event EventHandler ValueChanged; - private void OnValueChanged() - { - EventHandler e = ValueChanged; - if (e != null) e(this, null); - } + [Description("This event is raised when gauge value changed.")] + public event EventHandler ValueChanged; + private void OnValueChanged() + { + EventHandler e = ValueChanged; + if (e != null) e(this, null); + } - [Description("This event is raised if the value is entering or leaving defined range.")] - public event EventHandler ValueInRangeChanged; - private void OnValueInRangeChanged(AGaugeRange range, Single value) - { - EventHandler e = ValueInRangeChanged; - if (e != null) e(this, new ValueInRangeChangedEventArgs(range, value, range.InRange)); - } + [Description("This event is raised if the value is entering or leaving defined range.")] + public event EventHandler ValueInRangeChanged; + private void OnValueInRangeChanged(AGaugeRange range, Single value) + { + EventHandler e = ValueInRangeChanged; + if (e != null) e(this, new ValueInRangeChangedEventArgs(range, value, range.InRange)); + } - #endregion + #endregion - #region Hidden and overridden inherited properties + #region Hidden and overridden inherited properties - public new Boolean AllowDrop { get { return false; } set { /*Do Nothing */ } } - //public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } } - public new Boolean ForeColor { get { return false; } set { /*Do Nothing */ } } - public new Boolean ImeMode { get { return false; } set { /*Do Nothing */ } } - public override Color BackColor - { - get { return base.BackColor; } - set - { - base.BackColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - public override Font Font - { - get { return base.Font; } - set - { - base.Font = value; - drawGaugeBackground = true; - Refresh(); - } - } - public override ImageLayout BackgroundImageLayout - { - get { return base.BackgroundImageLayout; } - set - { - base.BackgroundImageLayout = value; - drawGaugeBackground = true; - Refresh(); - } - } - #endregion + public new Boolean AllowDrop { get { return false; } set { /*Do Nothing */ } } + //public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } } + public new Boolean ForeColor { get { return false; } set { /*Do Nothing */ } } + public new Boolean ImeMode { get { return false; } set { /*Do Nothing */ } } + public override Color BackColor + { + get { return base.BackColor; } + set + { + base.BackColor = value; + drawGaugeBackground = true; + Refresh(); + } + } + public override Font Font + { + get { return base.Font; } + set + { + base.Font = value; + drawGaugeBackground = true; + Refresh(); + } + } + public override ImageLayout BackgroundImageLayout + { + get { return base.BackgroundImageLayout; } + set + { + base.BackgroundImageLayout = value; + drawGaugeBackground = true; + Refresh(); + } + } + #endregion - public AGauge() - { - InitializeComponent(); - SetStyle(ControlStyles.OptimizedDoubleBuffer, true); - _GaugeRanges = new AGaugeRangeCollection(this); - _GaugeLabels = new AGaugeLabelCollection(this); - - //Default Values - //Size = new Size(205, 180); - //Modified by Gawindx - Size = new Size(148, 130); - } + public AGauge() + { + InitializeComponent(); + SetStyle(ControlStyles.OptimizedDoubleBuffer, true); + _GaugeRanges = new AGaugeRangeCollection(this); + _GaugeLabels = new AGaugeLabelCollection(this); + + //Default Values + //Size = new Size(205, 180); + //Modified by Gawindx + Size = new Size(148, 130); + } - #region Properties - [Browsable(true), - Category("AGauge"), - //Modified By Gawindx - //System.ComponentModel.Description("Gauge value.")] - Description("Gauge value1.")] - public Single Value1 - { - get { return m_value1; } - set - { - value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue); - if (m_value1 != value) + #region Properties + [Browsable(true), + Category("AGauge"), + //Modified By Gawindx + //System.ComponentModel.Description("Gauge value.")] + Description("Gauge value1.")] + public Single Value1 { - m_value1 = value; - OnValueChanged(); + get { return m_value1; } + set + { + value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue); + if (m_value1 != value) + { + m_value1 = value; + OnValueChanged(); - if (this.DesignMode) drawGaugeBackground = true; + if (this.DesignMode) drawGaugeBackground = true; + + foreach (AGaugeRange ptrRange in _GaugeRanges) + { + if ((m_value1 >= ptrRange.StartValue) + && (m_value1 <= ptrRange.EndValue)) + { + //Entering Range + if (!ptrRange.InRange) + { + ptrRange.InRange = true; + OnValueInRangeChanged(ptrRange, m_value1); + } + } + else + { + //Leaving Range + if (ptrRange.InRange) + { + ptrRange.InRange = false; + OnValueInRangeChanged(ptrRange, m_value1); + } + } + } + Refresh(); + } + } + } - foreach (AGaugeRange ptrRange in _GaugeRanges) - { - if ((m_value1 >= ptrRange.StartValue) - && (m_value1 <= ptrRange.EndValue)) + [Browsable(true), + Category("AGauge"), + Description("Auto size Mode of the gauge.")] + public Boolean GaugeAutoSize + { + get { - //Entering Range - if (!ptrRange.InRange) - { - ptrRange.InRange = true; - OnValueInRangeChanged(ptrRange, m_value1); - } + return base.AutoSize; } - else + set { - //Leaving Range - if (ptrRange.InRange) - { - ptrRange.InRange = false; - OnValueInRangeChanged(ptrRange, m_value1); - } + base.AutoSize = value; } - } - Refresh(); } - } - } - - [Browsable(true), - Category("AGauge"), - Description("Auto size Mode of the gauge.")] - public Boolean GaugeAutoSize - { - get - { - return base.AutoSize; - } - set - { - base.AutoSize = value; - } - } - [Browsable(true), - Category("AGauge"), - Description("Gauge Ranges.")] - [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] - public AGaugeRangeCollection GaugeRanges { get { return _GaugeRanges; } } - private AGaugeRangeCollection _GaugeRanges; - - [Browsable(true), - Category("AGauge"), - Description("Gauge Labels.")] - [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] - public AGaugeLabelCollection GaugeLabels { get { return _GaugeLabels; } } - private AGaugeLabelCollection _GaugeLabels; - - #region << Gauge Base >> - [Browsable(true), - Category("AGauge"), - Description("The center of the gauge (in the control's client area)."), - //Modified By Gawindx - //System.ComponentModel.DefaultValue(typeof(Point), "100, 100")] - DefaultValue(typeof(Point), "148, 130")] - public Point Center - { - get { return m_Center; } - set - { - if (m_Center != value) + [Browsable(true), + Category("AGauge"), + Description("Gauge Ranges.")] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] + public AGaugeRangeCollection GaugeRanges { get { return _GaugeRanges; } } + private AGaugeRangeCollection _GaugeRanges; + + [Browsable(true), + Category("AGauge"), + Description("Gauge Labels.")] + [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] + public AGaugeLabelCollection GaugeLabels { get { return _GaugeLabels; } } + private AGaugeLabelCollection _GaugeLabels; + + #region << Gauge Base >> + [Browsable(true), + Category("AGauge"), + Description("The center of the gauge (in the control's client area)."), + //Modified By Gawindx + //System.ComponentModel.DefaultValue(typeof(Point), "100, 100")] + DefaultValue(typeof(Point), "148, 130")] + public Point Center { - m_Center = value; - drawGaugeBackground = true; - Refresh(); + get { return m_Center; } + set + { + if (m_Center != value) + { + m_Center = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("UseColor For Arc Base Color.")] - public GradientType GradientColor - { - get { return m_gradientType; } - set - { - if (m_gradientType != value) + //Added By Gawindx + [Browsable(true), + Category("AGauge"), + Description("UseColor For Arc Base Color.")] + public GradientType GradientColor { - m_gradientType = value; - Refresh(); + get { return m_gradientType; } + set + { + if (m_gradientType != value) + { + m_gradientType = value; + Refresh(); + } + } } - } - } - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Orientation Of Gradient Colors.")] - public GradientOrientation GradientColorOrientation - { - get { return m_gradientOrientation; } - set - { - if (m_gradientOrientation != value) + //Added By Gawindx + [Browsable(true), + Category("AGauge"), + Description("Orientation Of Gradient Colors.")] + public GradientOrientation GradientColorOrientation { + get { return m_gradientOrientation; } + set + { + if (m_gradientOrientation != value) + { m_gradientOrientation = value; - Refresh(); + Refresh(); + } + } } - } - } - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Units For Value 1")] - public UnitValue UnitValue1 - { - get { return m_unitvalue1; } - set - { - if (m_unitvalue1 != value) + //Added By Gawindx + [Browsable(true), + Category("AGauge"), + Description("Units For Value 1")] + public UnitValue UnitValue1 { - m_unitvalue1 = value; - Refresh(); + get { return m_unitvalue1; } + set + { + if (m_unitvalue1 != value) + { + m_unitvalue1 = value; + Refresh(); + } + } } - } - } - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("UseColor For Arc Base Color.")] - public UnitValue UnitValue2 - { - get { return m_unitvalue2; } - set - { - if (m_unitvalue2 != value) + //Added By Gawindx + [Browsable(true), + Category("AGauge"), + Description("UseColor For Arc Base Color.")] + public UnitValue UnitValue2 { - m_unitvalue2 = value; - Refresh(); + get { return m_unitvalue2; } + set + { + if (m_unitvalue2 != value) + { + m_unitvalue2 = value; + Refresh(); + } + } } - } - } - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Second Value To Display.")] - public Single Value2 - { - get { return m_value2; } - set - { - if (m_value2 != value) + //Added By Gawindx + [Browsable(true), + Category("AGauge"), + Description("Second Value To Display.")] + public Single Value2 { - m_value2 = value; - OnValueChanged(); - Refresh(); + get { return m_value2; } + set + { + if (m_value2 != value) + { + m_value2 = value; + OnValueChanged(); + Refresh(); + } + } } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the base arc.")] - public Color BaseArcColor - { - get { return m_BaseArcColor; } - set - { - if (m_BaseArcColor != value) + + [Browsable(true), + Category("AGauge"), + Description("The color of the base arc.")] + public Color BaseArcColor { - m_BaseArcColor = value; - drawGaugeBackground = true; - Refresh(); + get { return m_BaseArcColor; } + set + { + if (m_BaseArcColor != value) + { + m_BaseArcColor = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The radius of the base arc.")] - public Int32 BaseArcRadius - { - get { return m_BaseArcRadius; } - set - { - if (m_BaseArcRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The radius of the base arc.")] + public Int32 BaseArcRadius { - m_BaseArcRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_BaseArcRadius; } + set + { + if (m_BaseArcRadius != value) + { + m_BaseArcRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The start angle of the base arc.")] - public Int32 BaseArcStart - { - get { return m_BaseArcStart; } - set - { - if (m_BaseArcStart != value) + [Browsable(true), + Category("AGauge"), + Description("The start angle of the base arc.")] + public Int32 BaseArcStart { - m_BaseArcStart = value; - drawGaugeBackground = true; - Refresh(); + get { return m_BaseArcStart; } + set + { + if (m_BaseArcStart != value) + { + m_BaseArcStart = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The sweep angle of the base arc.")] - public Int32 BaseArcSweep - { - get { return m_BaseArcSweep; } - set - { - if (m_BaseArcSweep != value) + [Browsable(true), + Category("AGauge"), + Description("The sweep angle of the base arc.")] + public Int32 BaseArcSweep { - m_BaseArcSweep = value; - drawGaugeBackground = true; - Refresh(); + get { return m_BaseArcSweep; } + set + { + if (m_BaseArcSweep != value) + { + m_BaseArcSweep = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The width of the base arc.")] - public Int32 BaseArcWidth - { - get { return m_BaseArcWidth; } - set - { - if (m_BaseArcWidth != value) + [Browsable(true), + Category("AGauge"), + Description("The width of the base arc.")] + public Int32 BaseArcWidth { - m_BaseArcWidth = value; - drawGaugeBackground = true; - Refresh(); + get { return m_BaseArcWidth; } + set + { + if (m_BaseArcWidth != value) + { + m_BaseArcWidth = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - #endregion + #endregion - #region << Gauge Scale >> + #region << Gauge Scale >> - [Browsable(true), - Category("AGauge"), - Description("The minimum value to show on the scale.")] - public Single MinValue - { - get { return m_MinValue; } - set - { - if ((m_MinValue != value) && (value < m_MaxValue)) - { - m_MinValue = value; - m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); - m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); - } - } - } + [Browsable(true), + Category("AGauge"), + Description("The minimum value to show on the scale.")] + public Single MinValue + { + get { return m_MinValue; } + set + { + if ((m_MinValue != value) && (value < m_MaxValue)) + { + m_MinValue = value; + m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); + m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); + drawGaugeBackground = true; + Refresh(); + } + } + } - [Browsable(true), - Category("AGauge"), - Description("The maximum value to show on the scale.")] - public Single MaxValue - { - get { return m_MaxValue; } - set - { - if ((m_MaxValue != value) && (value > m_MinValue)) - { - m_MaxValue = value; - m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); - m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); - } - } - } + [Browsable(true), + Category("AGauge"), + Description("The maximum value to show on the scale.")] + public Single MaxValue + { + get { return m_MaxValue; } + set + { + if ((m_MaxValue != value) && (value > m_MinValue)) + { + m_MaxValue = value; + m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); + m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); + drawGaugeBackground = true; + Refresh(); + } + } + } - [Browsable(true), - Category("AGauge"), - Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Color ScaleLinesInterColor - { - get { return m_ScaleLinesInterColor; } - set - { - if (m_ScaleLinesInterColor != value) + [Browsable(true), + Category("AGauge"), + Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + public Color ScaleLinesInterColor { - m_ScaleLinesInterColor = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesInterColor; } + set + { + if (m_ScaleLinesInterColor != value) + { + m_ScaleLinesInterColor = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterInnerRadius - { - get { return m_ScaleLinesInterInnerRadius; } - set - { - if (m_ScaleLinesInterInnerRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + public Int32 ScaleLinesInterInnerRadius { - m_ScaleLinesInterInnerRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesInterInnerRadius; } + set + { + if (m_ScaleLinesInterInnerRadius != value) + { + m_ScaleLinesInterInnerRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterOuterRadius - { - get { return m_ScaleLinesInterOuterRadius; } - set - { - if (m_ScaleLinesInterOuterRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + public Int32 ScaleLinesInterOuterRadius { - m_ScaleLinesInterOuterRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesInterOuterRadius; } + set + { + if (m_ScaleLinesInterOuterRadius != value) + { + m_ScaleLinesInterOuterRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterWidth - { - get { return m_ScaleLinesInterWidth; } - set - { - if (m_ScaleLinesInterWidth != value) + [Browsable(true), + Category("AGauge"), + Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] + public Int32 ScaleLinesInterWidth { - m_ScaleLinesInterWidth = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesInterWidth; } + set + { + if (m_ScaleLinesInterWidth != value) + { + m_ScaleLinesInterWidth = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The number of minor scale lines.")] - public Int32 ScaleLinesMinorTicks - { - get { return m_ScaleLinesMinorTicks; } - set - { - if (m_ScaleLinesMinorTicks != value) + [Browsable(true), + Category("AGauge"), + Description("The number of minor scale lines.")] + public Int32 ScaleLinesMinorTicks { - m_ScaleLinesMinorTicks = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMinorTicks; } + set + { + if (m_ScaleLinesMinorTicks != value) + { + m_ScaleLinesMinorTicks = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The color of the minor scale lines.")] - public Color ScaleLinesMinorColor - { - get { return m_ScaleLinesMinorColor; } - set - { - if (m_ScaleLinesMinorColor != value) + [Browsable(true), + Category("AGauge"), + Description("The color of the minor scale lines.")] + public Color ScaleLinesMinorColor { - m_ScaleLinesMinorColor = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMinorColor; } + set + { + if (m_ScaleLinesMinorColor != value) + { + m_ScaleLinesMinorColor = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the minor scale lines.")] - public Int32 ScaleLinesMinorInnerRadius - { - get { return m_ScaleLinesMinorInnerRadius; } - set - { - if (m_ScaleLinesMinorInnerRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the minor scale lines.")] + public Int32 ScaleLinesMinorInnerRadius { - m_ScaleLinesMinorInnerRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMinorInnerRadius; } + set + { + if (m_ScaleLinesMinorInnerRadius != value) + { + m_ScaleLinesMinorInnerRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the minor scale lines.")] - public Int32 ScaleLinesMinorOuterRadius - { - get { return m_ScaleLinesMinorOuterRadius; } - set - { - if (m_ScaleLinesMinorOuterRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the minor scale lines.")] + public Int32 ScaleLinesMinorOuterRadius { - m_ScaleLinesMinorOuterRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMinorOuterRadius; } + set + { + if (m_ScaleLinesMinorOuterRadius != value) + { + m_ScaleLinesMinorOuterRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The width of the minor scale lines.")] - public Int32 ScaleLinesMinorWidth - { - get { return m_ScaleLinesMinorWidth; } - set - { - if (m_ScaleLinesMinorWidth != value) + [Browsable(true), + Category("AGauge"), + Description("The width of the minor scale lines.")] + public Int32 ScaleLinesMinorWidth { - m_ScaleLinesMinorWidth = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMinorWidth; } + set + { + if (m_ScaleLinesMinorWidth != value) + { + m_ScaleLinesMinorWidth = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The step value of the major scale lines.")] - public Single ScaleLinesMajorStepValue - { - get { return m_ScaleLinesMajorStepValue; } - set - { - if ((m_ScaleLinesMajorStepValue != value) && (value > 0)) + [Browsable(true), + Category("AGauge"), + Description("The step value of the major scale lines.")] + public Single ScaleLinesMajorStepValue { - m_ScaleLinesMajorStepValue = Math.Min(value, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMajorStepValue; } + set + { + if ((m_ScaleLinesMajorStepValue != value) && (value > 0)) + { + m_ScaleLinesMajorStepValue = Math.Min(value, m_MaxValue - m_MinValue); + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The color of the major scale lines.")] - public Color ScaleLinesMajorColor - { - get { return m_ScaleLinesMajorColor; } - set - { - if (m_ScaleLinesMajorColor != value) + [Browsable(true), + Category("AGauge"), + Description("The color of the major scale lines.")] + public Color ScaleLinesMajorColor { - m_ScaleLinesMajorColor = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMajorColor; } + set + { + if (m_ScaleLinesMajorColor != value) + { + m_ScaleLinesMajorColor = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the major scale lines.")] - public Int32 ScaleLinesMajorInnerRadius - { - get { return m_ScaleLinesMajorInnerRadius; } - set - { - if (m_ScaleLinesMajorInnerRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The inner radius of the major scale lines.")] + public Int32 ScaleLinesMajorInnerRadius { - m_ScaleLinesMajorInnerRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMajorInnerRadius; } + set + { + if (m_ScaleLinesMajorInnerRadius != value) + { + m_ScaleLinesMajorInnerRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the major scale lines.")] - public Int32 ScaleLinesMajorOuterRadius - { - get { return m_ScaleLinesMajorOuterRadius; } - set - { - if (m_ScaleLinesMajorOuterRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The outer radius of the major scale lines.")] + public Int32 ScaleLinesMajorOuterRadius { - m_ScaleLinesMajorOuterRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMajorOuterRadius; } + set + { + if (m_ScaleLinesMajorOuterRadius != value) + { + m_ScaleLinesMajorOuterRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The width of the major scale lines.")] - public Int32 ScaleLinesMajorWidth - { - get { return m_ScaleLinesMajorWidth; } - set - { - if (m_ScaleLinesMajorWidth != value) + [Browsable(true), + Category("AGauge"), + Description("The width of the major scale lines.")] + public Int32 ScaleLinesMajorWidth { - m_ScaleLinesMajorWidth = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleLinesMajorWidth; } + set + { + if (m_ScaleLinesMajorWidth != value) + { + m_ScaleLinesMajorWidth = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - #endregion + #endregion - #region << Gauge Scale Numbers >> + #region << Gauge Scale Numbers >> - [Browsable(true), - Category("AGauge"), - Description("The radius of the scale numbers.")] - public Int32 ScaleNumbersRadius - { - get { return m_ScaleNumbersRadius; } - set - { - if (m_ScaleNumbersRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The radius of the scale numbers.")] + public Int32 ScaleNumbersRadius { - m_ScaleNumbersRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleNumbersRadius; } + set + { + if (m_ScaleNumbersRadius != value) + { + m_ScaleNumbersRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The color of the scale numbers.")] - public Color ScaleNumbersColor - { - get { return m_ScaleNumbersColor; } - set - { - if (m_ScaleNumbersColor != value) + [Browsable(true), + Category("AGauge"), + Description("The color of the scale numbers.")] + public Color ScaleNumbersColor { - m_ScaleNumbersColor = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleNumbersColor; } + set + { + if (m_ScaleNumbersColor != value) + { + m_ScaleNumbersColor = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The format of the scale numbers.")] - public String ScaleNumbersFormat - { - get { return m_ScaleNumbersFormat; } - set - { - if (m_ScaleNumbersFormat != value) + [Browsable(true), + Category("AGauge"), + Description("The format of the scale numbers.")] + public String ScaleNumbersFormat { - m_ScaleNumbersFormat = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleNumbersFormat; } + set + { + if (m_ScaleNumbersFormat != value) + { + m_ScaleNumbersFormat = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The number of the scale line to start writing numbers next to.")] - public Int32 ScaleNumbersStartScaleLine - { - get { return m_ScaleNumbersStartScaleLine; } - set - { - if (m_ScaleNumbersStartScaleLine != value) + [Browsable(true), + Category("AGauge"), + Description("The number of the scale line to start writing numbers next to.")] + public Int32 ScaleNumbersStartScaleLine { - m_ScaleNumbersStartScaleLine = Math.Max(value, 1); - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleNumbersStartScaleLine; } + set + { + if (m_ScaleNumbersStartScaleLine != value) + { + m_ScaleNumbersStartScaleLine = Math.Max(value, 1); + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The number of scale line steps for writing numbers.")] - public Int32 ScaleNumbersStepScaleLines - { - get { return m_ScaleNumbersStepScaleLines; } - set - { - if (m_ScaleNumbersStepScaleLines != value) + [Browsable(true), + Category("AGauge"), + Description("The number of scale line steps for writing numbers.")] + public Int32 ScaleNumbersStepScaleLines { - m_ScaleNumbersStepScaleLines = Math.Max(value, 1); - drawGaugeBackground = true; - Refresh(); - } - } - } + get { return m_ScaleNumbersStepScaleLines; } + set + { + if (m_ScaleNumbersStepScaleLines != value) + { + m_ScaleNumbersStepScaleLines = Math.Max(value, 1); + drawGaugeBackground = true; + Refresh(); + } + } + } - [Browsable(true), - Category("AGauge"), - Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] - public Int32 ScaleNumbersRotation - { - get { return m_ScaleNumbersRotation; } - set - { - if (m_ScaleNumbersRotation != value) + [Browsable(true), + Category("AGauge"), + Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] + public Int32 ScaleNumbersRotation { - m_ScaleNumbersRotation = value; - drawGaugeBackground = true; - Refresh(); + get { return m_ScaleNumbersRotation; } + set + { + if (m_ScaleNumbersRotation != value) + { + m_ScaleNumbersRotation = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - #endregion + #endregion - #region << Gauge Needle >> + #region << Gauge Needle >> - [Browsable(true), - Category("AGauge"), - Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")] - public NeedleType NeedleType - { - get { return m_NeedleType; } - set - { - if (m_NeedleType != value) + [Browsable(true), + Category("AGauge"), + Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")] + public NeedleType NeedleType { - m_NeedleType = value; - drawGaugeBackground = true; - Refresh(); + get { return m_NeedleType; } + set + { + if (m_NeedleType != value) + { + m_NeedleType = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The radius of the needle.")] - public Int32 NeedleRadius - { - get { return m_NeedleRadius; } - set - { - if (m_NeedleRadius != value) + [Browsable(true), + Category("AGauge"), + Description("The radius of the needle.")] + public Int32 NeedleRadius { - m_NeedleRadius = value; - drawGaugeBackground = true; - Refresh(); + get { return m_NeedleRadius; } + set + { + if (m_NeedleRadius != value) + { + m_NeedleRadius = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The first color of the needle.")] - public AGaugeNeedleColor NeedleColor1 - { - get { return m_NeedleColor1; } - set - { - if (m_NeedleColor1 != value) + [Browsable(true), + Category("AGauge"), + Description("The first color of the needle.")] + public AGaugeNeedleColor NeedleColor1 { - m_NeedleColor1 = value; - drawGaugeBackground = true; - Refresh(); + get { return m_NeedleColor1; } + set + { + if (m_NeedleColor1 != value) + { + m_NeedleColor1 = value; + drawGaugeBackground = true; + Refresh(); + } + } } - } - } - [Browsable(true), - Category("AGauge"), - Description("The second color of the needle.")] - public Color NeedleColor2 - { - get { return m_NeedleColor2; } - set - { - if (m_NeedleColor2 != value) + [Browsable(true), + Category("AGauge"), + Description("The second color of the needle.")] + public Color NeedleColor2 { - m_NeedleColor2 = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the needle.")] - public Int32 NeedleWidth - { - get { return m_NeedleWidth; } - set - { - if (m_NeedleWidth != value) - { - m_NeedleWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - #endregion - - #endregion - - #region Helper - - private void FindFontBounds() - { - //find upper and lower bounds for numeric characters - Int32 c1; - Int32 c2; - Boolean boundfound; - using (SolidBrush backBrush = new SolidBrush(Color.White)) - using (SolidBrush foreBrush = new SolidBrush(Color.Black)) - { - using (Bitmap bmpMeasure = new Bitmap(5, 5)) - using (Graphics gMeasure = Graphics.FromImage(bmpMeasure)) - { - SizeF boundingBox = gMeasure.MeasureString("0123456789", Font, -1, StringFormat.GenericTypographic); - using (var b = new Bitmap((Int32)(boundingBox.Width), (Int32)(boundingBox.Height))) - using (var g = Graphics.FromImage(b)) - { - g.FillRectangle(backBrush, 0.0F, 0.0F, boundingBox.Width, boundingBox.Height); - g.DrawString("0123456789", Font, foreBrush, 0.0F, 0.0F, StringFormat.GenericTypographic); - - fontBoundY1 = 0; - fontBoundY2 = 0; - c1 = 0; - boundfound = false; - while ((c1 < b.Height) && (!boundfound)) + get { return m_NeedleColor2; } + set { - c2 = 0; - while ((c2 < b.Width) && (!boundfound)) - { - if (b.GetPixel(c2, c1) != backBrush.Color) + if (m_NeedleColor2 != value) { - fontBoundY1 = c1; - boundfound = true; + m_NeedleColor2 = value; + drawGaugeBackground = true; + Refresh(); } - c2++; - } - c1++; } + } - c1 = b.Height - 1; - boundfound = false; - while ((0 < c1) && (!boundfound)) + [Browsable(true), + Category("AGauge"), + Description("The width of the needle.")] + public Int32 NeedleWidth + { + get { return m_NeedleWidth; } + set { - c2 = 0; - while ((c2 < b.Width) && (!boundfound)) - { - if (b.GetPixel(c2, c1) != backBrush.Color) + if (m_NeedleWidth != value) { - fontBoundY2 = c1; - boundfound = true; + m_NeedleWidth = value; + drawGaugeBackground = true; + Refresh(); } - c2++; - } - c1--; } - } } - } - } - [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] - public void RepaintControl() - { - drawGaugeBackground = true; - Refresh(); - } + #endregion - #endregion + #endregion - #region Base member overrides - - protected override void OnPaintBackground(PaintEventArgs pevent) - { - } - protected override void OnPaint(PaintEventArgs e) - { - if ((Width < 10) || (Height < 10)) - { - return; - } - - #region AutoSize - Single centerFactor = 1; - var center = Center; + #region Helper + private void FindFontBounds() + { + //find upper and lower bounds for numeric characters + Int32 c1; + Int32 c2; + Boolean boundfound; + using (SolidBrush backBrush = new SolidBrush(Color.White)) + using (SolidBrush foreBrush = new SolidBrush(Color.Black)) + { + using (Bitmap bmpMeasure = new Bitmap(5, 5)) + using (Graphics gMeasure = Graphics.FromImage(bmpMeasure)) + { + SizeF boundingBox = gMeasure.MeasureString("0123456789", Font, -1, StringFormat.GenericTypographic); + using (var b = new Bitmap((Int32)(boundingBox.Width), (Int32)(boundingBox.Height))) + using (var g = Graphics.FromImage(b)) + { + g.FillRectangle(backBrush, 0.0F, 0.0F, boundingBox.Width, boundingBox.Height); + g.DrawString("0123456789", Font, foreBrush, 0.0F, 0.0F, StringFormat.GenericTypographic); + + fontBoundY1 = 0; + fontBoundY2 = 0; + c1 = 0; + boundfound = false; + while ((c1 < b.Height) && (!boundfound)) + { + c2 = 0; + while ((c2 < b.Width) && (!boundfound)) + { + if (b.GetPixel(c2, c1) != backBrush.Color) + { + fontBoundY1 = c1; + boundfound = true; + } + c2++; + } + c1++; + } + + c1 = b.Height - 1; + boundfound = false; + while ((0 < c1) && (!boundfound)) + { + c2 = 0; + while ((c2 < b.Width) && (!boundfound)) + { + if (b.GetPixel(c2, c1) != backBrush.Color) + { + fontBoundY2 = c1; + boundfound = true; + } + c2++; + } + c1--; + } + } + } + } + } - if (AutoSize) - { - double widthFactor = ((1.0 / (double)(2 * Center.X)) * (double)Size.Width); - double heightFactor = ((1.0 / (double)(2 * Center.Y)) * (double)Size.Height); - centerFactor = (float)Math.Min(widthFactor, heightFactor); - center = new Point((int)(Center.X * widthFactor), (int)(Center.Y * heightFactor)); - } - #endregion + [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] + public void RepaintControl() + { + drawGaugeBackground = true; + Refresh(); + } - #region drawGaugeBackground - if (drawGaugeBackground) - { - drawGaugeBackground = false; + #endregion - FindFontBounds(); + #region Base member overrides - if (gaugeBitmap != null) + protected override void OnPaintBackground(PaintEventArgs pevent) { - gaugeBitmap.Dispose(); - gaugeBitmap = null; } - - gaugeBitmap = new Bitmap(Width, Height, e.Graphics); - using (Graphics ggr = Graphics.FromImage(gaugeBitmap)) - using (GraphicsPath gp = new GraphicsPath()) + protected override void OnPaint(PaintEventArgs e) { - using (var brBackground = new SolidBrush(BackColor)) - { - ggr.FillRectangle(brBackground, ClientRectangle); - } - - #region BackgroundImage - if (BackgroundImage != null) - { - switch (BackgroundImageLayout) + if ((Width < 10) || (Height < 10)) { - case ImageLayout.Center: - ggr.DrawImageUnscaled(BackgroundImage, Width / 2 - BackgroundImage.Width / 2, Height / 2 - BackgroundImage.Height / 2); - break; - case ImageLayout.None: - ggr.DrawImageUnscaled(BackgroundImage, 0, 0); - break; - case ImageLayout.Stretch: - ggr.DrawImage(BackgroundImage, 0, 0, Width, Height); - break; - case ImageLayout.Tile: - Int32 pixelOffsetX = 0; - Int32 pixelOffsetY = 0; - while (pixelOffsetX < Width) - { - pixelOffsetY = 0; - while (pixelOffsetY < Height) - { - ggr.DrawImageUnscaled(BackgroundImage, pixelOffsetX, pixelOffsetY); - pixelOffsetY += BackgroundImage.Height; - } - pixelOffsetX += BackgroundImage.Width; - } - break; - case ImageLayout.Zoom: - if ((Single)(BackgroundImage.Width / Width) < (Single)(BackgroundImage.Height / Height)) - { - ggr.DrawImage(BackgroundImage, 0, 0, Height, Height); - } - else - { - ggr.DrawImage(BackgroundImage, 0, 0, Width, Width); - } - break; + return; } - } - #endregion - ggr.SmoothingMode = SmoothingMode.HighQuality; - ggr.PixelOffsetMode = PixelOffsetMode.HighQuality; + #region AutoSize + Single centerFactor = 1; + var center = Center; - #region _GaugeRanges - Single rangeStartAngle; - Single rangeSweepAngle; - foreach (AGaugeRange ptrRange in _GaugeRanges) - { - if (ptrRange.EndValue > ptrRange.StartValue) - { - rangeStartAngle = m_BaseArcStart + (ptrRange.StartValue - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); - rangeSweepAngle = (ptrRange.EndValue - ptrRange.StartValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); - gp.Reset(); - int outerRadius = (int)(ptrRange.OuterRadius * centerFactor); - gp.AddPie(new Rectangle(center.X - outerRadius, center.Y - outerRadius, - 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); - gp.Reverse(); - int innerRadius = (int)(ptrRange.InnerRadius * centerFactor); - gp.AddPie(new Rectangle(center.X - innerRadius, center.Y - innerRadius, - 2 * innerRadius, 2 * innerRadius), rangeStartAngle, rangeSweepAngle); - gp.Reverse(); - ggr.SetClip(gp); - using (var brRange = new SolidBrush(ptrRange.Color)) - { - ggr.FillPie(brRange, new Rectangle(center.X - outerRadius, center.Y - outerRadius, 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); - } - } - } - #endregion - - ggr.SetClip(ClientRectangle); - if (m_BaseArcRadius > 0) - { - int baseArcRadius = (int)(m_BaseArcRadius * centerFactor); - if (m_gradientType != GradientType.None) + if (AutoSize) { - Point GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - Point GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - switch (m_gradientOrientation) - { - case GradientOrientation.UpToBottom: - GradientP1Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - GradientP2Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - break; - case GradientOrientation.BottomToUp: - GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - break; - case GradientOrientation.RightToLeft: - GradientP1Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); - GradientP2Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); - break; - case GradientOrientation.LeftToRight: - GradientP1Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); - GradientP2Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); - break; - } - LinearGradientBrush myArc1Gradient = new LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green); - using (var pnArc = new Pen(myArc1Gradient, (int)(m_BaseArcWidth * centerFactor))) - { - ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); - } - } else { - using (var pnArc = new Pen(m_BaseArcColor, (int)(m_BaseArcWidth * centerFactor))) - { - ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); - } + double widthFactor = ((1.0 / (double)(2 * Center.X)) * (double)Size.Width); + double heightFactor = ((1.0 / (double)(2 * Center.Y)) * (double)Size.Height); + centerFactor = (float)Math.Min(widthFactor, heightFactor); + center = new Point((int)(Center.X * widthFactor), (int)(Center.Y * heightFactor)); } - } - - #region ScaleNumbers - String valueText = ""; - SizeF boundingBox; - Single countValue = 0; - Int32 counter1 = 0; - var Format = StringFormat.GenericTypographic; - Format.Alignment = StringAlignment.Near; - - using (var pnMajorScaleLines = new Pen(m_ScaleLinesMajorColor, (int)(m_ScaleLinesMajorWidth * centerFactor))) - using (var brScaleNumbers = new SolidBrush(m_ScaleNumbersColor)) - { - while (countValue <= (m_MaxValue - m_MinValue)) + #endregion + + #region drawGaugeBackground + if (drawGaugeBackground) { - valueText = (m_MinValue + countValue).ToString(m_ScaleNumbersFormat); - ggr.ResetTransform(); - boundingBox = ggr.MeasureString(valueText, Font, -1, StringFormat.GenericTypographic); - - gp.Reset(); - int scaleLinesMajorOuterRadius = (int)(m_ScaleLinesMajorOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorOuterRadius, center.Y - scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius)); - gp.Reverse(); - int scaleLinesMajorInnerRadius = (int)(m_ScaleLinesMajorInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorInnerRadius, center.Y - scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - ggr.DrawLine(pnMajorScaleLines, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0))); - - gp.Reset(); - int scaleLinesMinorOuterRadius = (int)(m_ScaleLinesMinorOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); - gp.Reverse(); - int scaleLinesMinorInnerRadius = (int)(m_ScaleLinesMinorInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - if (countValue < (m_MaxValue - m_MinValue)) - { - using (var pnScaleLinesInter = new Pen(m_ScaleLinesInterColor, (int)(m_ScaleLinesInterWidth * centerFactor))) - using (var pnScaleLinesMinorColor = new Pen(m_ScaleLinesMinorColor, (int)(m_ScaleLinesMinorWidth * centerFactor))) + drawGaugeBackground = false; + + FindFontBounds(); + + if (gaugeBitmap != null) { - for (Int32 counter2 = 1; counter2 <= m_ScaleLinesMinorTicks; counter2++) - { - if (((m_ScaleLinesMinorTicks % 2) == 1) && (m_ScaleLinesMinorTicks / 2) + 1 == counter2) + gaugeBitmap.Dispose(); + gaugeBitmap = null; + } + + gaugeBitmap = new Bitmap(Width, Height, e.Graphics); + using (Graphics ggr = Graphics.FromImage(gaugeBitmap)) + using (GraphicsPath gp = new GraphicsPath()) + { + using (var brBackground = new SolidBrush(BackColor)) { - gp.Reset(); - int scaleLinesInterOuterRadius = (int)(m_ScaleLinesInterOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesInterOuterRadius, center.Y - scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius)); - gp.Reverse(); - int scaleLinesInterInnerRadius = (int)(m_ScaleLinesInterInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesInterInnerRadius, center.Y - scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - ggr.DrawLine(pnScaleLinesInter, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesInterOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesInterOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); - - gp.Reset(); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); - gp.Reverse(); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); + ggr.FillRectangle(brBackground, ClientRectangle); } - else + + #region BackgroundImage + if (BackgroundImage != null) + { + switch (BackgroundImageLayout) + { + case ImageLayout.Center: + ggr.DrawImageUnscaled(BackgroundImage, Width / 2 - BackgroundImage.Width / 2, Height / 2 - BackgroundImage.Height / 2); + break; + case ImageLayout.None: + ggr.DrawImageUnscaled(BackgroundImage, 0, 0); + break; + case ImageLayout.Stretch: + ggr.DrawImage(BackgroundImage, 0, 0, Width, Height); + break; + case ImageLayout.Tile: + Int32 pixelOffsetX = 0; + Int32 pixelOffsetY = 0; + while (pixelOffsetX < Width) + { + pixelOffsetY = 0; + while (pixelOffsetY < Height) + { + ggr.DrawImageUnscaled(BackgroundImage, pixelOffsetX, pixelOffsetY); + pixelOffsetY += BackgroundImage.Height; + } + pixelOffsetX += BackgroundImage.Width; + } + break; + case ImageLayout.Zoom: + if ((Single)(BackgroundImage.Width / Width) < (Single)(BackgroundImage.Height / Height)) + { + ggr.DrawImage(BackgroundImage, 0, 0, Height, Height); + } + else + { + ggr.DrawImage(BackgroundImage, 0, 0, Width, Width); + } + break; + } + } + #endregion + + ggr.SmoothingMode = SmoothingMode.HighQuality; + ggr.PixelOffsetMode = PixelOffsetMode.HighQuality; + + + #region _GaugeRanges + Single rangeStartAngle; + Single rangeSweepAngle; + foreach (AGaugeRange ptrRange in _GaugeRanges) + { + if (ptrRange.EndValue > ptrRange.StartValue) + { + rangeStartAngle = m_BaseArcStart + (ptrRange.StartValue - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); + rangeSweepAngle = (ptrRange.EndValue - ptrRange.StartValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); + gp.Reset(); + int outerRadius = (int)(ptrRange.OuterRadius * centerFactor); + gp.AddPie(new Rectangle(center.X - outerRadius, center.Y - outerRadius, + 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); + gp.Reverse(); + int innerRadius = (int)(ptrRange.InnerRadius * centerFactor); + gp.AddPie(new Rectangle(center.X - innerRadius, center.Y - innerRadius, + 2 * innerRadius, 2 * innerRadius), rangeStartAngle, rangeSweepAngle); + gp.Reverse(); + ggr.SetClip(gp); + using (var brRange = new SolidBrush(ptrRange.Color)) + { + ggr.FillPie(brRange, new Rectangle(center.X - outerRadius, center.Y - outerRadius, 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); + } + } + } + #endregion + + ggr.SetClip(ClientRectangle); + if (m_BaseArcRadius > 0) + { + int baseArcRadius = (int)(m_BaseArcRadius * centerFactor); + if (m_gradientType != GradientType.None) + { + Point GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); + Point GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); + switch (m_gradientOrientation) + { + case GradientOrientation.UpToBottom: + GradientP1Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); + GradientP2Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); + break; + case GradientOrientation.BottomToUp: + GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); + GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); + break; + case GradientOrientation.RightToLeft: + GradientP1Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); + GradientP2Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); + break; + case GradientOrientation.LeftToRight: + GradientP1Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); + GradientP2Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); + break; + } + LinearGradientBrush myArc1Gradient = new LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green); + using (var pnArc = new Pen(myArc1Gradient, (int)(m_BaseArcWidth * centerFactor))) + { + ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); + } + } + else + { + using (var pnArc = new Pen(m_BaseArcColor, (int)(m_BaseArcWidth * centerFactor))) + { + ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); + } + } + } + + #region ScaleNumbers + String valueText = ""; + SizeF boundingBox; + Single countValue = 0; + Int32 counter1 = 0; + var Format = StringFormat.GenericTypographic; + Format.Alignment = StringAlignment.Near; + + using (var pnMajorScaleLines = new Pen(m_ScaleLinesMajorColor, (int)(m_ScaleLinesMajorWidth * centerFactor))) + using (var brScaleNumbers = new SolidBrush(m_ScaleNumbersColor)) + { + while (countValue <= (m_MaxValue - m_MinValue)) + { + valueText = (m_MinValue + countValue).ToString(m_ScaleNumbersFormat); + ggr.ResetTransform(); + boundingBox = ggr.MeasureString(valueText, Font, -1, StringFormat.GenericTypographic); + + gp.Reset(); + int scaleLinesMajorOuterRadius = (int)(m_ScaleLinesMajorOuterRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorOuterRadius, center.Y - scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius)); + gp.Reverse(); + int scaleLinesMajorInnerRadius = (int)(m_ScaleLinesMajorInnerRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorInnerRadius, center.Y - scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius)); + gp.Reverse(); + ggr.SetClip(gp); + + ggr.DrawLine(pnMajorScaleLines, + (Single)(center.X), + (Single)(center.Y), + (Single)(center.X + 2 * scaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)), + (Single)(center.Y + 2 * scaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0))); + + gp.Reset(); + int scaleLinesMinorOuterRadius = (int)(m_ScaleLinesMinorOuterRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); + gp.Reverse(); + int scaleLinesMinorInnerRadius = (int)(m_ScaleLinesMinorInnerRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); + gp.Reverse(); + ggr.SetClip(gp); + + if (countValue < (m_MaxValue - m_MinValue)) + { + using (var pnScaleLinesInter = new Pen(m_ScaleLinesInterColor, (int)(m_ScaleLinesInterWidth * centerFactor))) + using (var pnScaleLinesMinorColor = new Pen(m_ScaleLinesMinorColor, (int)(m_ScaleLinesMinorWidth * centerFactor))) + { + for (Int32 counter2 = 1; counter2 <= m_ScaleLinesMinorTicks; counter2++) + { + if (((m_ScaleLinesMinorTicks % 2) == 1) && (m_ScaleLinesMinorTicks / 2) + 1 == counter2) + { + gp.Reset(); + int scaleLinesInterOuterRadius = (int)(m_ScaleLinesInterOuterRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesInterOuterRadius, center.Y - scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius)); + gp.Reverse(); + int scaleLinesInterInnerRadius = (int)(m_ScaleLinesInterInnerRadius * centerFactor); + gp.AddEllipse(new Rectangle(center.X - scaleLinesInterInnerRadius, center.Y - scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius)); + gp.Reverse(); + ggr.SetClip(gp); + + ggr.DrawLine(pnScaleLinesInter, + (Single)(center.X), + (Single)(center.Y), + (Single)(center.X + 2 * scaleLinesInterOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), + (Single)(center.Y + 2 * scaleLinesInterOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); + + gp.Reset(); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); + gp.Reverse(); + gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); + gp.Reverse(); + ggr.SetClip(gp); + } + else + { + ggr.DrawLine(pnScaleLinesMinorColor, + (Single)(center.X), + (Single)(center.Y), + (Single)(center.X + 2 * scaleLinesMinorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), + (Single)(center.Y + 2 * scaleLinesMinorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); + } + } + } + } + + ggr.SetClip(ClientRectangle); + + if (m_ScaleNumbersRotation != 0) + { + ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias; + ggr.RotateTransform(90.0F + m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)); + } + + ggr.TranslateTransform((Single)(center.X + (m_ScaleNumbersRadius * centerFactor) * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), + (Single)(center.Y + (m_ScaleNumbersRadius * centerFactor) * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), + System.Drawing.Drawing2D.MatrixOrder.Append); + + + if (counter1 >= ScaleNumbersStartScaleLine - 1) + { + var ptText = new PointF((-boundingBox.Width / 2f), (-fontBoundY1 - (fontBoundY2 - fontBoundY1 + 1f) / 2f)); + ggr.DrawString(valueText, Font, brScaleNumbers, ptText.X, ptText.Y, Format); + } + + countValue += m_ScaleLinesMajorStepValue; + counter1++; + } + } + #endregion + + ggr.ResetTransform(); + ggr.SetClip(ClientRectangle); + + if (m_ScaleNumbersRotation != 0) { - ggr.DrawLine(pnScaleLinesMinorColor, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesMinorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesMinorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); + ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault; } - } + + #region _GaugeLabels + Format = StringFormat.GenericTypographic; + Format.Alignment = StringAlignment.Center; + foreach (AGaugeLabel ptrGaugeLabel in _GaugeLabels) + { + if (!String.IsNullOrEmpty(ptrGaugeLabel.Text)) + { + using (var brGaugeLabel = new SolidBrush(ptrGaugeLabel.Color)) + { + ggr.DrawString(ptrGaugeLabel.Text, ptrGaugeLabel.Font, brGaugeLabel, + (ptrGaugeLabel.Position.X) * centerFactor + center.X, + (ptrGaugeLabel.Position.Y) * centerFactor + center.Y, Format); + } + } + } + #endregion } - } + } + #endregion - ggr.SetClip(ClientRectangle); + e.Graphics.DrawImageUnscaled(gaugeBitmap, 0, 0); + e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; + e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; - if (m_ScaleNumbersRotation != 0) - { - ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias; - ggr.RotateTransform(90.0F + m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)); - } + #region Needle + Single brushAngle = (Int32)(m_BaseArcStart + (m_value1 - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue)) % 360; + if (brushAngle < 0) brushAngle += 360; + Double needleAngle = brushAngle * Math.PI / 180; - ggr.TranslateTransform((Single)(center.X + (m_ScaleNumbersRadius * centerFactor) * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), - (Single)(center.Y + (m_ScaleNumbersRadius * centerFactor) * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), - System.Drawing.Drawing2D.MatrixOrder.Append); + int needleWidth = (int)(m_NeedleWidth * centerFactor); + int needleRadius = (int)(m_NeedleRadius * centerFactor); + switch (m_NeedleType) + { + case NeedleType.Advance: + PointF[] points = new PointF[3]; + + Int32 subcol = (Int32)(((brushAngle + 225) % 180) * 100 / 180); + Int32 subcol2 = (Int32)(((brushAngle + 135) % 180) * 100 / 180); + using (var brNeedle = new SolidBrush(m_NeedleColor2)) + { + e.Graphics.FillEllipse(brNeedle, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + } - if (counter1 >= ScaleNumbersStartScaleLine - 1) - { - var ptText = new PointF((-boundingBox.Width / 2f), (-fontBoundY1 - (fontBoundY2 - fontBoundY1 + 1f) / 2f)); - ggr.DrawString(valueText, Font, brScaleNumbers, ptText.X, ptText.Y, Format); - } + Color clr1 = Color.White; + Color clr2 = Color.White; + Color clr3 = Color.White; + Color clr4 = Color.White; - countValue += m_ScaleLinesMajorStepValue; - counter1++; + switch (m_NeedleColor1) + { + case AGaugeNeedleColor.Gray: + clr1 = Color.FromArgb(80 + subcol, 80 + subcol, 80 + subcol); + clr2 = Color.FromArgb(180 - subcol, 180 - subcol, 180 - subcol); + clr3 = Color.FromArgb(80 + subcol2, 80 + subcol2, 80 + subcol2); + clr4 = Color.FromArgb(180 - subcol2, 180 - subcol2, 180 - subcol2); + e.Graphics.DrawEllipse(Pens.Gray, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Red: + clr1 = Color.FromArgb(145 + subcol, subcol, subcol); + clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 100 - subcol); + clr3 = Color.FromArgb(145 + subcol2, subcol2, subcol2); + clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 100 - subcol2); + e.Graphics.DrawEllipse(Pens.Red, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Green: + clr1 = Color.FromArgb(subcol, 145 + subcol, subcol); + clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 100 - subcol); + clr3 = Color.FromArgb(subcol2, 145 + subcol2, subcol2); + clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 100 - subcol2); + e.Graphics.DrawEllipse(Pens.Green, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Blue: + clr1 = Color.FromArgb(subcol, subcol, 145 + subcol); + clr2 = Color.FromArgb(100 - subcol, 100 - subcol, 245 - subcol); + clr3 = Color.FromArgb(subcol2, subcol2, 145 + subcol2); + clr4 = Color.FromArgb(100 - subcol2, 100 - subcol2, 245 - subcol2); + e.Graphics.DrawEllipse(Pens.Blue, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Magenta: + clr1 = Color.FromArgb(subcol, 145 + subcol, 145 + subcol); + clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 245 - subcol); + clr3 = Color.FromArgb(subcol2, 145 + subcol2, 145 + subcol2); + clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 245 - subcol2); + e.Graphics.DrawEllipse(Pens.Magenta, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Violet: + clr1 = Color.FromArgb(145 + subcol, subcol, 145 + subcol); + clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 245 - subcol); + clr3 = Color.FromArgb(145 + subcol2, subcol2, 145 + subcol2); + clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 245 - subcol2); + e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + case AGaugeNeedleColor.Yellow: + clr1 = Color.FromArgb(145 + subcol, 145 + subcol, subcol); + clr2 = Color.FromArgb(245 - subcol, 245 - subcol, 100 - subcol); + clr3 = Color.FromArgb(145 + subcol2, 145 + subcol2, subcol2); + clr4 = Color.FromArgb(245 - subcol2, 245 - subcol2, 100 - subcol2); + e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + break; + } + + if (Math.Floor((Single)(((brushAngle + 225) % 360) / 180.0)) == 0) + { + Color clrTemp = clr1; + clr1 = clr2; + clr2 = clrTemp; + } + + if (Math.Floor((Single)(((brushAngle + 135) % 360) / 180.0)) == 0) + { + clr4 = clr3; + } + + using (Brush brush1 = new SolidBrush(clr1)) + using (Brush brush2 = new SolidBrush(clr2)) + using (Brush brush3 = new SolidBrush(clr3)) + using (Brush brush4 = new SolidBrush(clr4)) + { + points[0].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); + points[0].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); + points[1].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); + points[1].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); + points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); + points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); + e.Graphics.FillPolygon(brush1, points); + + points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); + points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); + e.Graphics.FillPolygon(brush2, points); + + points[0].X = (Single)(center.X - (needleRadius / 20 - 1) * Math.Cos(needleAngle)); + points[0].Y = (Single)(center.Y - (needleRadius / 20 - 1) * Math.Sin(needleAngle)); + points[1].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); + points[1].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); + points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); + points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); + e.Graphics.FillPolygon(brush4, points); + + points[0].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); + points[0].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); + points[1].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); + points[1].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); + + using (var pnNeedle = new Pen(m_NeedleColor2)) + { + e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[0].X, points[0].Y); + e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[1].X, points[1].Y); + } + } + break; + case NeedleType.Simple: + Point startPoint = new Point((Int32)(center.X - needleRadius / 8 * Math.Cos(needleAngle)), + (Int32)(center.Y - needleRadius / 8 * Math.Sin(needleAngle))); + Point endPoint = new Point((Int32)(center.X + needleRadius * Math.Cos(needleAngle)), + (Int32)(center.Y + needleRadius * Math.Sin(needleAngle))); + + using (var brDisk = new SolidBrush(m_NeedleColor2)) + { + e.Graphics.FillEllipse(brDisk, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); + } + + using (var pnLine = new Pen(GetColor(m_NeedleColor1), needleWidth)) + { + e.Graphics.DrawLine(pnLine, center.X, center.Y, endPoint.X, endPoint.Y); + e.Graphics.DrawLine(pnLine, center.X, center.Y, startPoint.X, startPoint.Y); + } + break; } - } - #endregion - - ggr.ResetTransform(); - ggr.SetClip(ClientRectangle); - - if (m_ScaleNumbersRotation != 0) - { - ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault; - } - - #region _GaugeLabels - Format = StringFormat.GenericTypographic; - Format.Alignment = StringAlignment.Center; - foreach (AGaugeLabel ptrGaugeLabel in _GaugeLabels) - { - if (!String.IsNullOrEmpty(ptrGaugeLabel.Text)) + #endregion + + #region DisplayValue + var PenString = new Pen(Color.Black); + Font PenFontV1 = new Font("Microsoft Sans Serif", 8, FontStyle.Bold); + Font PenFontV2 = new Font("Microsoft Sans Serif", 7, FontStyle.Bold); + SolidBrush StringPen = new SolidBrush(Color.Black); + Int32 LineHeight = 15; + PointF StrPos = Center; + StrPos.Y = StrPos.Y + 5; + if (UnitValue1 != UnitValue.None) { - using (var brGaugeLabel = new SolidBrush(ptrGaugeLabel.Color)) - { - ggr.DrawString(ptrGaugeLabel.Text, ptrGaugeLabel.Font, brGaugeLabel, - (ptrGaugeLabel.Position.X) * centerFactor + center.X, - (ptrGaugeLabel.Position.Y) * centerFactor + center.Y, Format); - } + String StringToDraw = ""; + switch (UnitValue1) + { + case UnitValue.Hertz: + StringToDraw = $"{Value1.ToString()} Hz"; + break; + case UnitValue.Percent: + StringToDraw = $"{Value1.ToString()} %"; + break; + case UnitValue.Volts: + StringToDraw = $"{Value1.ToString()} V"; + break; + case UnitValue.Watts: + StringToDraw = $"{Value1.ToString()} W"; + break; + } + Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1); + StrPos.Y = StrPos.Y + LineHeight; + e.Graphics.DrawString(StringToDraw, PenFontV1, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 5), StrPos.Y)); } - } - #endregion - } - } - #endregion - - e.Graphics.DrawImageUnscaled(gaugeBitmap, 0, 0); - e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; - e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; - - #region Needle - Single brushAngle = (Int32)(m_BaseArcStart + (m_value1 - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue)) % 360; - if (brushAngle < 0) brushAngle += 360; - Double needleAngle = brushAngle * Math.PI / 180; - - int needleWidth = (int)(m_NeedleWidth * centerFactor); - int needleRadius = (int)(m_NeedleRadius * centerFactor); - switch (m_NeedleType) - { - case NeedleType.Advance: - PointF[] points = new PointF[3]; - - Int32 subcol = (Int32)(((brushAngle + 225) % 180) * 100 / 180); - Int32 subcol2 = (Int32)(((brushAngle + 135) % 180) * 100 / 180); - - using (var brNeedle = new SolidBrush(m_NeedleColor2)) - { - e.Graphics.FillEllipse(brNeedle, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - } - - Color clr1 = Color.White; - Color clr2 = Color.White; - Color clr3 = Color.White; - Color clr4 = Color.White; - - switch (m_NeedleColor1) - { - case AGaugeNeedleColor.Gray: - clr1 = Color.FromArgb(80 + subcol, 80 + subcol, 80 + subcol); - clr2 = Color.FromArgb(180 - subcol, 180 - subcol, 180 - subcol); - clr3 = Color.FromArgb(80 + subcol2, 80 + subcol2, 80 + subcol2); - clr4 = Color.FromArgb(180 - subcol2, 180 - subcol2, 180 - subcol2); - e.Graphics.DrawEllipse(Pens.Gray, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Red: - clr1 = Color.FromArgb(145 + subcol, subcol, subcol); - clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 100 - subcol); - clr3 = Color.FromArgb(145 + subcol2, subcol2, subcol2); - clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Red, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Green: - clr1 = Color.FromArgb(subcol, 145 + subcol, subcol); - clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 100 - subcol); - clr3 = Color.FromArgb(subcol2, 145 + subcol2, subcol2); - clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Green, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Blue: - clr1 = Color.FromArgb(subcol, subcol, 145 + subcol); - clr2 = Color.FromArgb(100 - subcol, 100 - subcol, 245 - subcol); - clr3 = Color.FromArgb(subcol2, subcol2, 145 + subcol2); - clr4 = Color.FromArgb(100 - subcol2, 100 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Blue, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Magenta: - clr1 = Color.FromArgb(subcol, 145 + subcol, 145 + subcol); - clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 245 - subcol); - clr3 = Color.FromArgb(subcol2, 145 + subcol2, 145 + subcol2); - clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Magenta, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Violet: - clr1 = Color.FromArgb(145 + subcol, subcol, 145 + subcol); - clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 245 - subcol); - clr3 = Color.FromArgb(145 + subcol2, subcol2, 145 + subcol2); - clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Yellow: - clr1 = Color.FromArgb(145 + subcol, 145 + subcol, subcol); - clr2 = Color.FromArgb(245 - subcol, 245 - subcol, 100 - subcol); - clr3 = Color.FromArgb(145 + subcol2, 145 + subcol2, subcol2); - clr4 = Color.FromArgb(245 - subcol2, 245 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - } - - if (Math.Floor((Single)(((brushAngle + 225) % 360) / 180.0)) == 0) - { - Color clrTemp = clr1; - clr1 = clr2; - clr2 = clrTemp; - } - - if (Math.Floor((Single)(((brushAngle + 135) % 360) / 180.0)) == 0) - { - clr4 = clr3; - } - - using (Brush brush1 = new SolidBrush(clr1)) - using (Brush brush2 = new SolidBrush(clr2)) - using (Brush brush3 = new SolidBrush(clr3)) - using (Brush brush4 = new SolidBrush(clr4)) - { - points[0].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[1].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); - e.Graphics.FillPolygon(brush1, points); - - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); - e.Graphics.FillPolygon(brush2, points); - - points[0].X = (Single)(center.X - (needleRadius / 20 - 1) * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y - (needleRadius / 20 - 1) * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[1].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); - e.Graphics.FillPolygon(brush4, points); - - points[0].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); - points[1].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); - - using (var pnNeedle = new Pen(m_NeedleColor2)) + if (UnitValue2 != UnitValue.None) { - e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[0].X, points[0].Y); - e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[1].X, points[1].Y); + String StringToDraw = ""; + switch (UnitValue2) + { + case UnitValue.Hertz: + StringToDraw = $"{Value2.ToString()} Hz"; + break; + case UnitValue.Percent: + StringToDraw = $"{Value2.ToString()} %"; + break; + case UnitValue.Volts: + StringToDraw = $"{Value2.ToString()} V"; + break; + case UnitValue.Watts: + StringToDraw = $"{Value2.ToString()} W"; + break; + } + Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2); + StrPos.Y = StrPos.Y + LineHeight; + e.Graphics.DrawString(StringToDraw, PenFontV2, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)); } - } - break; - case NeedleType.Simple: - Point startPoint = new Point((Int32)(center.X - needleRadius / 8 * Math.Cos(needleAngle)), - (Int32)(center.Y - needleRadius / 8 * Math.Sin(needleAngle))); - Point endPoint = new Point((Int32)(center.X + needleRadius * Math.Cos(needleAngle)), - (Int32)(center.Y + needleRadius * Math.Sin(needleAngle))); - - using (var brDisk = new SolidBrush(m_NeedleColor2)) - { - e.Graphics.FillEllipse(brDisk, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - } - - using (var pnLine = new Pen(GetColor(m_NeedleColor1), needleWidth)) - { - e.Graphics.DrawLine(pnLine, center.X, center.Y, endPoint.X, endPoint.Y); - e.Graphics.DrawLine(pnLine, center.X, center.Y, startPoint.X, startPoint.Y); - } - break; - } - #endregion - - #region DisplayValue - var PenString = new Pen(Color.Black); - Font PenFontV1 = new Font("Microsoft Sans Serif", 8, FontStyle.Bold); - Font PenFontV2 = new Font("Microsoft Sans Serif", 7, FontStyle.Bold); - SolidBrush StringPen = new SolidBrush(Color.Black); - Int32 LineHeight = 15; - PointF StrPos = Center; - StrPos.Y = StrPos.Y + 5; - if (UnitValue1 != UnitValue.None) - { - String StringToDraw = ""; - switch (UnitValue1) - { - case UnitValue.Hertz: - StringToDraw = $"{Value1.ToString()} Hz"; - break; - case UnitValue.Percent: - StringToDraw = $"{Value1.ToString()} %"; - break; - case UnitValue.Volts: - StringToDraw = $"{Value1.ToString()} V"; - break; - case UnitValue.Watts: - StringToDraw = $"{Value1.ToString()} W"; - break; - } - Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1); - StrPos.Y = StrPos.Y + LineHeight; - e.Graphics.DrawString(StringToDraw, PenFontV1, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 5 ), StrPos.Y)); - } - if (UnitValue2 != UnitValue.None) - { - String StringToDraw = ""; - switch (UnitValue2) - { - case UnitValue.Hertz: - StringToDraw = $"{Value2.ToString()} Hz"; - break; - case UnitValue.Percent: - StringToDraw = $"{Value2.ToString()} %"; - break; - case UnitValue.Volts: - StringToDraw = $"{Value2.ToString()} V"; - break; - case UnitValue.Watts: - StringToDraw = $"{Value2.ToString()} W"; - break; - } - Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2); - StrPos.Y = StrPos.Y + LineHeight; - e.Graphics.DrawString(StringToDraw, PenFontV2, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)); - } #endregion } private Color GetColor(AGaugeNeedleColor clr) - { - switch (clr) - { - case AGaugeNeedleColor.Gray: - return Color.DarkGray; - case AGaugeNeedleColor.Red: - return Color.Red; - case AGaugeNeedleColor.Green: - return Color.Green; - case AGaugeNeedleColor.Blue: - return Color.Blue; - case AGaugeNeedleColor.Yellow: - return Color.Yellow; - case AGaugeNeedleColor.Violet: - return Color.Violet; - case AGaugeNeedleColor.Magenta: - return Color.Magenta; - default: - Debug.Fail("Missing enumeration"); - return Color.DarkGray; - } + { + switch (clr) + { + case AGaugeNeedleColor.Gray: + return Color.DarkGray; + case AGaugeNeedleColor.Red: + return Color.Red; + case AGaugeNeedleColor.Green: + return Color.Green; + case AGaugeNeedleColor.Blue: + return Color.Blue; + case AGaugeNeedleColor.Yellow: + return Color.Yellow; + case AGaugeNeedleColor.Violet: + return Color.Violet; + case AGaugeNeedleColor.Magenta: + return Color.Magenta; + default: + Debug.Fail("Missing enumeration"); + return Color.DarkGray; + } + } + + protected override void OnResize(EventArgs e) + { + drawGaugeBackground = true; + Refresh(); + } + #endregion } - protected override void OnResize(EventArgs e) + #region[ Gauge Range ] + public class AGaugeRangeCollection : CollectionBase { - drawGaugeBackground = true; - Refresh(); - } - #endregion - } + private AGauge Owner; + public AGaugeRangeCollection(AGauge sender) { Owner = sender; } - #region[ Gauge Range ] - public class AGaugeRangeCollection : CollectionBase - { - private AGauge Owner; - public AGaugeRangeCollection(AGauge sender) { Owner = sender; } + public AGaugeRange this[int index] { get { return (AGaugeRange)List[index]; } } + public bool Contains(AGaugeRange itemType) { return List.Contains(itemType); } + public int Add(AGaugeRange itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + var ret = List.Add(itemType); + if (Owner != null) Owner.RepaintControl(); + return ret; + } + public void Remove(AGaugeRange itemType) + { + List.Remove(itemType); + if (Owner != null) Owner.RepaintControl(); + } + public void Insert(int index, AGaugeRange itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + List.Insert(index, itemType); + if (Owner != null) Owner.RepaintControl(); + } + public int IndexOf(AGaugeRange itemType) { return List.IndexOf(itemType); } + public AGaugeRange FindByName(string name) + { + foreach (AGaugeRange ptrRange in List) + { + if (ptrRange.Name == name) return ptrRange; + } + return null; + } - public AGaugeRange this[int index] { get { return (AGaugeRange)List[index]; } } - public bool Contains(AGaugeRange itemType) { return List.Contains(itemType); } - public int Add(AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeRange itemType) - { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeRange itemType) { return List.IndexOf(itemType); } - public AGaugeRange FindByName(string name) - { - foreach (AGaugeRange ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } + protected override void OnInsert(int index, object value) + { + if (string.IsNullOrEmpty(((AGaugeRange)value).Name)) ((AGaugeRange)value).Name = GetUniqueName(); + base.OnInsert(index, value); + ((AGaugeRange)value).SetOwner(Owner); + } + protected override void OnRemove(int index, object value) + { + if (Owner != null) Owner.RepaintControl(); + } + protected override void OnClear() + { + if (Owner != null) Owner.RepaintControl(); + } - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeRange)value).Name)) ((AGaugeRange)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeRange)value).SetOwner(Owner); - } - protected override void OnRemove(int index, object value) - { - if (Owner != null) Owner.RepaintControl(); + private string GetUniqueName() + { + const string Prefix = "GaugeRange"; + int index = 1; + bool valid; + while (this.Count != 0) + { + valid = true; + for (int x = 0; x < this.Count; x++) + { + if (this[x].Name == (Prefix + index.ToString())) + { + valid = false; + break; + } + } + if (valid) break; + index++; + }; + return Prefix + index.ToString(); + } } - protected override void OnClear() + public class AGaugeRange { - if (Owner != null) Owner.RepaintControl(); - } + public AGaugeRange() { } - private string GetUniqueName() - { - const string Prefix = "GaugeRange"; - int index = 1; - bool valid; - while (this.Count != 0) - { - valid = true; - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - { - valid = false; - break; - } - } - if (valid) break; - index++; - }; - return Prefix + index.ToString(); - } - } - public class AGaugeRange - { - public AGaugeRange() { } + public AGaugeRange(Color color, Single startValue, Single endValue) + { + Color = color; + _StartValue = startValue; + _EndValue = endValue; + } - public AGaugeRange(Color color, Single startValue, Single endValue) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - } + public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerRadius, Int32 outerRadius) + { + Color = color; + _StartValue = startValue; + _EndValue = endValue; + InnerRadius = innerRadius; + OuterRadius = outerRadius; + } - public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerRadius, Int32 outerRadius) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - InnerRadius = innerRadius; - OuterRadius = outerRadius; - } + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] + public string Name { get; set; } + + [Browsable(false)] + public Boolean InRange { get; set; } + + private AGauge Owner; + [Browsable(false)] + public void SetOwner(AGauge value) { Owner = value; } + private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } + + [Browsable(true), + Category("Appearance"), + Description("The color of the range.")] + public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } + private Color _Color; + + [Browsable(true), + Category("Limits"), + Description("The start value of the range, must be less than RangeEndValue.")] + public Single StartValue + { + get { return _StartValue; } + set + { + if (Owner != null) + { + if (value < Owner.MinValue) value = Owner.MinValue; + if (value > Owner.MaxValue) value = Owner.MaxValue; + } + _StartValue = value; NotifyOwner(); + } + } + private Single _StartValue; - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - [Browsable(false)] - public Boolean InRange { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the range.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color; - - [Browsable(true), - Category("Limits"), - Description("The start value of the range, must be less than RangeEndValue.")] - public Single StartValue - { - get { return _StartValue; } - set - { - if (Owner != null) + [Browsable(true), + Category("Limits"), + Description("The end value of the range. Must be greater than RangeStartValue.")] + public Single EndValue { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; + get { return _EndValue; } + set + { + if (Owner != null) + { + if (value < Owner.MinValue) value = Owner.MinValue; + if (value > Owner.MaxValue) value = Owner.MaxValue; + } + _EndValue = value; NotifyOwner(); + } } - _StartValue = value; NotifyOwner(); - } - } - private Single _StartValue; + private Single _EndValue; - [Browsable(true), - Category("Limits"), - Description("The end value of the range. Must be greater than RangeStartValue.")] - public Single EndValue - { - get { return _EndValue; } - set - { - if (Owner != null) + [Browsable(true), + Category("Appearance"), + Description("The inner radius of the range.")] + public Int32 InnerRadius { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; + get { return _InnerRadius; } + set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } } - _EndValue = value; NotifyOwner(); - } - } - private Single _EndValue; + private Int32 _InnerRadius = 70; - [Browsable(true), - Category("Appearance"), - Description("The inner radius of the range.")] - public Int32 InnerRadius - { - get { return _InnerRadius; } - set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } + [Browsable(true), + Category("Appearance"), + Description("The outer radius of the range.")] + public Int32 OuterRadius + { + get { return _OuterRadius; } + set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } + } + private Int32 _OuterRadius = 80; } - private Int32 _InnerRadius = 70; + #endregion - [Browsable(true), - Category("Appearance"), - Description("The outer radius of the range.")] - public Int32 OuterRadius - { - get { return _OuterRadius; } - set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } - } - private Int32 _OuterRadius = 80; - } - #endregion - - #region [ Gauge Label ] - public class AGaugeLabelCollection : CollectionBase - { - private AGauge Owner; - public AGaugeLabelCollection(AGauge sender) { Owner = sender; } - - public AGaugeLabel this[int index] { get { return (AGaugeLabel)List[index]; } } - public bool Contains(AGaugeLabel itemType) { return List.Contains(itemType); } - public int Add(AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeLabel itemType) + #region [ Gauge Label ] + public class AGaugeLabelCollection : CollectionBase { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeLabel itemType) { return List.IndexOf(itemType); } - public AGaugeLabel FindByName(string name) - { - foreach (AGaugeLabel ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } + private AGauge Owner; + public AGaugeLabelCollection(AGauge sender) { Owner = sender; } - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeLabel)value).Name)) ((AGaugeLabel)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeLabel)value).SetOwner(Owner); + public AGaugeLabel this[int index] { get { return (AGaugeLabel)List[index]; } } + public bool Contains(AGaugeLabel itemType) { return List.Contains(itemType); } + public int Add(AGaugeLabel itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + var ret = List.Add(itemType); + if (Owner != null) Owner.RepaintControl(); + return ret; + } + public void Remove(AGaugeLabel itemType) + { + List.Remove(itemType); + if (Owner != null) Owner.RepaintControl(); + } + public void Insert(int index, AGaugeLabel itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + List.Insert(index, itemType); + if (Owner != null) Owner.RepaintControl(); + } + public int IndexOf(AGaugeLabel itemType) { return List.IndexOf(itemType); } + public AGaugeLabel FindByName(string name) + { + foreach (AGaugeLabel ptrRange in List) + { + if (ptrRange.Name == name) return ptrRange; + } + return null; + } + + protected override void OnInsert(int index, object value) + { + if (string.IsNullOrEmpty(((AGaugeLabel)value).Name)) ((AGaugeLabel)value).Name = GetUniqueName(); + base.OnInsert(index, value); + ((AGaugeLabel)value).SetOwner(Owner); + } + protected override void OnRemove(int index, object value) + { + if (Owner != null) Owner.RepaintControl(); + } + protected override void OnClear() + { + if (Owner != null) Owner.RepaintControl(); + } + + private string GetUniqueName() + { + const string Prefix = "GaugeLabel"; + int index = 1; + while (this.Count != 0) + { + for (int x = 0; x < this.Count; x++) + { + if (this[x].Name == (Prefix + index.ToString())) + continue; + else + return Prefix + index.ToString(); + } + index++; + }; + return Prefix + index.ToString(); + } } - protected override void OnRemove(int index, object value) + + public class AGaugeLabel { - if (Owner != null) Owner.RepaintControl(); + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] + public string Name { get; set; } + + private AGauge Owner; + [Browsable(false)] + public void SetOwner(AGauge value) { Owner = value; } + private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } + + [Browsable(true), + Category("Appearance"), + Description("The color of the caption text.")] + public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } + private Color _Color = Color.FromKnownColor(KnownColor.WindowText); + + [Browsable(true), + Category("Appearance"), + Description("The text of the caption.")] + public String Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } + private String _Text; + + [Browsable(true), + Category("Appearance"), + Description("The position of the caption.")] + public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } + private Point _Position; + + [Browsable(true), + Category("Appearance"), + Description("Font of Text.")] + public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } + private Font _Font = DefaultFont; + + public void ResetFont() { _Font = DefaultFont; } + private Boolean ShouldSerializeFont() { return (_Font != DefaultFont); } + private static Font DefaultFont = System.Windows.Forms.Control.DefaultFont; } - protected override void OnClear() + #endregion + + #region [ Gauge Enum ] + + /// + /// First needle color + /// + public enum AGaugeNeedleColor { - if (Owner != null) Owner.RepaintControl(); - } + Gray = 0, + Red = 1, + Green = 2, + Blue = 3, + Yellow = 4, + Violet = 5, + Magenta = 6 + }; - private string GetUniqueName() + public enum NeedleType { - const string Prefix = "GaugeLabel"; - int index = 1; - while (this.Count != 0) - { - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - continue; - else - return Prefix + index.ToString(); - } - index++; - }; - return Prefix + index.ToString(); + Advance, + Simple } - } - - public class AGaugeLabel - { - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the caption text.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color = Color.FromKnownColor(KnownColor.WindowText); - - [Browsable(true), - Category("Appearance"), - Description("The text of the caption.")] - public String Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } - private String _Text; - - [Browsable(true), - Category("Appearance"), - Description("The position of the caption.")] - public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } - private Point _Position; - - [Browsable(true), - Category("Appearance"), - Description("Font of Text.")] - public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } - private Font _Font = DefaultFont; - - public void ResetFont() { _Font = DefaultFont; } - private Boolean ShouldSerializeFont() { return (_Font != DefaultFont); } - private static Font DefaultFont = System.Windows.Forms.Control.DefaultFont; - } - #endregion - - #region [ Gauge Enum ] - - /// - /// First needle color - /// - public enum AGaugeNeedleColor - { - Gray = 0, - Red = 1, - Green = 2, - Blue = 3, - Yellow = 4, - Violet = 5, - Magenta = 6 - }; - - public enum NeedleType - { - Advance, - Simple - } - - #endregion - - #region [ EventArgs ] - /// - /// Event argument for event. - /// - public class ValueInRangeChangedEventArgs : EventArgs - { - /// - /// Affected GaugeRange - /// - public AGaugeRange Range { get; private set; } - /// - /// Gauge Value - /// - public Single Value { get; private set; } + + #endregion + + #region [ EventArgs ] /// - /// True if value is within current range. + /// Event argument for event. /// - public bool InRange { get; private set; } - public ValueInRangeChangedEventArgs(AGaugeRange range, Single value, bool inRange) - { - this.Range = range; - this.Value = value; - this.InRange = inRange; + public class ValueInRangeChangedEventArgs : EventArgs + { + /// + /// Affected GaugeRange + /// + public AGaugeRange Range { get; private set; } + /// + /// Gauge Value + /// + public Single Value { get; private set; } + /// + /// True if value is within current range. + /// + public bool InRange { get; private set; } + public ValueInRangeChangedEventArgs(AGaugeRange range, Single value, bool inRange) + { + this.Range = range; + this.Value = value; + this.InRange = inRange; + } } - } - #endregion + #endregion - [Runtime.CompilerServices.CompilerGenerated] - class NamespaceDoc { } //Namespace Documentation + [Runtime.CompilerServices.CompilerGenerated] + class NamespaceDoc { } //Namespace Documentation } From 424bb6f4bc44dd19605eb92a827fc549dcde07b0 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:44:16 -0800 Subject: [PATCH 03/21] Split AGRange into its own file. --- WinNUT_V2/AGauge_mod/AGauge.cs | 173 ------------------------- WinNUT_V2/AGauge_mod/AGauge.csproj | 1 + WinNUT_V2/AGauge_mod/AGaugeRange.cs | 187 ++++++++++++++++++++++++++++ 3 files changed, 188 insertions(+), 173 deletions(-) create mode 100644 WinNUT_V2/AGauge_mod/AGaugeRange.cs diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs index 7ab1562..67fdcf2 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ b/WinNUT_V2/AGauge_mod/AGauge.cs @@ -1574,179 +1574,6 @@ protected override void OnResize(EventArgs e) #endregion } - #region[ Gauge Range ] - public class AGaugeRangeCollection : CollectionBase - { - private AGauge Owner; - public AGaugeRangeCollection(AGauge sender) { Owner = sender; } - - public AGaugeRange this[int index] { get { return (AGaugeRange)List[index]; } } - public bool Contains(AGaugeRange itemType) { return List.Contains(itemType); } - public int Add(AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeRange itemType) - { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeRange itemType) { return List.IndexOf(itemType); } - public AGaugeRange FindByName(string name) - { - foreach (AGaugeRange ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } - - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeRange)value).Name)) ((AGaugeRange)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeRange)value).SetOwner(Owner); - } - protected override void OnRemove(int index, object value) - { - if (Owner != null) Owner.RepaintControl(); - } - protected override void OnClear() - { - if (Owner != null) Owner.RepaintControl(); - } - - private string GetUniqueName() - { - const string Prefix = "GaugeRange"; - int index = 1; - bool valid; - while (this.Count != 0) - { - valid = true; - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - { - valid = false; - break; - } - } - if (valid) break; - index++; - }; - return Prefix + index.ToString(); - } - } - public class AGaugeRange - { - public AGaugeRange() { } - - public AGaugeRange(Color color, Single startValue, Single endValue) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - } - - public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerRadius, Int32 outerRadius) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - InnerRadius = innerRadius; - OuterRadius = outerRadius; - } - - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - [Browsable(false)] - public Boolean InRange { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the range.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color; - - [Browsable(true), - Category("Limits"), - Description("The start value of the range, must be less than RangeEndValue.")] - public Single StartValue - { - get { return _StartValue; } - set - { - if (Owner != null) - { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; - } - _StartValue = value; NotifyOwner(); - } - } - private Single _StartValue; - - [Browsable(true), - Category("Limits"), - Description("The end value of the range. Must be greater than RangeStartValue.")] - public Single EndValue - { - get { return _EndValue; } - set - { - if (Owner != null) - { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; - } - _EndValue = value; NotifyOwner(); - } - } - private Single _EndValue; - - [Browsable(true), - Category("Appearance"), - Description("The inner radius of the range.")] - public Int32 InnerRadius - { - get { return _InnerRadius; } - set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } - } - private Int32 _InnerRadius = 70; - - [Browsable(true), - Category("Appearance"), - Description("The outer radius of the range.")] - public Int32 OuterRadius - { - get { return _OuterRadius; } - set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } - } - private Int32 _OuterRadius = 80; - } - #endregion - #region [ Gauge Label ] public class AGaugeLabelCollection : CollectionBase { diff --git a/WinNUT_V2/AGauge_mod/AGauge.csproj b/WinNUT_V2/AGauge_mod/AGauge.csproj index a582ad3..12ba4bb 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.csproj +++ b/WinNUT_V2/AGauge_mod/AGauge.csproj @@ -52,6 +52,7 @@ AGauge.cs + diff --git a/WinNUT_V2/AGauge_mod/AGaugeRange.cs b/WinNUT_V2/AGauge_mod/AGaugeRange.cs new file mode 100644 index 0000000..bc4de60 --- /dev/null +++ b/WinNUT_V2/AGauge_mod/AGaugeRange.cs @@ -0,0 +1,187 @@ +// WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +// Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +// +// This program is free software: you can redistribute it and/or modify it under the terms of the +// GNU General Public License as published by the Free Software Foundation, either version 3 of the +// License, or any later version. +// +// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + +using System.Collections; +using System.ComponentModel; +using System.Drawing; + +namespace System.Windows.Forms +{ + public class AGaugeRange + { + public AGaugeRange() { } + + public AGaugeRange(Color color, Single startValue, Single endValue) + { + Color = color; + _StartValue = startValue; + _EndValue = endValue; + } + + public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerRadius, Int32 outerRadius) + { + Color = color; + _StartValue = startValue; + _EndValue = endValue; + InnerRadius = innerRadius; + OuterRadius = outerRadius; + } + + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] + public string Name { get; set; } + + [Browsable(false)] + public Boolean InRange { get; set; } + + private AGauge Owner; + [Browsable(false)] + public void SetOwner(AGauge value) { Owner = value; } + private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } + + [Browsable(true), + Category("Appearance"), + Description("The color of the range.")] + public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } + private Color _Color; + + [Browsable(true), + Category("Limits"), + Description("The start value of the range, must be less than RangeEndValue.")] + public Single StartValue + { + get { return _StartValue; } + set + { + if (Owner != null) + { + if (value < Owner.MinValue) value = Owner.MinValue; + if (value > Owner.MaxValue) value = Owner.MaxValue; + } + _StartValue = value; NotifyOwner(); + } + } + private Single _StartValue; + + [Browsable(true), + Category("Limits"), + Description("The end value of the range. Must be greater than RangeStartValue.")] + public Single EndValue + { + get { return _EndValue; } + set + { + if (Owner != null) + { + if (value < Owner.MinValue) value = Owner.MinValue; + if (value > Owner.MaxValue) value = Owner.MaxValue; + } + _EndValue = value; NotifyOwner(); + } + } + private Single _EndValue; + + [Browsable(true), + Category("Appearance"), + Description("The inner radius of the range.")] + public Int32 InnerRadius + { + get { return _InnerRadius; } + set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } + } + private Int32 _InnerRadius = 70; + + [Browsable(true), + Category("Appearance"), + Description("The outer radius of the range.")] + public Int32 OuterRadius + { + get { return _OuterRadius; } + set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } + } + private Int32 _OuterRadius = 80; + } + + public class AGaugeRangeCollection : CollectionBase + { + private AGauge Owner; + public AGaugeRangeCollection(AGauge sender) { Owner = sender; } + + public AGaugeRange this[int index] { get { return (AGaugeRange)List[index]; } } + public bool Contains(AGaugeRange itemType) { return List.Contains(itemType); } + public int Add(AGaugeRange itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + var ret = List.Add(itemType); + if (Owner != null) Owner.RepaintControl(); + return ret; + } + public void Remove(AGaugeRange itemType) + { + List.Remove(itemType); + if (Owner != null) Owner.RepaintControl(); + } + public void Insert(int index, AGaugeRange itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + List.Insert(index, itemType); + if (Owner != null) Owner.RepaintControl(); + } + public int IndexOf(AGaugeRange itemType) { return List.IndexOf(itemType); } + public AGaugeRange FindByName(string name) + { + foreach (AGaugeRange ptrRange in List) + { + if (ptrRange.Name == name) return ptrRange; + } + return null; + } + + protected override void OnInsert(int index, object value) + { + if (string.IsNullOrEmpty(((AGaugeRange)value).Name)) ((AGaugeRange)value).Name = GetUniqueName(); + base.OnInsert(index, value); + ((AGaugeRange)value).SetOwner(Owner); + } + protected override void OnRemove(int index, object value) + { + if (Owner != null) Owner.RepaintControl(); + } + protected override void OnClear() + { + if (Owner != null) Owner.RepaintControl(); + } + + private string GetUniqueName() + { + const string Prefix = "GaugeRange"; + int index = 1; + bool valid; + while (this.Count != 0) + { + valid = true; + for (int x = 0; x < this.Count; x++) + { + if (this[x].Name == (Prefix + index.ToString())) + { + valid = false; + break; + } + } + if (valid) break; + index++; + }; + return Prefix + index.ToString(); + } + } +} From 0ed8869c4ef59491abf4c407a738537e4c2d124e Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:46:46 -0800 Subject: [PATCH 04/21] Range code cleanup --- WinNUT_V2/AGauge_mod/AGaugeRange.cs | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/WinNUT_V2/AGauge_mod/AGaugeRange.cs b/WinNUT_V2/AGauge_mod/AGaugeRange.cs index bc4de60..9a6cfb4 100644 --- a/WinNUT_V2/AGauge_mod/AGaugeRange.cs +++ b/WinNUT_V2/AGauge_mod/AGaugeRange.cs @@ -17,14 +17,14 @@ public class AGaugeRange { public AGaugeRange() { } - public AGaugeRange(Color color, Single startValue, Single endValue) + public AGaugeRange(Color color, float startValue, float endValue) { Color = color; _StartValue = startValue; _EndValue = endValue; } - public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerRadius, Int32 outerRadius) + public AGaugeRange(Color color, float startValue, float endValue, int innerRadius, int outerRadius) { Color = color; _StartValue = startValue; @@ -40,7 +40,7 @@ public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerR public string Name { get; set; } [Browsable(false)] - public Boolean InRange { get; set; } + public bool InRange { get; set; } private AGauge Owner; [Browsable(false)] @@ -56,7 +56,7 @@ public AGaugeRange(Color color, Single startValue, Single endValue, Int32 innerR [Browsable(true), Category("Limits"), Description("The start value of the range, must be less than RangeEndValue.")] - public Single StartValue + public float StartValue { get { return _StartValue; } set @@ -69,12 +69,12 @@ public Single StartValue _StartValue = value; NotifyOwner(); } } - private Single _StartValue; + private float _StartValue; [Browsable(true), Category("Limits"), Description("The end value of the range. Must be greater than RangeStartValue.")] - public Single EndValue + public float EndValue { get { return _EndValue; } set @@ -87,27 +87,27 @@ public Single EndValue _EndValue = value; NotifyOwner(); } } - private Single _EndValue; + private float _EndValue; [Browsable(true), Category("Appearance"), Description("The inner radius of the range.")] - public Int32 InnerRadius + public int InnerRadius { get { return _InnerRadius; } set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } } - private Int32 _InnerRadius = 70; + private int _InnerRadius = 70; [Browsable(true), Category("Appearance"), Description("The outer radius of the range.")] - public Int32 OuterRadius + public int OuterRadius { get { return _OuterRadius; } set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } } - private Int32 _OuterRadius = 80; + private int _OuterRadius = 80; } public class AGaugeRangeCollection : CollectionBase From 4c96611e6818a617e067f99159a9dd1240bee964 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:49:10 -0800 Subject: [PATCH 05/21] Split off AGaugeLabel into its own file. --- WinNUT_V2/AGauge_mod/AGauge.cs | 115 ------------------------- WinNUT_V2/AGauge_mod/AGaugeLabel.cs | 128 ++++++++++++++++++++++++++++ 2 files changed, 128 insertions(+), 115 deletions(-) create mode 100644 WinNUT_V2/AGauge_mod/AGaugeLabel.cs diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs index 67fdcf2..de2db53 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ b/WinNUT_V2/AGauge_mod/AGauge.cs @@ -1574,121 +1574,6 @@ protected override void OnResize(EventArgs e) #endregion } - #region [ Gauge Label ] - public class AGaugeLabelCollection : CollectionBase - { - private AGauge Owner; - public AGaugeLabelCollection(AGauge sender) { Owner = sender; } - - public AGaugeLabel this[int index] { get { return (AGaugeLabel)List[index]; } } - public bool Contains(AGaugeLabel itemType) { return List.Contains(itemType); } - public int Add(AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeLabel itemType) - { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeLabel itemType) { return List.IndexOf(itemType); } - public AGaugeLabel FindByName(string name) - { - foreach (AGaugeLabel ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } - - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeLabel)value).Name)) ((AGaugeLabel)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeLabel)value).SetOwner(Owner); - } - protected override void OnRemove(int index, object value) - { - if (Owner != null) Owner.RepaintControl(); - } - protected override void OnClear() - { - if (Owner != null) Owner.RepaintControl(); - } - - private string GetUniqueName() - { - const string Prefix = "GaugeLabel"; - int index = 1; - while (this.Count != 0) - { - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - continue; - else - return Prefix + index.ToString(); - } - index++; - }; - return Prefix + index.ToString(); - } - } - - public class AGaugeLabel - { - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the caption text.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color = Color.FromKnownColor(KnownColor.WindowText); - - [Browsable(true), - Category("Appearance"), - Description("The text of the caption.")] - public String Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } - private String _Text; - - [Browsable(true), - Category("Appearance"), - Description("The position of the caption.")] - public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } - private Point _Position; - - [Browsable(true), - Category("Appearance"), - Description("Font of Text.")] - public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } - private Font _Font = DefaultFont; - - public void ResetFont() { _Font = DefaultFont; } - private Boolean ShouldSerializeFont() { return (_Font != DefaultFont); } - private static Font DefaultFont = System.Windows.Forms.Control.DefaultFont; - } - #endregion - #region [ Gauge Enum ] /// diff --git a/WinNUT_V2/AGauge_mod/AGaugeLabel.cs b/WinNUT_V2/AGauge_mod/AGaugeLabel.cs new file mode 100644 index 0000000..d16b7b2 --- /dev/null +++ b/WinNUT_V2/AGauge_mod/AGaugeLabel.cs @@ -0,0 +1,128 @@ +// WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +// Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +// +// This program is free software: you can redistribute it and/or modify it under the terms of the +// GNU General Public License as published by the Free Software Foundation, either version 3 of the +// License, or any later version. +// +// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + +using System.Collections; +using System.ComponentModel; +using System.Drawing; + +namespace System.Windows.Forms +{ + public class AGaugeLabel + { + [Browsable(true), + Category("Design"), + DisplayName("(Name)"), + Description("Instance Name.")] + public string Name { get; set; } + + private AGauge Owner; + [Browsable(false)] + public void SetOwner(AGauge value) { Owner = value; } + private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } + + [Browsable(true), + Category("Appearance"), + Description("The color of the caption text.")] + public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } + private Color _Color = Color.FromKnownColor(KnownColor.WindowText); + + [Browsable(true), + Category("Appearance"), + Description("The text of the caption.")] + public string Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } + private string _Text; + + [Browsable(true), + Category("Appearance"), + Description("The position of the caption.")] + public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } + private Point _Position; + + [Browsable(true), + Category("Appearance"), + Description("Font of Text.")] + public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } + private Font _Font = DefaultFont; + + public void ResetFont() { _Font = DefaultFont; } + private bool ShouldSerializeFont() { return (_Font != DefaultFont); } + private static Font DefaultFont = System.Windows.Forms.Control.DefaultFont; + } + + public class AGaugeLabelCollection : CollectionBase + { + private AGauge Owner; + public AGaugeLabelCollection(AGauge sender) { Owner = sender; } + + public AGaugeLabel this[int index] { get { return (AGaugeLabel)List[index]; } } + public bool Contains(AGaugeLabel itemType) { return List.Contains(itemType); } + public int Add(AGaugeLabel itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + var ret = List.Add(itemType); + if (Owner != null) Owner.RepaintControl(); + return ret; + } + public void Remove(AGaugeLabel itemType) + { + List.Remove(itemType); + if (Owner != null) Owner.RepaintControl(); + } + public void Insert(int index, AGaugeLabel itemType) + { + itemType.SetOwner(Owner); + if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); + List.Insert(index, itemType); + if (Owner != null) Owner.RepaintControl(); + } + public int IndexOf(AGaugeLabel itemType) { return List.IndexOf(itemType); } + public AGaugeLabel FindByName(string name) + { + foreach (AGaugeLabel ptrRange in List) + { + if (ptrRange.Name == name) return ptrRange; + } + return null; + } + + protected override void OnInsert(int index, object value) + { + if (string.IsNullOrEmpty(((AGaugeLabel)value).Name)) ((AGaugeLabel)value).Name = GetUniqueName(); + base.OnInsert(index, value); + ((AGaugeLabel)value).SetOwner(Owner); + } + protected override void OnRemove(int index, object value) + { + if (Owner != null) Owner.RepaintControl(); + } + protected override void OnClear() + { + if (Owner != null) Owner.RepaintControl(); + } + + private string GetUniqueName() + { + const string Prefix = "GaugeLabel"; + int index = 1; + while (this.Count != 0) + { + for (int x = 0; x < this.Count; x++) + { + if (this[x].Name == (Prefix + index.ToString())) + continue; + else + return Prefix + index.ToString(); + } + index++; + }; + return Prefix + index.ToString(); + } + } +} From 96c43a7d32589d10e866dbaf419ba01afef38828 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 11:50:48 -0800 Subject: [PATCH 06/21] Code cleanup in main class --- WinNUT_V2/AGauge_mod/AGauge.cs | 250 ++++++++++++++--------------- WinNUT_V2/AGauge_mod/AGauge.csproj | 1 + 2 files changed, 123 insertions(+), 128 deletions(-) diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs index de2db53..6a77f15 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ b/WinNUT_V2/AGauge_mod/AGauge.cs @@ -23,16 +23,10 @@ // // ----------------------------------------------------------------------------------- -using System; -using System.Collections.Generic; using System.ComponentModel; -using System.Data; using System.Drawing; -using System.Text; -using System.Windows.Forms; using System.Drawing.Drawing2D; using System.Diagnostics; -using System.Collections; namespace System.Windows.Forms { @@ -47,78 +41,78 @@ public partial class AGauge : Control { #region Private Fields - private Single fontBoundY1; - private Single fontBoundY2; + private float fontBoundY1; + private float fontBoundY2; private Bitmap gaugeBitmap; - private Boolean drawGaugeBackground = true; + private bool drawGaugeBackground = true; //Modified by Gawindx //private Single m_value1; - private Single m_value1; + private float m_value1; //Added By Gawindx - private Single m_value2; + private float m_value2; //private Boolean m_AutoSize = false; //private Point m_Center = new Point(100, 100); //Modified by gawindx private Point m_Center = new Point(74, 70); - private Single m_MinValue = 0; - private Single m_MaxValue = 100; + private float m_MinValue = 0; + private float m_MaxValue = 100; private Color m_BaseArcColor = Color.Gray; //Modified by Gawindx //private Int32 m_BaseArcRadius = 80; - private Int32 m_BaseArcRadius = 45; - private Int32 m_BaseArcStart = 135; - private Int32 m_BaseArcSweep = 270; + private int m_BaseArcRadius = 45; + private int m_BaseArcStart = 135; + private int m_BaseArcSweep = 270; //Modified by Gawindx //private Int32 m_BaseArcStart = -135; //private Int32 m_BaseArcSweep = -45; - private Int32 m_BaseArcWidth = 5; + private int m_BaseArcWidth = 5; private Color m_ScaleLinesInterColor = Color.Black; //Modified by Gawindx //private Int32 m_ScaleLinesInterInnerRadius = 73; //private Int32 m_ScaleLinesInterOuterRadius = 80; - private Int32 m_ScaleLinesInterInnerRadius = 40; - private Int32 m_ScaleLinesInterOuterRadius = 48; - private Int32 m_ScaleLinesInterWidth = 1; + private int m_ScaleLinesInterInnerRadius = 40; + private int m_ScaleLinesInterOuterRadius = 48; + private int m_ScaleLinesInterWidth = 1; - private Int32 m_ScaleLinesMinorTicks = 9; + private int m_ScaleLinesMinorTicks = 9; private Color m_ScaleLinesMinorColor = Color.Gray; //Modified by Gawindx //private Int32 m_ScaleLinesMinorInnerRadius = 75; //private Int32 m_ScaleLinesMinorOuterRadius = 80 - private Int32 m_ScaleLinesMinorInnerRadius = 42; - private Int32 m_ScaleLinesMinorOuterRadius = 48; - private Int32 m_ScaleLinesMinorWidth = 1; + private int m_ScaleLinesMinorInnerRadius = 42; + private int m_ScaleLinesMinorOuterRadius = 48; + private int m_ScaleLinesMinorWidth = 1; - private Single m_ScaleLinesMajorStepValue = 50.0f; + private float m_ScaleLinesMajorStepValue = 50.0f; private Color m_ScaleLinesMajorColor = Color.Black; //Modified by Gawindx //private Int32 m_ScaleLinesMajorInnerRadius = 70; //private Int32 m_ScaleLinesMajorOuterRadius = 80; - private Int32 m_ScaleLinesMajorInnerRadius = 40; - private Int32 m_ScaleLinesMajorOuterRadius = 48; - private Int32 m_ScaleLinesMajorWidth = 2; + private int m_ScaleLinesMajorInnerRadius = 40; + private int m_ScaleLinesMajorOuterRadius = 48; + private int m_ScaleLinesMajorWidth = 2; //Modified by Gawindx //private Int32 m_ScaleNumbersRadius = 95; - private Int32 m_ScaleNumbersRadius = 60; + private int m_ScaleNumbersRadius = 60; private Color m_ScaleNumbersColor = Color.Black; - private String m_ScaleNumbersFormat; - private Int32 m_ScaleNumbersStartScaleLine; - private Int32 m_ScaleNumbersStepScaleLines = 1; - private Int32 m_ScaleNumbersRotation; + private string m_ScaleNumbersFormat; + private int m_ScaleNumbersStartScaleLine; + private int m_ScaleNumbersStepScaleLines = 1; + private int m_ScaleNumbersRotation; private NeedleType m_NeedleType; //Modified by Gawindx //private Int32 m_NeedleRadius = 80; - private Int32 m_NeedleRadius = 32; + private int m_NeedleRadius = 32; private AGaugeNeedleColor m_NeedleColor1 = AGaugeNeedleColor.Gray; private Color m_NeedleColor2 = Color.DimGray; - private Int32 m_NeedleWidth = 2; + private int m_NeedleWidth = 2; //Added By Gawindx public enum GradientType @@ -160,7 +154,7 @@ private void OnValueChanged() [Description("This event is raised if the value is entering or leaving defined range.")] public event EventHandler ValueInRangeChanged; - private void OnValueInRangeChanged(AGaugeRange range, Single value) + private void OnValueInRangeChanged(AGaugeRange range, float value) { EventHandler e = ValueInRangeChanged; if (e != null) e(this, new ValueInRangeChangedEventArgs(range, value, range.InRange)); @@ -170,10 +164,10 @@ private void OnValueInRangeChanged(AGaugeRange range, Single value) #region Hidden and overridden inherited properties - public new Boolean AllowDrop { get { return false; } set { /*Do Nothing */ } } + public new bool AllowDrop { get { return false; } set { /*Do Nothing */ } } //public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } } - public new Boolean ForeColor { get { return false; } set { /*Do Nothing */ } } - public new Boolean ImeMode { get { return false; } set { /*Do Nothing */ } } + public new bool ForeColor { get { return false; } set { /*Do Nothing */ } } + public new bool ImeMode { get { return false; } set { /*Do Nothing */ } } public override Color BackColor { get { return base.BackColor; } @@ -225,7 +219,7 @@ public AGauge() //Modified By Gawindx //System.ComponentModel.Description("Gauge value.")] Description("Gauge value1.")] - public Single Value1 + public float Value1 { get { return m_value1; } set @@ -268,7 +262,7 @@ public Single Value1 [Browsable(true), Category("AGauge"), Description("Auto size Mode of the gauge.")] - public Boolean GaugeAutoSize + public bool GaugeAutoSize { get { @@ -387,7 +381,7 @@ public UnitValue UnitValue2 [Browsable(true), Category("AGauge"), Description("Second Value To Display.")] - public Single Value2 + public float Value2 { get { return m_value2; } set @@ -421,7 +415,7 @@ public Color BaseArcColor [Browsable(true), Category("AGauge"), Description("The radius of the base arc.")] - public Int32 BaseArcRadius + public int BaseArcRadius { get { return m_BaseArcRadius; } set @@ -438,7 +432,7 @@ public Int32 BaseArcRadius [Browsable(true), Category("AGauge"), Description("The start angle of the base arc.")] - public Int32 BaseArcStart + public int BaseArcStart { get { return m_BaseArcStart; } set @@ -455,7 +449,7 @@ public Int32 BaseArcStart [Browsable(true), Category("AGauge"), Description("The sweep angle of the base arc.")] - public Int32 BaseArcSweep + public int BaseArcSweep { get { return m_BaseArcSweep; } set @@ -472,7 +466,7 @@ public Int32 BaseArcSweep [Browsable(true), Category("AGauge"), Description("The width of the base arc.")] - public Int32 BaseArcWidth + public int BaseArcWidth { get { return m_BaseArcWidth; } set @@ -493,7 +487,7 @@ public Int32 BaseArcWidth [Browsable(true), Category("AGauge"), Description("The minimum value to show on the scale.")] - public Single MinValue + public float MinValue { get { return m_MinValue; } set @@ -512,7 +506,7 @@ public Single MinValue [Browsable(true), Category("AGauge"), Description("The maximum value to show on the scale.")] - public Single MaxValue + public float MaxValue { get { return m_MaxValue; } set @@ -548,7 +542,7 @@ public Color ScaleLinesInterColor [Browsable(true), Category("AGauge"), Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterInnerRadius + public int ScaleLinesInterInnerRadius { get { return m_ScaleLinesInterInnerRadius; } set @@ -565,7 +559,7 @@ public Int32 ScaleLinesInterInnerRadius [Browsable(true), Category("AGauge"), Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterOuterRadius + public int ScaleLinesInterOuterRadius { get { return m_ScaleLinesInterOuterRadius; } set @@ -582,7 +576,7 @@ public Int32 ScaleLinesInterOuterRadius [Browsable(true), Category("AGauge"), Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Int32 ScaleLinesInterWidth + public int ScaleLinesInterWidth { get { return m_ScaleLinesInterWidth; } set @@ -599,7 +593,7 @@ public Int32 ScaleLinesInterWidth [Browsable(true), Category("AGauge"), Description("The number of minor scale lines.")] - public Int32 ScaleLinesMinorTicks + public int ScaleLinesMinorTicks { get { return m_ScaleLinesMinorTicks; } set @@ -633,7 +627,7 @@ public Color ScaleLinesMinorColor [Browsable(true), Category("AGauge"), Description("The inner radius of the minor scale lines.")] - public Int32 ScaleLinesMinorInnerRadius + public int ScaleLinesMinorInnerRadius { get { return m_ScaleLinesMinorInnerRadius; } set @@ -650,7 +644,7 @@ public Int32 ScaleLinesMinorInnerRadius [Browsable(true), Category("AGauge"), Description("The outer radius of the minor scale lines.")] - public Int32 ScaleLinesMinorOuterRadius + public int ScaleLinesMinorOuterRadius { get { return m_ScaleLinesMinorOuterRadius; } set @@ -667,7 +661,7 @@ public Int32 ScaleLinesMinorOuterRadius [Browsable(true), Category("AGauge"), Description("The width of the minor scale lines.")] - public Int32 ScaleLinesMinorWidth + public int ScaleLinesMinorWidth { get { return m_ScaleLinesMinorWidth; } set @@ -684,7 +678,7 @@ public Int32 ScaleLinesMinorWidth [Browsable(true), Category("AGauge"), Description("The step value of the major scale lines.")] - public Single ScaleLinesMajorStepValue + public float ScaleLinesMajorStepValue { get { return m_ScaleLinesMajorStepValue; } set @@ -718,7 +712,7 @@ public Color ScaleLinesMajorColor [Browsable(true), Category("AGauge"), Description("The inner radius of the major scale lines.")] - public Int32 ScaleLinesMajorInnerRadius + public int ScaleLinesMajorInnerRadius { get { return m_ScaleLinesMajorInnerRadius; } set @@ -735,7 +729,7 @@ public Int32 ScaleLinesMajorInnerRadius [Browsable(true), Category("AGauge"), Description("The outer radius of the major scale lines.")] - public Int32 ScaleLinesMajorOuterRadius + public int ScaleLinesMajorOuterRadius { get { return m_ScaleLinesMajorOuterRadius; } set @@ -752,7 +746,7 @@ public Int32 ScaleLinesMajorOuterRadius [Browsable(true), Category("AGauge"), Description("The width of the major scale lines.")] - public Int32 ScaleLinesMajorWidth + public int ScaleLinesMajorWidth { get { return m_ScaleLinesMajorWidth; } set @@ -773,7 +767,7 @@ public Int32 ScaleLinesMajorWidth [Browsable(true), Category("AGauge"), Description("The radius of the scale numbers.")] - public Int32 ScaleNumbersRadius + public int ScaleNumbersRadius { get { return m_ScaleNumbersRadius; } set @@ -807,7 +801,7 @@ public Color ScaleNumbersColor [Browsable(true), Category("AGauge"), Description("The format of the scale numbers.")] - public String ScaleNumbersFormat + public string ScaleNumbersFormat { get { return m_ScaleNumbersFormat; } set @@ -824,7 +818,7 @@ public String ScaleNumbersFormat [Browsable(true), Category("AGauge"), Description("The number of the scale line to start writing numbers next to.")] - public Int32 ScaleNumbersStartScaleLine + public int ScaleNumbersStartScaleLine { get { return m_ScaleNumbersStartScaleLine; } set @@ -841,7 +835,7 @@ public Int32 ScaleNumbersStartScaleLine [Browsable(true), Category("AGauge"), Description("The number of scale line steps for writing numbers.")] - public Int32 ScaleNumbersStepScaleLines + public int ScaleNumbersStepScaleLines { get { return m_ScaleNumbersStepScaleLines; } set @@ -858,7 +852,7 @@ public Int32 ScaleNumbersStepScaleLines [Browsable(true), Category("AGauge"), Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] - public Int32 ScaleNumbersRotation + public int ScaleNumbersRotation { get { return m_ScaleNumbersRotation; } set @@ -896,7 +890,7 @@ public NeedleType NeedleType [Browsable(true), Category("AGauge"), Description("The radius of the needle.")] - public Int32 NeedleRadius + public int NeedleRadius { get { return m_NeedleRadius; } set @@ -947,7 +941,7 @@ public Color NeedleColor2 [Browsable(true), Category("AGauge"), Description("The width of the needle.")] - public Int32 NeedleWidth + public int NeedleWidth { get { return m_NeedleWidth; } set @@ -970,9 +964,9 @@ public Int32 NeedleWidth private void FindFontBounds() { //find upper and lower bounds for numeric characters - Int32 c1; - Int32 c2; - Boolean boundfound; + int c1; + int c2; + bool boundfound; using (SolidBrush backBrush = new SolidBrush(Color.White)) using (SolidBrush foreBrush = new SolidBrush(Color.Black)) { @@ -980,7 +974,7 @@ private void FindFontBounds() using (Graphics gMeasure = Graphics.FromImage(bmpMeasure)) { SizeF boundingBox = gMeasure.MeasureString("0123456789", Font, -1, StringFormat.GenericTypographic); - using (var b = new Bitmap((Int32)(boundingBox.Width), (Int32)(boundingBox.Height))) + using (var b = new Bitmap((int)(boundingBox.Width), (int)(boundingBox.Height))) using (var g = Graphics.FromImage(b)) { g.FillRectangle(backBrush, 0.0F, 0.0F, boundingBox.Width, boundingBox.Height); @@ -1048,7 +1042,7 @@ protected override void OnPaint(PaintEventArgs e) } #region AutoSize - Single centerFactor = 1; + float centerFactor = 1; var center = Center; @@ -1098,8 +1092,8 @@ protected override void OnPaint(PaintEventArgs e) ggr.DrawImage(BackgroundImage, 0, 0, Width, Height); break; case ImageLayout.Tile: - Int32 pixelOffsetX = 0; - Int32 pixelOffsetY = 0; + int pixelOffsetX = 0; + int pixelOffsetY = 0; while (pixelOffsetX < Width) { pixelOffsetY = 0; @@ -1112,7 +1106,7 @@ protected override void OnPaint(PaintEventArgs e) } break; case ImageLayout.Zoom: - if ((Single)(BackgroundImage.Width / Width) < (Single)(BackgroundImage.Height / Height)) + if ((float)(BackgroundImage.Width / Width) < (float)(BackgroundImage.Height / Height)) { ggr.DrawImage(BackgroundImage, 0, 0, Height, Height); } @@ -1130,8 +1124,8 @@ protected override void OnPaint(PaintEventArgs e) #region _GaugeRanges - Single rangeStartAngle; - Single rangeSweepAngle; + float rangeStartAngle; + float rangeSweepAngle; foreach (AGaugeRange ptrRange in _GaugeRanges) { if (ptrRange.EndValue > ptrRange.StartValue) @@ -1199,10 +1193,10 @@ protected override void OnPaint(PaintEventArgs e) } #region ScaleNumbers - String valueText = ""; + string valueText = ""; SizeF boundingBox; - Single countValue = 0; - Int32 counter1 = 0; + float countValue = 0; + int counter1 = 0; var Format = StringFormat.GenericTypographic; Format.Alignment = StringAlignment.Near; @@ -1225,10 +1219,10 @@ protected override void OnPaint(PaintEventArgs e) ggr.SetClip(gp); ggr.DrawLine(pnMajorScaleLines, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0))); + (float)(center.X), + (float)(center.Y), + (float)(center.X + 2 * scaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)), + (float)(center.Y + 2 * scaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0))); gp.Reset(); int scaleLinesMinorOuterRadius = (int)(m_ScaleLinesMinorOuterRadius * centerFactor); @@ -1244,7 +1238,7 @@ protected override void OnPaint(PaintEventArgs e) using (var pnScaleLinesInter = new Pen(m_ScaleLinesInterColor, (int)(m_ScaleLinesInterWidth * centerFactor))) using (var pnScaleLinesMinorColor = new Pen(m_ScaleLinesMinorColor, (int)(m_ScaleLinesMinorWidth * centerFactor))) { - for (Int32 counter2 = 1; counter2 <= m_ScaleLinesMinorTicks; counter2++) + for (int counter2 = 1; counter2 <= m_ScaleLinesMinorTicks; counter2++) { if (((m_ScaleLinesMinorTicks % 2) == 1) && (m_ScaleLinesMinorTicks / 2) + 1 == counter2) { @@ -1258,10 +1252,10 @@ protected override void OnPaint(PaintEventArgs e) ggr.SetClip(gp); ggr.DrawLine(pnScaleLinesInter, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesInterOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesInterOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); + (float)(center.X), + (float)(center.Y), + (float)(center.X + 2 * scaleLinesInterOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), + (float)(center.Y + 2 * scaleLinesInterOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); gp.Reset(); gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); @@ -1273,10 +1267,10 @@ protected override void OnPaint(PaintEventArgs e) else { ggr.DrawLine(pnScaleLinesMinorColor, - (Single)(center.X), - (Single)(center.Y), - (Single)(center.X + 2 * scaleLinesMinorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (Single)(center.Y + 2 * scaleLinesMinorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((Single)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); + (float)(center.X), + (float)(center.Y), + (float)(center.X + 2 * scaleLinesMinorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), + (float)(center.Y + 2 * scaleLinesMinorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); } } } @@ -1290,8 +1284,8 @@ protected override void OnPaint(PaintEventArgs e) ggr.RotateTransform(90.0F + m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)); } - ggr.TranslateTransform((Single)(center.X + (m_ScaleNumbersRadius * centerFactor) * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), - (Single)(center.Y + (m_ScaleNumbersRadius * centerFactor) * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), + ggr.TranslateTransform((float)(center.X + (m_ScaleNumbersRadius * centerFactor) * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), + (float)(center.Y + (m_ScaleNumbersRadius * centerFactor) * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), System.Drawing.Drawing2D.MatrixOrder.Append); @@ -1320,7 +1314,7 @@ protected override void OnPaint(PaintEventArgs e) Format.Alignment = StringAlignment.Center; foreach (AGaugeLabel ptrGaugeLabel in _GaugeLabels) { - if (!String.IsNullOrEmpty(ptrGaugeLabel.Text)) + if (!string.IsNullOrEmpty(ptrGaugeLabel.Text)) { using (var brGaugeLabel = new SolidBrush(ptrGaugeLabel.Color)) { @@ -1340,9 +1334,9 @@ protected override void OnPaint(PaintEventArgs e) e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; #region Needle - Single brushAngle = (Int32)(m_BaseArcStart + (m_value1 - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue)) % 360; + float brushAngle = (int)(m_BaseArcStart + (m_value1 - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue)) % 360; if (brushAngle < 0) brushAngle += 360; - Double needleAngle = brushAngle * Math.PI / 180; + double needleAngle = brushAngle * Math.PI / 180; int needleWidth = (int)(m_NeedleWidth * centerFactor); int needleRadius = (int)(m_NeedleRadius * centerFactor); @@ -1351,8 +1345,8 @@ protected override void OnPaint(PaintEventArgs e) case NeedleType.Advance: PointF[] points = new PointF[3]; - Int32 subcol = (Int32)(((brushAngle + 225) % 180) * 100 / 180); - Int32 subcol2 = (Int32)(((brushAngle + 135) % 180) * 100 / 180); + int subcol = (int)(((brushAngle + 225) % 180) * 100 / 180); + int subcol2 = (int)(((brushAngle + 135) % 180) * 100 / 180); using (var brNeedle = new SolidBrush(m_NeedleColor2)) { @@ -1417,14 +1411,14 @@ protected override void OnPaint(PaintEventArgs e) break; } - if (Math.Floor((Single)(((brushAngle + 225) % 360) / 180.0)) == 0) + if (Math.Floor((float)(((brushAngle + 225) % 360) / 180.0)) == 0) { Color clrTemp = clr1; clr1 = clr2; clr2 = clrTemp; } - if (Math.Floor((Single)(((brushAngle + 135) % 360) / 180.0)) == 0) + if (Math.Floor((float)(((brushAngle + 135) % 360) / 180.0)) == 0) { clr4 = clr3; } @@ -1434,30 +1428,30 @@ protected override void OnPaint(PaintEventArgs e) using (Brush brush3 = new SolidBrush(clr3)) using (Brush brush4 = new SolidBrush(clr4)) { - points[0].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[1].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); + points[0].X = (float)(center.X + needleRadius * Math.Cos(needleAngle)); + points[0].Y = (float)(center.Y + needleRadius * Math.Sin(needleAngle)); + points[1].X = (float)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); + points[1].Y = (float)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); + points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); + points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); e.Graphics.FillPolygon(brush1, points); - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); + points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); + points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); e.Graphics.FillPolygon(brush2, points); - points[0].X = (Single)(center.X - (needleRadius / 20 - 1) * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y - (needleRadius / 20 - 1) * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[1].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); - points[2].X = (Single)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (Single)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); + points[0].X = (float)(center.X - (needleRadius / 20 - 1) * Math.Cos(needleAngle)); + points[0].Y = (float)(center.Y - (needleRadius / 20 - 1) * Math.Sin(needleAngle)); + points[1].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); + points[1].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); + points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); + points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); e.Graphics.FillPolygon(brush4, points); - points[0].X = (Single)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[0].Y = (Single)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[1].X = (Single)(center.X + needleRadius * Math.Cos(needleAngle)); - points[1].Y = (Single)(center.Y + needleRadius * Math.Sin(needleAngle)); + points[0].X = (float)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); + points[0].Y = (float)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); + points[1].X = (float)(center.X + needleRadius * Math.Cos(needleAngle)); + points[1].Y = (float)(center.Y + needleRadius * Math.Sin(needleAngle)); using (var pnNeedle = new Pen(m_NeedleColor2)) { @@ -1467,10 +1461,10 @@ protected override void OnPaint(PaintEventArgs e) } break; case NeedleType.Simple: - Point startPoint = new Point((Int32)(center.X - needleRadius / 8 * Math.Cos(needleAngle)), - (Int32)(center.Y - needleRadius / 8 * Math.Sin(needleAngle))); - Point endPoint = new Point((Int32)(center.X + needleRadius * Math.Cos(needleAngle)), - (Int32)(center.Y + needleRadius * Math.Sin(needleAngle))); + Point startPoint = new Point((int)(center.X - needleRadius / 8 * Math.Cos(needleAngle)), + (int)(center.Y - needleRadius / 8 * Math.Sin(needleAngle))); + Point endPoint = new Point((int)(center.X + needleRadius * Math.Cos(needleAngle)), + (int)(center.Y + needleRadius * Math.Sin(needleAngle))); using (var brDisk = new SolidBrush(m_NeedleColor2)) { @@ -1491,12 +1485,12 @@ protected override void OnPaint(PaintEventArgs e) Font PenFontV1 = new Font("Microsoft Sans Serif", 8, FontStyle.Bold); Font PenFontV2 = new Font("Microsoft Sans Serif", 7, FontStyle.Bold); SolidBrush StringPen = new SolidBrush(Color.Black); - Int32 LineHeight = 15; + int LineHeight = 15; PointF StrPos = Center; StrPos.Y = StrPos.Y + 5; if (UnitValue1 != UnitValue.None) { - String StringToDraw = ""; + string StringToDraw = ""; switch (UnitValue1) { case UnitValue.Hertz: @@ -1518,7 +1512,7 @@ protected override void OnPaint(PaintEventArgs e) } if (UnitValue2 != UnitValue.None) { - String StringToDraw = ""; + string StringToDraw = ""; switch (UnitValue2) { case UnitValue.Hertz: @@ -1611,12 +1605,12 @@ public class ValueInRangeChangedEventArgs : EventArgs /// /// Gauge Value /// - public Single Value { get; private set; } + public float Value { get; private set; } /// /// True if value is within current range. /// public bool InRange { get; private set; } - public ValueInRangeChangedEventArgs(AGaugeRange range, Single value, bool inRange) + public ValueInRangeChangedEventArgs(AGaugeRange range, float value, bool inRange) { this.Range = range; this.Value = value; diff --git a/WinNUT_V2/AGauge_mod/AGauge.csproj b/WinNUT_V2/AGauge_mod/AGauge.csproj index 12ba4bb..95f5370 100644 --- a/WinNUT_V2/AGauge_mod/AGauge.csproj +++ b/WinNUT_V2/AGauge_mod/AGauge.csproj @@ -52,6 +52,7 @@ AGauge.cs + From c886b03486d9aa96bb850d41218e5befab317d8d Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 12 Nov 2022 12:48:17 -0800 Subject: [PATCH 07/21] Compare correct voltage values May have prevented an update of the battery voltage gauge. --- WinNUT_V2/WinNUT-Client/WinNUT.vb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.vb b/WinNUT_V2/WinNUT-Client/WinNUT.vb index c3b61de..565888e 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.vb @@ -897,11 +897,11 @@ Public Class WinNUT End If End With With AG_BattV - If (.MaxValue <> Arr_Reg_Key.Item("MinBattVoltage")) Or (.MinValue <> Arr_Reg_Key.Item("MinBattVoltage")) Then + If (.MaxValue <> Arr_Reg_Key.Item("MaxBattVoltage")) Or (.MinValue <> Arr_Reg_Key.Item("MinBattVoltage")) Then LogFile.LogTracing("Parameter Dial Voltage Battery Need to be Updated", LogLvl.LOG_DEBUG, Me) .MaxValue = Arr_Reg_Key.Item("MaxBattVoltage") .MinValue = Arr_Reg_Key.Item("MinBattVoltage") - .ScaleLinesMajorStepValue = CInt((.MaxValue - .MinValue) / 5) + ' .ScaleLinesMajorStepValue = CInt((.MaxValue - .MinValue) / 5) LogFile.LogTracing("Parameter Dial Voltage Battery Updated", LogLvl.LOG_DEBUG, Me) End If End With From c48e25ebd1188227b6770c8a98dc423c21bf6dc4 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 28 Nov 2022 13:08:29 -0800 Subject: [PATCH 08/21] Adding AGauge test form Adds a form specifically for testing an AGauge control to reproduce the drawing bug. --- .../WinNUT-Client/AGaugeTest.Designer.vb | 155 ++++++++++++++++++ WinNUT_V2/WinNUT-Client/AGaugeTest.resx | 120 ++++++++++++++ WinNUT_V2/WinNUT-Client/AGaugeTest.vb | 15 ++ .../WinNUT-Client.zh-TW.xlf | 8 + .../WinNUT-client.de-DE.xlf | 8 + .../WinNUT-client.fr-FR.xlf | 8 + .../WinNUT-client.ru-RU.xlf | 8 + .../WinNUT-client.zh-CN.xlf | 8 + WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 9 + WinNUT_V2/WinNUT-Client/WinNUT.vb | 7 + 10 files changed, 346 insertions(+) create mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb create mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.resx create mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.vb diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb new file mode 100644 index 0000000..8311a65 --- /dev/null +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb @@ -0,0 +1,155 @@ +' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +' +' This program is free software: you can redistribute it and/or modify it under the terms of the +' GNU General Public License as published by the Free Software Foundation, either version 3 of the +' License, or any later version. +' +' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + + _ +Partial Class AGaugeTest + Inherits System.Windows.Forms.Form + + 'Form overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Windows Form Designer + Private components As System.ComponentModel.IContainer + + 'NOTE: The following procedure is required by the Windows Form Designer + 'It can be modified using the Windows Form Designer. + 'Do not modify it using the code editor. + _ + Private Sub InitializeComponent() + Me.Label1 = New System.Windows.Forms.Label() + Me.txt_minValue = New System.Windows.Forms.TextBox() + Me.txt_maxValue = New System.Windows.Forms.TextBox() + Me.Label2 = New System.Windows.Forms.Label() + Me.AGauge1 = New System.Windows.Forms.AGauge() + Me.btn_update = New System.Windows.Forms.Button() + Me.SuspendLayout() + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Location = New System.Drawing.Point(13, 150) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(51, 13) + Me.Label1.TabIndex = 1 + Me.Label1.Text = "MinValue" + ' + 'txt_minValue + ' + Me.txt_minValue.Location = New System.Drawing.Point(99, 150) + Me.txt_minValue.Name = "txt_minValue" + Me.txt_minValue.Size = New System.Drawing.Size(62, 20) + Me.txt_minValue.TabIndex = 2 + ' + 'txt_maxValue + ' + Me.txt_maxValue.Location = New System.Drawing.Point(99, 176) + Me.txt_maxValue.Name = "txt_maxValue" + Me.txt_maxValue.Size = New System.Drawing.Size(62, 20) + Me.txt_maxValue.TabIndex = 4 + ' + 'Label2 + ' + Me.Label2.AutoSize = True + Me.Label2.Location = New System.Drawing.Point(13, 176) + Me.Label2.Name = "Label2" + Me.Label2.Size = New System.Drawing.Size(54, 13) + Me.Label2.TabIndex = 3 + Me.Label2.Text = "MaxValue" + ' + 'AGauge1 + ' + Me.AGauge1.BaseArcColor = System.Drawing.Color.Gray + Me.AGauge1.BaseArcRadius = 45 + Me.AGauge1.BaseArcStart = 135 + Me.AGauge1.BaseArcSweep = 270 + Me.AGauge1.BaseArcWidth = 5 + Me.AGauge1.Center = New System.Drawing.Point(74, 70) + Me.AGauge1.GaugeAutoSize = False + Me.AGauge1.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen + Me.AGauge1.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp + Me.AGauge1.Location = New System.Drawing.Point(13, 13) + Me.AGauge1.MaxValue = 100.0! + Me.AGauge1.MinValue = 0! + Me.AGauge1.Name = "AGauge1" + Me.AGauge1.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AGauge1.NeedleColor2 = System.Drawing.Color.DimGray + Me.AGauge1.NeedleRadius = 32 + Me.AGauge1.NeedleType = System.Windows.Forms.NeedleType.Advance + Me.AGauge1.NeedleWidth = 2 + Me.AGauge1.ScaleLinesInterColor = System.Drawing.Color.Black + Me.AGauge1.ScaleLinesInterInnerRadius = 40 + Me.AGauge1.ScaleLinesInterOuterRadius = 48 + Me.AGauge1.ScaleLinesInterWidth = 1 + Me.AGauge1.ScaleLinesMajorColor = System.Drawing.Color.Black + Me.AGauge1.ScaleLinesMajorInnerRadius = 40 + Me.AGauge1.ScaleLinesMajorOuterRadius = 48 + Me.AGauge1.ScaleLinesMajorStepValue = 50.0! + Me.AGauge1.ScaleLinesMajorWidth = 2 + Me.AGauge1.ScaleLinesMinorColor = System.Drawing.Color.Gray + Me.AGauge1.ScaleLinesMinorInnerRadius = 42 + Me.AGauge1.ScaleLinesMinorOuterRadius = 48 + Me.AGauge1.ScaleLinesMinorTicks = 9 + Me.AGauge1.ScaleLinesMinorWidth = 1 + Me.AGauge1.ScaleNumbersColor = System.Drawing.Color.Black + Me.AGauge1.ScaleNumbersFormat = Nothing + Me.AGauge1.ScaleNumbersRadius = 60 + Me.AGauge1.ScaleNumbersRotation = 0 + Me.AGauge1.ScaleNumbersStartScaleLine = 0 + Me.AGauge1.ScaleNumbersStepScaleLines = 1 + Me.AGauge1.Size = New System.Drawing.Size(148, 130) + Me.AGauge1.TabIndex = 0 + Me.AGauge1.Text = "AGauge1" + Me.AGauge1.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Volts + Me.AGauge1.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AGauge1.Value1 = 0! + Me.AGauge1.Value2 = 0! + ' + 'btn_update + ' + Me.btn_update.Location = New System.Drawing.Point(52, 246) + Me.btn_update.Name = "btn_update" + Me.btn_update.Size = New System.Drawing.Size(75, 23) + Me.btn_update.TabIndex = 5 + Me.btn_update.Text = "Update" + Me.btn_update.UseVisualStyleBackColor = True + ' + 'AGaugeTest + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(180, 281) + Me.Controls.Add(Me.btn_update) + Me.Controls.Add(Me.txt_maxValue) + Me.Controls.Add(Me.Label2) + Me.Controls.Add(Me.txt_minValue) + Me.Controls.Add(Me.Label1) + Me.Controls.Add(Me.AGauge1) + Me.Name = "AGaugeTest" + Me.Text = "AGaugeTest" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + + Friend WithEvents AGauge1 As AGauge + Friend WithEvents Label1 As Label + Friend WithEvents txt_minValue As TextBox + Friend WithEvents txt_maxValue As TextBox + Friend WithEvents Label2 As Label + Friend WithEvents btn_update As Button +End Class diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.resx b/WinNUT_V2/WinNUT-Client/AGaugeTest.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb new file mode 100644 index 0000000..b4ce490 --- /dev/null +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb @@ -0,0 +1,15 @@ +' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +' +' This program is free software: you can redistribute it and/or modify it under the terms of the +' GNU General Public License as published by the Free Software Foundation, either version 3 of the +' License, or any later version. +' +' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + +Public Class AGaugeTest + Private Sub btn_update_Click(sender As Object, e As EventArgs) Handles btn_update.Click + AGauge1.MinValue = txt_minValue.Text + AGauge1.MaxValue = txt_maxValue.Text + End Sub +End Class diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf index 3d17497..1572c31 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf @@ -58582,4 +58582,12 @@ Accepted value: Numeric value from 0 to 100. + +
+ +
+ + + +
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf index 6b8613d..3dd563c 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf @@ -58582,4 +58582,12 @@ Remaining Time : {WinNUT.Lbl_VRTime.Text} + +
+ +
+ + + +
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf index fe901ce..5d0db96 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf @@ -58610,4 +58610,12 @@ Temps restant: {WinNUT.Lbl_VRTime.Text} + +
+ +
+ + + +
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf index 57eb44c..4f92b7d 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf @@ -58607,4 +58607,12 @@ Accepted value: Numeric value from 0 to 100. + +
+ +
+ + + +
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf index 0703469..fc059ad 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf @@ -58606,4 +58606,12 @@ Accepted value: Numeric value from 0 to 100. + +
+ +
+ + + +
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 11d6b09..d7b8eed 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -132,6 +132,12 @@ Form + + AGaugeTest.vb + + + Form + True @@ -204,6 +210,9 @@ About_Gui.vb + + AGaugeTest.vb + List_Var_Gui.vb diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.vb b/WinNUT_V2/WinNUT-Client/WinNUT.vb index 565888e..3e8869f 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.vb @@ -273,6 +273,13 @@ Public Class WinNUT HasFocus = False End If +#If DEBUG Then + ' Insert AGauge testing dialog menu item + Dim agDbgFormOpen = New ToolStripMenuItem("AGauge Test Form") + AddHandler agDbgFormOpen.Click, Function() AGaugeTest.ShowDialog() + Menu_File.DropDownItems.Add(agDbgFormOpen) +#End If + LogFile.LogTracing(String.Format("{0} v{1} completed initialization.", My.Application.Info.ProductName, My.Application.Info.Version), LogLvl.LOG_NOTICE, Me) End Sub From 78127e7e3614da359b0c23ffaca02f8215b60095 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 3 Dec 2022 14:51:04 -0800 Subject: [PATCH 09/21] Remove AGauge-mod project references Also upgrading to VS version 17 (2022.) --- WinNUT_V2/WinNUT_V2.sln | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/WinNUT_V2/WinNUT_V2.sln b/WinNUT_V2/WinNUT_V2.sln index 8baeb92..0b2a7ad 100644 --- a/WinNUT_V2/WinNUT_V2.sln +++ b/WinNUT_V2/WinNUT_V2.sln @@ -1,14 +1,12 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30204.135 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33110.190 MinimumVisualStudioVersion = 10.0.40219.1 Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WinNUT-Client", "WinNUT-Client\WinNUT-Client.vbproj", "{194AB29D-1F80-497B-86BE-4F35DACBA6BC}" EndProject Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "WinNUT-Setup", "Setup\Setup.vdproj", "{FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AGauge", "AGauge_mod\AGauge.csproj", "{CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}" -EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5DD84426-132B-4C1F-9618-93535F5E8261}" ProjectSection(SolutionItems) = preProject WInNUT_GUI\.editorconfig = WInNUT_GUI\.editorconfig @@ -64,26 +62,6 @@ Global {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x64.Build.0 = Release {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x86.ActiveCfg = Release {FAFFBA8B-E9DB-419E-9669-999E8EFEFCB5}.Release|x86.Build.0 = Release - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|ARM.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|ARM.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|ARM64.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|ARM64.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|x64.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|x64.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|x86.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|x86.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|Any CPU.Build.0 = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|ARM.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|ARM.Build.0 = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|ARM64.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|ARM64.Build.0 = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|x64.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|x64.Build.0 = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|x86.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|x86.Build.0 = Release|Any CPU {9074CE60-DB9A-4BDF-B851-6EAB8A81F366}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {9074CE60-DB9A-4BDF-B851-6EAB8A81F366}.Debug|Any CPU.Build.0 = Debug|Any CPU {9074CE60-DB9A-4BDF-B851-6EAB8A81F366}.Debug|ARM.ActiveCfg = Debug|Any CPU From e8d3da1e1b70c02e579f73028ed15160a70224df Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sat, 3 Dec 2022 14:54:31 -0800 Subject: [PATCH 10/21] Beginning implementation of UPSVarGauge UPSVarGauge is a custom Forms control that inherits and overrides the AGauge control class. AGauge will be added as a NuGet reference to the latest version (or fork.) --- .../WinNUT-Client/UPSVarGauge.Designer.vb | 38 +++++ WinNUT_V2/WinNUT-Client/UPSVarGauge.vb | 130 ++++++++++++++++++ 2 files changed, 168 insertions(+) create mode 100644 WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb create mode 100644 WinNUT_V2/WinNUT-Client/UPSVarGauge.vb diff --git a/WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb b/WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb new file mode 100644 index 0000000..83b6540 --- /dev/null +++ b/WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb @@ -0,0 +1,38 @@ +' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +' +' This program is free software: you can redistribute it and/or modify it under the terms of the +' GNU General Public License as published by the Free Software Foundation, either version 3 of the +' License, or any later version. +' +' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + + _ +Partial Class UPSVarGauge + Inherits System.Windows.Forms.Control + + 'Control overrides dispose to clean up the component list. + _ + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub + + 'Required by the Control Designer + Private components As System.ComponentModel.IContainer + + ' NOTE: The following procedure is required by the Component Designer + ' It can be modified using the Component Designer. Do not modify it + ' using the code editor. + _ + Private Sub InitializeComponent() + components = New System.ComponentModel.Container() + End Sub + +End Class + diff --git a/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb new file mode 100644 index 0000000..ce62e73 --- /dev/null +++ b/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb @@ -0,0 +1,130 @@ +' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. +' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) +' +' This program is free software: you can redistribute it and/or modify it under the terms of the +' GNU General Public License as published by the Free Software Foundation, either version 3 of the +' License, or any later version. +' +' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY + +Imports System.ComponentModel + + +Namespace System.Windows.Forms + + Public Class UPSVarGauge + Inherits AGauge + +#Region "Private Fields" + + Private m_value1 As Single + Private m_value2 As Single + + Private m_Center = New Point(74, 70) + Private m_MinValue As Single = 0 + Private m_MaxValue As Single = 100 + + Private m_BaseArcRadius = 45 + Private m_BaseArcStart = 135 + Private m_BaseArcSweep = 270 + Private m_BaseArcWidth = 5 + + Private m_ScaleLinesInterInnerRadius = 40 + Private m_ScaleLinesInterOuterRadius = 48 + Private m_ScaleLinesInterWidth = 1 + + Private m_ScaleLinesMinorTicks = 9 + Private m_ScaleLinesMinorInnerRadius = 42 + Private m_ScaleLinesMinorOuterRadius = 48 + Private m_ScaleLinesMinorWidth = 1 + + Private m_ScaleLinesMajorStepValue = 50.0F + Private m_ScaleLinesMajorInnerRadius = 40 + Private m_ScaleLinesMajorOuterRadius = 48 + Private m_ScaleLinesMajorWidth = 2 + + Private m_ScaleNumbersRadius = 60 + Private m_ScaleNumbersFormat As String + Private m_ScaleNumbersStartScaleLine As Integer + Private m_ScaleNumbersStepScaleLines = 1 + Private m_ScaleNumbersRotation As Integer + + Private m_NeedleType As NeedleType + Private m_NeedleRadius = 32 + Private m_NeedleColor1 = AGaugeNeedleColor.Gray + Private m_NeedleColor2 = Color.DimGray + Private m_NeedleWidth = 2 + + Private m_gradientType = GradientType.RedGreen + Private m_gradientOrientation = GradientOrientation.BottomToUp + Private m_unitvalue1 = UnitValue.Volts + Private m_unitvalue2 = UnitValue.None + +#End Region + +#Region "Properties" + + ' Hide the old Value property + Private Overloads Property Value As Single + Get + Return Nothing + End Get + Set(value As Single) + + End Set + End Property + + + Public Property Value1 As Single + Get + Return m_value1 + End Get + Set(value As Single) + value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue) + If m_value1 <> value Then + + End If + End Set + + End Property + + +#End Region + + Public Enum GradientType + None + RedGreen + End Enum + + Public Enum GradientOrientation + UpToBottom + BottomToUp + RightToLeft + LeftToRight + End Enum + + Public Enum UnitValue + None + Hertz + Percent + Volts + Watts + End Enum + + Public Sub New() + MyBase.New() + + Size = New Size(148, 130) + End Sub + + 'Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs) + ' MyBase.OnPaint(e) + + ' 'Add your custom paint code here + 'End Sub + + End Class + +End Namespace From 70060354765395a02b6a147b6f81ea17e0da5b41 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 4 Dec 2022 12:23:37 -0800 Subject: [PATCH 11/21] Moving UPSVarGauge class to local namespace Leaving it in the global Ssytem.Windows.Forms namespace was causing VS to remove type information from Forms objects in the solution view. This class probably didn't belong in a system namespace anyways. --- WinNUT_V2/WinNUT-Client/UPSVarGauge.vb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb index ce62e73..f2d8c71 100644 --- a/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb +++ b/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb @@ -9,9 +9,7 @@ Imports System.ComponentModel - -Namespace System.Windows.Forms - +Namespace Controls Public Class UPSVarGauge Inherits AGauge @@ -126,5 +124,4 @@ Namespace System.Windows.Forms 'End Sub End Class - End Namespace From 4922a5ec36a39a877f387f5f72367dbfa0c1eee5 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 4 Dec 2022 12:30:31 -0800 Subject: [PATCH 12/21] Relocate controls to subdir Relocating CProgressBar and UPSVarGauge to a Controls subdirectory. Also removing non-existent .editorconfig from project. --- .../WinNUT-Client/{ => Controls}/CProgressBar.vb | 0 .../{ => Controls}/UPSVarGauge.Designer.vb | 0 .../WinNUT-Client/{ => Controls}/UPSVarGauge.vb | 0 WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 13 +++++++++---- 4 files changed, 9 insertions(+), 4 deletions(-) rename WinNUT_V2/WinNUT-Client/{ => Controls}/CProgressBar.vb (100%) rename WinNUT_V2/WinNUT-Client/{ => Controls}/UPSVarGauge.Designer.vb (100%) rename WinNUT_V2/WinNUT-Client/{ => Controls}/UPSVarGauge.vb (100%) diff --git a/WinNUT_V2/WinNUT-Client/CProgressBar.vb b/WinNUT_V2/WinNUT-Client/Controls/CProgressBar.vb similarity index 100% rename from WinNUT_V2/WinNUT-Client/CProgressBar.vb rename to WinNUT_V2/WinNUT-Client/Controls/CProgressBar.vb diff --git a/WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb similarity index 100% rename from WinNUT_V2/WinNUT-Client/UPSVarGauge.Designer.vb rename to WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb diff --git a/WinNUT_V2/WinNUT-Client/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb similarity index 100% rename from WinNUT_V2/WinNUT-Client/UPSVarGauge.vb rename to WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index d7b8eed..4ff73d2 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -139,14 +139,20 @@ Form + + Component + + + UPSVarGauge.vb + + + Component + True True Resources.resx - - Component - Update_Gui.vb @@ -317,7 +323,6 @@ - MyApplicationCodeGenerator From ba527497b2c79e044d3bdf5976acfc43d9fae25e Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 4 Dec 2022 12:59:13 -0800 Subject: [PATCH 13/21] Updating AGauge NuGet reference --- WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 4ff73d2..256965e 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -399,16 +399,15 @@ - - {cbdb1d25-5a95-43d4-a958-bf6ae65c6c3f} - AGauge - {9074ce60-db9a-4bdf-b851-6eab8a81f366} WinNUT-Client_Common + + 2.0.2 + 7.1.2 From 94ace7ccc029cce0d13c313266e8d4b35879bada Mon Sep 17 00:00:00 2001 From: gbakeman Date: Sun, 4 Dec 2022 13:24:14 -0800 Subject: [PATCH 14/21] Replacing AGauge with binary from upstream Removing the NuGet package of AGauge and replacing the reference with a compiled binary from the nutdotnet/AGauge project with fixes merged in from @PaulMartinsen --- WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 8 +++++--- WinNUT_V2/WinNUT-Client/lib/AGauge.dll | Bin 0 -> 40960 bytes 2 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 WinNUT_V2/WinNUT-Client/lib/AGauge.dll diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 256965e..6c20531 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -96,6 +96,10 @@ My Project\app.manifest + + False + lib\AGauge.dll + @@ -405,9 +409,6 @@ - - 2.0.2 - 7.1.2 @@ -415,6 +416,7 @@ 13.0.1 + diff --git a/WinNUT_V2/WinNUT-Client/lib/AGauge.dll b/WinNUT_V2/WinNUT-Client/lib/AGauge.dll new file mode 100644 index 0000000000000000000000000000000000000000..16904e551019b2d80cb4602a1078954006f3b26f GIT binary patch literal 40960 zcmeIb3w%_^l_z}e?RQIR>8kYv85#q23kmTw28;nA@sQ2SNMH$Ya3eL)rqwNXOFS$q z7LH%U@e;>QVkg8gwiAae$t1Cp*jbaojx%G%PJZzw-Y?l?GdPn;%x5Pv-b|j8f$x7# z)$NyBKz26S-#5Q)=yU7*tLoILQ>UKy-qyOUA0!76Iq^Mzp6EGT`LkT;g~=$Q1CzfN zpl5yGn(~~n_FGfB_QcYmfmCvLD$*b7jU*Du!O+fVC^eJ_#S)?R4V|I>WM8zUtjs@6 zi{7}BXszL(Z*94|*Dmc0T^=eiW)nRE#I4XPzJhBA-&6P!RY=%WdNZJtA!HB%=Z}MK zzMGTs|Lj$>4B_*=FB5Ixz$v01u^|dSXNXFH9etLlp)l@3e2B=K6YmATCWmhsj2;*S z-~15}#7SMX-r(dDBD%RHl}@o?M7L82a6^3z-<;2KG*?S18c!l2>q=+vWm%8moAX&t zv?7ON{DUopY3Untg7wDmexD2?f~l(ZtXT zX2{hGnoNXVj6yGn8mm`fKGExf`CN1b^g?s7UaCN)SGC)8I33A{;k4nFIq6I07GYnspYNgF6E)VX7(vBsu}~I?R*gU>NsO|%;F-ei7@5mgrNBH6 zz84Yxk@*~~9l1(f7VxEJgKO7bbiM<14&Cfi{3$TaJ>;0YK9%6 zZ5Z|UmwKB$y7iHVl}*AP{<4K1LVk8$NYwtkFUKtC;yM}T7bF`h4vk&DaYVWgNm z#`EPda&dV)9u-%gBNKyTenyjm*eM~vs&LDp4yqfIeC=T%oRd5q`FW8~uc@$#*h zJjV0oF>-NvybLTRkMVqYj9fsTZVz5d7L&(#etXEObA0<@iNf67zz;I*j$SKe>{lJe8jCDgLbhNlVMhfPOTFs*B}QHc~qmdJr^sn%qr6*vV!B67_b6dVvnC{+*v)!t@4>q(2vV3ANEW>y=MZOyM^Lt zH=^CyXct(QW;xmk-f2gd_?kVos2Q!;_Q8m>3*W2Iq94b%j7^IV<2T{E4%lZ4a7;6F z1lZRKaBhpIft@bE>wv!q><0ySDexZwdkfzZg!!|g=)TTDXn3lUewkd47MVWNc|}!I z`FAk$8)2M7`jZ<$2ATD{)o~F<%Bbn&c(~OWme7*@*z@dC^61k3UiFpSFYz}zux*70f|J+hDyhTFioJ~fpY_;9Aa0}AGZllZmW*9+tiJ9cR zE^n_FeT)q_(mkz8sBDyyE$!1Wl6XPf%w*-w`lUMW0G%E$$b_) zE4&@dUVo)gP(a-BZjI$&EG2IFw#LF(x1bje^9&S3k65&cy#}W;G9|G%9Ip&J5sQ`x zawovHN%$mO3OTDrI1<|?v5m5eBl#Z0rFVcxtjeIqjX?Tlz`=4dlc=8>rGm9&1*}># z908Kt2}11cwea>@?d>KX?D|=UI;(EcK6n`fz(xGQ2CE@B(VDmt3KNDex(#0r!;19x z_%2+7#8yBFP+Hb)Q=AMIb=!KB))|zC382Y7R%D?sCwone2LA#+sn@;1auoIIWqWR5|AiUS?f3^EInJN73$JJpm9q zBf%tV(#%gaC2|s|sBL?5geq~{_9FdcYjSfaqXa9>F080hnwlo%#j~?3nRYx^x-N+^ z27@~SyEy=NXoCmH=~Xbau#e3Z$~nK9Le>;Hs>0nPs+y~F$Os>WXsYAIdtSgY}3Y`ibs=8EyWthVauxkzMf2DP0 z^MK~XJYjXhWe!hf%fn!M(@A6r;)pO{HQIWHGxZLm-eJ@`tmQ<%S43usT&&=0hhB?e@d1bgJTDZys0m@aZs_x+I z%GqieA5O8xl~y2`W@%8oa_p)mXgh~F%o`%9d~>#Cn=>_RMh%-$!)8^(onqtC}lDcP-x*9zy=D-L}MkkEDG{QgXkpymTvbn7905xt46@TQZezLFHRe`Icgp zH;1v#RGDXGGtbIoo`uY_ka_8Tl3ZN`c>9di%Lw$&pHr1S=D4gwk8WQ zHCcd~EI>^b6sw6jJjKp@bvE*lLZ)-5sp5s?lWCg5-{(d@C`y#9FfW6TeeU*Mzoe z$~N5$uroB9oo4fw70_(c1Rs=9tyE9uWG``(OyL01s z1*qaA)Sa;te6$r6ZMA)r^^%p=cE0;rV=XPV(qcz1N3Qa$wE|!Rwh*-=Qu`o#6QQsP zYB{YKy`;{pr`*!!UT*VomH@HP9t=e{?Jf1PI}m2V71oMoFLTefb(eaJ4%=ns@N&qM zIUGK9tsQom!%GkjuCvw!*IH|v%bUnrTYF6>`qaXM*wxoRfFn&K*v8T$ZR~*a+in7V zWyMwrZ;J)nInGl&ZlyWQr(tR(x1Lm$t@XNjENA`J%mm0`%h|A%zsWn$RI&nI50kFf zCJmzo{@^NgS*)TP55Udq+jXl)E`ur{oO{bWb@DO~5lT6}(S1l{SMOg#65Z!{Uf~sJe#_p@554|4y#{ z!e2q*(1WM}RJ7Wyc3Zh$3)C~Y4;l*5YN@mlCRDCE?t`_w6WT= z`eEh0c1zuT z>DqLNHnuMIHCHFwLiRPImTe^anyZ{`D*KwR-#wSE-*LFVt<@Nt*(wz?o2}Itn_Il^DZ=WX@i-a!r&SYM*VpDLxfNVD85*Z*M$&A55wMV3;6pux@A$khLnf$yyy; zWo-(smfUJEzG&`FtFsxm1J(pPAVLk%UDj$9*lev)fh|^t3fxFmTg?%k4eX_s<%;|4 zt!MZ!RLf1lQ*2yP=p|72{VGLmfsDyj+iWpCdu=h9L|TkWB$ALwOR6i7G%+j4a@K8) z`}AJ<_shBq)y!no@+GShKPGFQ{(1)Mvf7gOtNLU_$tK=%jju(||GE}E;bK~B&T3KE zGB8+e&se)=l4b2G$qFo+G5V+4lRfzo)|)+0xksyv=fZeV8Q#ge45vO-+G-26_ZV9D%Il>F zT)0h=4}gr9@;a6Bx}213>a8ext1h|;ceq-AibqQ^&ToU^s&Gx>T81ls7{4CNR~(bl zdvVRhr(vPCA89`hyoM9w!|8to9_xOZ?aEL822NLRMxLv%+|QMB68OEq+Y9i!kUx&N ze=f~WzaRL0z|R-pAA-;=DEBQ~bLDRZ^Phpca6>#-PrhgQI%G@&o|}FZ@Sg*pS%9xE zC&HeeMsdwe|A9Ip>R<7N+a1K*3QttUUDaVId;-y%G{?{~}Ag`3NdZzaA+&9@lkmM4o{jBnHO@P9&z z(x&UfN95WT{-9j131hzid|voNa%~DfB-g3ohvhmkyj-rq)FK?shd&I4v?%hf7n z2-=75sk)`*S?(pI-;qtPo|#5&e&%TnBuX7_%c%o{X1JfT*j33q3#aRjW2CY97#uGj z{F=+Vu2?<>$IItY`K~XPkHLa`iA*)#yB4t{Dv4?iu`Q1$+O`}gspR>5vBI6^fPTS$d2I!CBgP%XZ z4OG7)`3cZLIJ+qokUH|J2ks~&Anlf}c zj3jQp`N?je3i~7rQkhUQ)rCZYc(1#xiF`AZucMFV>+m?T!U3|CgyUzk%DA!#c`#I4 zXw@9OoLRllUCPknWAt(+kL5{Mojymp(uwU7$hF-QS-VU`Kf+3Y`=|wDN_~@0O8n*S z>{%q9D-v}a;inJ>12{cpKb{6NEd)FBzx}w{txg1;d5`B*DZ{9DAp+F0gdZVMI$eWn zgVJe)E$vio>CRRfl_}@ZHCtu=i14|%nc=?UKf?Zg79gBa~9Df}sz zH~eWP+U{mk)tI=lrX~F7m&Xi0jg&b4L@Uhvf;{o1AikY|=iO$0l#1kq>+a&0m|z5X z_XtBQd`-GN&G`CwF_<+l2%v{JN49YW*T{BURGaWT$)7(huNiQL;m!~laE0N4JS%Wp zsBv45zi`#;+yfnv+A+eQ$-@`2OfrYNS&_?uO8|}T80pFA20yp`g~7~R#LPHzQ8pdV zMa-qJ#u$Gt8ZUj$c$PO8ZH2_lTx8dYK{NbOsiCe~#um6=!E*}RUGlO2VYpK30BJgy zMHE%lTh0TXRPYMOJLlwKE(fSE>}U*LYPDfUGr;e2IaDKGSRZzPznDH;*m(9)W8E-2 zbVi@dxQrV-{5s4ej0Lu>#q;y(Mi`e>8);eGDK1Ht>OHybMtKt^oPd`_G9TrvUl`8L znao|-$Hq$!Ji9)sMLCnz7<&{0gPt?7viM(|Gr7mOJ$JFX`EwWM2pKSWEVu^kK1H>=WO2$%lzw;CIQHC{wGPj% zSv!uITeY!ZRGwS2)`C{5^48*RVBRcw$|En0Vpc7fF7f8*%%e0$V9NF+4JTsV#GyQ zu2LTiFcr(0@8J3r7PC`32UD@cZanUVz5TUBr*NIRxs&EERljdAb@k?sc3|z`zlYV= z)D>}lxKutSj;?Q<{1u-M6AJyon8%xLF1-ui5`1}1If?Hfd>M!S@*e41xT1K$AOm$F zT7vHZjd5D14s$%8j4;M2w|YF4ZmRP#o#6f(tDLSxS98-%ZX@8Pau3sgmhj6GzD?*u zLO&^Zhx;wdO{GG=E6CT}H~HN(#}zE|Q?utue}F#kd95@+wV;(`mK_NO$mM^n)J==Z zgJo`|JI1?!ovvz~;6cU`R2A=lqPehYL9(5mv+O8wM@G?n!K)*r#U0z0fP zfqov30sHAYe$IOmdHwVXak={@aJl~^rN7tQQ5K+2TdadGcqE9Xm-J`+e+4&~UdOp^ zC}a9<sS7(}iGZkF>uM9yJ^-859k_@IQ_#2O1+tjXFkuF(P1-A%tV8X@6B z{$N=p?WkmJe~55^zF)_+nCf5+zwcscFG7DeRl^zqx(6BtXjy>ihY|MEzab@RXR@B} z3jI2?b(6=*wf=qG`FcOiEa%v#f-LhTKig`x*lJn@r+lWKb$i0Wv=`Rqw#PVu5Bs-) zAL6*faU^(ygxODL8ApO|&?>wy&2gtn6?cnpje#Se{v)lYBNBHl zq`ZOsi{gTkatA#{qu6q+f(727o9U~P?{XLC+r=D8cn5LcL}|=@$-m9TI=u%pCUjpQ zf^fIV_)|W{6Xj9RJG>n32Xe#cQwZNM`XLFISH%#1xSr`V0jA*+rf&)UU=4@=PLN2D z!#}HLdZd==Bc)7BM9yx(D+Hed+@MdD$3cIHTn6<*KF-D<-=N?6na--<*auLGK?_id zL5EO^L3NV;MTxy1G7Xv!nFehTnO~7w9FW*jiT$$VeM>Yn>sX&xDw+O68Pn&TocFIq zg5Tm2=hmHJdkNl;lm>lFQr5c$kp4!g^*S0vI4=79(m8-MSBRbszzrHAma|l1PZY@I=vsqmPZ`t2UZ#zL-&4oobI@eV=-V#VN0l;FT0FO`b<+BAvDm2S-zc`? zvbKyKGtbbL(ffi-PYeB;gTqIK{+iB^tRlo=lS zq~^{Cs`2|CPigM0@-oAliTh1?HGZe&IUV<`S!Vb$ai`2`^3iJ&_cvZ=#nb5dKh<1i z#R+gS9njx+>+8RYnWK&;2XL3yzW{E&=3c6Q1;1FZR&zh9|2DWi!rfDM5F;)IiD{}v z%e;>mWmKoR4)0ZnyLq~bd(&5D1n7X~e&wsi$;QK)TTuCotDH_~?vCJd;9l0;{_>OH zex$iO%U=Rlb%m1oZ28j|6Ph*m&GHlA`ZV`;@T6hU?V9_ypn>JbvzklQpEN4zHO;-R z-oWv+^GYT2!N5r)NDZ2M0>4WVq%O_5OHLY96xUpBiGjNrPigM`sCzZNpt+Bt?$xw} zH!o=E1HMO$8tT&A-M*_ZVSi6^tI#U7^p56spjB#VTBFMM*{YL99WBw^=_-s6G^n}G znv+I7eL!=m8Uv?nFKg}*=sAIYq`5Cb&k0mDL&=;4yG*2J&8>l5CQ_f~z7Jg*=yuJ$ z3tbxMS`lN9gy{5Uptu}B9;%rhfZ>T+KOri$O4b&PmiMlkmtMsHXnc|we1M7*& z^pxgahs{Ftg64h+n}w*fS;;&CU8c}9&3y*COrh@t;J z*4(?W%T)TK=FY<|)2M2uDxnU#Ory1$`yT2ro%%HQHtH~)j%sd_^)!A9=vmFpw@!e2 zM{}#|0&pE?i<0@Cx(d3ImS}F+dC~||m*zg^G$>3T)ZF_kPa2K%8OV$!{?bg}(_9mM*EN&g z(cBWOCuY*L*-GYJ^fa~563u;>PJkQK+*;Ud7JWc-+u=*I=w;y!(GSr3XHz%dx}$sO zU$H)!O>yDgN9+9+;9l0;8O-Z*^tkjg#myhP=2F9a&i68v)c@EukM7&Z+#$No`bXD% zE%Rln^S|RlZ@Gcver9~S&P@v_q`Ak08xZag-BtE0*8+N0xR+_AtD3GR$0jB7+eo>P zEaB9cwU8PV=bhvXI2Y1<&0XoNK+3g>qn`5LxfW5kaEEATxf{2vMm4t{tEI*C1&(QJp~W`S5*>Hk#avvtLo^%hzM1|_ zIOP-AnRc@j=33mFX-$S(;O?eJ6es?26MaE*>@PRbE1K(Ylo{`#?`Uo_Zo|HZexNw< zr5*HB;gm1kOr<#6W1nZs-%Lw1$CkgD;=y8`29A8l8h z_)C-qgi~7YqQ^DITJNIo=zRXNpj{pEHV&~fZ9x6|XoDSx@0T5vwXR%&!a-M7;M;SPD{IW~b? zrsH@OG(xL&9It{#Xrqo}4|y+j>p1q1_fkZ~!MeA&?|^iJKJ6<`4?1uPF>dU5x&9;J z9Zt54qQ9);@MJ&J2gJY0#9?Bj_R&F$SM9vVs0a09g>=y3bp+EzLR*D)2)#jQkI)EcHBJRM<*h;w3Ox)u zfgY6bqe6cG>ZY@xVOnHhQ_LGG|K4acJI$XNt;S;i zFG0U${06#lu4BZxPSYF2;V=81HhWMaBX0ufLAfWTzMnGb3)lR$3e*H1AT)YF%BAUg1%{dWWp^-)9p$+UMIJ4o8wk< z@q{~p^ttXsc#Ux<=;kt}3%pGKKuqtfyAx&gSnZJZLp+&u(D*qh+M?_s(H8qA=x`ro zwuwirL8{kja~abGUZ&Fpzq5|Rf1n@ILG$g>rya*+4SfhUano_J=j#-zcn)|+{VB(b zg1l%vU;lTG2Tgz3cR-H^-vDhl-UR);?`NPVFb_XyPVv9#c+_NXeACztA3Fw%1)Ogh zlj#)Xn7<8@iDCkDxG0-mKNziWNGtL0cFh2)+m+=zlea6p0KVbOrXy6BpS)dOa zn_ONxDl#93%n&_<(r3{9)LGqvQ8ukXNBkqu`CezvOKMeqBkU z`CZyy(jj<<;2pq6fqa)fR}vFE2K*JuLWPk$)KYCxE<4b!Eo|KQ8!j z;8TEz{(_$t{50^RWv78x1kMV6R`9dH>w&zAvwojL^mlN%KF9sE1_;}yQSe6K_al5i z-5O|gyh_Ic9fEfV-U0lxK)BqP;4#5t!2f$72D~D0Sn$Jw9|rCyKkWD}%_%=F_;KJr z@f`=g7zo$*wBV;D{b}I6<)dgQ|vEzBk*6B zHv%uKXaqj5qC@Zw;6L$o0AB)x%Z&*hlk_p*k&2k}hw#J0f*%(AFz|aT4ns~w;JDz& z1wRh_)r#YSpBDVI;HQB*t<%7N;yEk$S>TUaXMuka^c%FT(&rNWU5xu&_tSkqxL%Ed zHv<2OuMzmum5r`%(5salf_Dhs0sN0ZzClxP&d+jUA}0p?BS6>=hXp?j{Mq1P*FVrH zP*^E=T=3(-zwJE^R*v4naDAJR9tA zv-}R=uLWbkVLgdGEa?vezp?7LAjg3WA`JhpIxWa)K~4jCx$3MSXC>EJASKm4kCf|? zay{tX)lQB&@=q37}^c$LJgpBFNVq>Y%W^@|e z#!Xl~k@=Y8gyTz&Z#w?F<6Xyjhs$|}>YSH3o1Al;Cf44#V{7on`)=%enRjB|a$#-i z!4uP7tWHaC=7V*7dCHAjv_fAtIb2h*545YEf2sLQ{V3>TzI#A_>*LtPmG1|AU+@U% zJ>?IBo-XI~bybgoexjb~3jwBcN|=7m%XvR85_(1QyOQ!_H5~h0Npnk(!@ri;f2!v2 zBehJAl`^f8yeA}fKw|49cCo~k)Nz`H7VEIH?h~LdIT?AqlIc5TOfPpG1HDmi%8S! z_$sKf8|U)E{wB`;P5I}+?#VzKIPi7iUj^C)zww0qgbTPI)I{re5XLXBAzX$S19v0v zL%VpIvjpJ^P!l_kGK4EZO`P+WBU}w?;_Ti+7{B_2a2?^%GVD(9yg1I-Yk^M$HF0iU zkML!nCeFeqB0L$?#QFAR2u}g!r=TYzJQb9mLY#u|bWoG70A}D6c`CwTV09pM?k z3~B;3;cJZu&jdAbR@;Q|EKn1xrkM!O0X5-=vk;yKYGNHV2jQzgO`M?4L-=Y?6DzB$ z5MBgo!e6gO_!>|XYpq2HUkhsDWbqn=mw}pCeO-%iE2xQINLz+*8>or(SS!LSK~3BZ zZbNuAsENNyuoB@8P?N3$X3+JZCe~~n2(JS*aZmVqgg1biSjDYF_y$muHUYy97}UhN zj_)~d1~u^pMkm5If|_^>VKc%#peAhvX3#cJlWqZK&|XlJ27npZ1#Uw)h0{8N(x4{Z zsMvw<5U5G}Fe(_dAJn8fa2jUPhbRi}9|tw*C`vHs6QCx> zlYWFh32M^g7-6te1T`_r+=}p%pe9b))1Y5PnFjt&#}LBLqfCRo25QoOp@Rs&06K-7 zqkIyep2olhpF42&gM)|6XNj|%2cbM{rSnOgdgNnEaPNOCb|lCce^|)t0YWQo$M-J5 zXjd{ZxFR`}=$ zyDhqkHYQ_y~XvJUrXzlBh^qZo66zS{R zv4xB2NNkEEc1PRxFzusMv_H8oS~O}yqF9EEpkfkiOlQrqZOQ(DWCC@vq4mkZ*sg;% zho*?8@V7_yLL=6`qaOy?oJjXZ;y{*&#!L6^*s&tgyBGFd6^q6J>#B^65WUC1t73^h z>Vx#vk)hpD7PULY4n`Xi8zX3+9HgT_-_B@iU#vGutD}Q$BdG@F zwv-~pQq(FnRAEs{wYgGChhzH6HI1aAD-ZOFM-Zw6SxN$X(8gGlR>k6RzIG(`CHF?D zlbeM)Rwjn}qp8SF4!6hB1Ie_6RUe~GLy5sye-us{RXvxD#~k~#Mp*8qXzw73gb>!W zEgplDWU)?I3{jo2{sF$g{DTK|Qg(T%kpv)ob0T)@P*gZ>>J^mr5=xH?MDrkUf#}RwbAdG6dQudOzmto!M>MvN*g+Xl z*zBMqY({=gk{HGwiNuH)hdpD-#EM8dN~%@ZLHkz5>S#?JDOUNO7542g_QtrNNkc3gWV<`6`(DSj*!Enm2$X_L>jiw03DrBR;ri@ z+_;A!P7%ZSE`u9N>T4au(}_EW5Vd+JmcuE<*wwNr#weSOg4`{!bSy7K&RI5wg!IdCu)+r1|zN*5*bbg>K=ViE_l5p8JS-N{rAq6Wig z3ZrW*5|7;`N=duL;<3S;gnC%vN+8Y7f><6xR$!772a_g~5kiHM@jeycR4Wsj;qH}T zqBh#UV_i&5e54f>W*AAYi`@6&VY9(RbiYc1+C~m!GiMm7tsRq5BNN@fV;`?5GGl`7*0-r)nO8o7v zg<)|Sh8sbqsSLu=`AA3S(7-@4HQ14e4T@W+veGQMBheQ9M=RccYAFkv{uiYtLBIguVrK^L_EOvVrHP9_T0PEs_cDv>QV){Cl4M8=eb5&5Pp zjJ5k{beCSyzrIe=b-kI&z>)nSfJQTBT;o@GL10>db4^NX1DANWFF0S#m@cF z=zwI>eM|wIF%QVpClBq!Y6wd&+u}E3Wr_t=%PO>6xnEb7pk57cg7tS_2EGK_*L9#K-U0~=Bt&fO~$_A%H-VuhJPbvEqhEA&wTH72TX z|Bg0HABbgV(?PDE4)(@%3~#taH&_#)%xI-p@qRU0DImv03Q+Y`!%Q|0Y@zn@B09?{ zdA)mch1neMBCby)_hYbEnq>R8j8<9cMI%_Vq7iy$z^ijLgBKGd14~w`te~8TJV87{ z6cv<>$kzy6(9V&+S1FL9drg5ZdFX0hj zLYN(SDVYO|?PlUZ_T*+eeS0jjJCRHe#(L8jN)mmm?6aM;ox+}qrR|af+Rw*C^LWLZ zgiO3z_+z@|F*U6U=RPcZ-!$okW(-lNrPh`?J-EtlGF>pF@tQ5$q#{#TZPkM4OuH42 z&I}3{5FsnC{Bs$#l1}YTlN?QC*)eX_73)grX<|7I!?xalBZ1t8%H?w{C8o}eEYeW9 z(fO*5$z4R%B586g#oNDJ`T50*m2;!>iysqRr1&Cfa*Ag&=E^T9zA(C=_`>L7#TTYY z<}{3M2t6j|bWhPRAI=n=59b$|ABW+)H!?_SOU6qnF!@DlFjH%tU&Dn(YIwuWTX1@Y z9b{*8P{#c&u_O+;up&nW0oFwM;Dc~rzt7*KsYt!^SnHl9EAT8RtWlN^fo*(WDai4=_` z#1_!UGa0@O$KGr(J($Y*rwGmixJr3IrbY754KP3&M|{+=HkMXa$^;4yu-8To!bwE) z;xX%RFJe9aQS*ZPDQpx`Py(!22I-0Nq8Urz1B8`D^nfJ80_30s+Ho|OWn%pjP7dr? zdFv34nFbFM!X1gI&0%SSCLH$|iaOHkhvM-Ksg?Z$$V=6;aW``=?qbfz-OB~IYq=12 zD`|2X_w`b^kC?*Uw*lO}OMyR#dyEm>nTzu6t}EB!-d!61VuXzo?#M=Q9g^4-QVjx6 z0-@T~;D(SQio2B&JUt)9d)#T1TMW-ly$PvVGEQRhQfG0#$@ad}mu>D^zozY(zYcx# zqk&szk~3r&UPp)w7Xp^WY=DXB4w*(}YrtJyd6QAuEU~w`InC&!9AE17I4XPiA8uM# zj-FNjOY!3%lc-`6?mkb#FJKszJuZ(~*<*Sjtf6xBn^hi%l9x-penYW7kEsGuctemJ z9>a8c3@e7`)vTE45CdO10={yDc~HcU9&#bU=pm&a7}M~2aof_0neG6WZH@jKGFkc0 zL1t-%$A`aTTRD1nWrJJ~cQV@vZDGLvtp3rb$XB; zfdKNG0j6G*i_~Ezb(1_5UN4Gyfd5A-M<29CKP*?|!UxX}0INJ?xbQ=DqhBr!IT0VI z9PxsI0;T?t3khC?Vx@r)-dwL75e~6v8!P7JX7l>c40yA&a`aQI`5~7FLR+mvJ{YH= zvegalP;~=LfCK^E42SA{Atz!F)i*SZe#*10)QXmtK~b};3>6&x99!nW%F!>PSSVD= z>YxIs8Z3V{aXO5g{>y!O^g+ z*DFTkfY&PyaA=CUO!vSBjB-k3D=lRlwJrg!Bq<1S+!d@?sfu|%lh``ch@KD#ILRn0 zQ;qdJH>S}&RS`pZ9BdZ&KcQQ? zJPxzeWNMlof=1S%l}@$o)Vl);HF!bH2Dirv^K;nS0Ae&quV^UqxVZJu7!_zb z?wu7T{#qcKDgajw5j$}Jb%IDcZG%~fzAI@POuq+7xn0eG_p7&U-%>yS%wg{rmhHI1 zdc(gM+Pv}-lQt*6SLeK!3EpMJZ|`uZg9+dHcj8?Ga$e7bXw3@eDh~1cC}2VG%z^yC zBspOma^j&Ia(Y0jS~0fr=o-QJ%A;K`!qbX@i!s3F4xg8gm#7V+ZXDm#_;S{xkSHGI zjf0LWrxUtFB#E~jfkAvtw`sad9q!7A!)--Pw-=WfzF~ap0QY$G*otrn-zt0$;)`^Z zBlx1h;E+8&P&F#bh}=-hV_%3#6^Iq(R92LOVF`vgSSP_c<Y4NBTs3FrqJ@2ZGkbUTEs9>t~h?m}TgNIZIsXjG zI%S1EMp4-|5{2NltY}J3j*4iC_TtHgXu3fmPMPN0op3okMN&LDPfIz;`K-1A6~MKSK}f%Y{iRt@i-;$diWwWE>ckO8W%~3Um2;) zof7nce`Wy9A8OSwp!|R*WLQ969j9q{ynIZX7pAuT2ty4{?Cf!~FjX6V-HAnIy={Wu%CNpag?qSIVQGCr2^CjL*+Q)fQa*N*9v?YWyEQV)` z8VMbb`_Un26>Zs_Nw8=(lqzf^b@Kwseg?`u!O9NeMxCt_7Nr>5n?t?op`iFdOgJEt zWHzeR7n&pUKw3Rq6YXmW@qIq%f?I=o)1d^ObWNp0c=V1}XgIM8MGxTlNj#X@8x0{K ztta7B605WRw4~|hgHcREi8SAtM!mUVq|7;}0j9ReMc13EDqOzDevFov@bz4&eAiRe zf~=|dZ6A)_6-%YL#GExtCJlap^@^h9sTHj%Rn{2 zU51}r;_Bv&U73pVHb$LVsx3{JA9`)X?~vkk5}eDzUD0TayHiMpwjO6 zs&ngogxU*8^5#(g5L$dEhJk20jqZr$imcRe94|W)$XkV1L%1-Upy!X@s=&}XEnzp- z;k-o33hB%|7zZ)7j};rIZPo2G#U>#;%{+rzy7pik&^w+qoEn>;J}k$u$dZkRR#QEG z-G{Q*;?0$!dGhv4ERz>`+|4j%;Q5e!9F$EHRN0PxyP62;qx=3^8wi_H*F3cbwmU2d*H0;OpV@ z`#+1z`QPu~|5tqd?MKi5)%o8YIe-3>=kL4kJ}<8O?-l;u^LBpxQO)z`e|P@3BIn+F z&!0cAfB%6yfbHLZuaf=SJATXj`SVPnj{baW%iX;kTK`4E}ooC zzn`@Hxt~AwWYzn&V3!U*T)cfV?r5a9uZ~9(+wnLSdwUWCV0wFEXs|Cin1~K;R|AQC zN$$L5yF81aftG>3om}MqZ$E$ha#r=4uOJ-C^0^@|$7Mb{+LEdEczhi{GbXRBM5FRZ z8z(qF9WvOt{_p2Mv<3LxMfpAX(fn%4feqdclz}8CihCSZ(fD?sLZpK^^%-@{M}Xh8 z+X1=~Z{u}hBenr|(stmw9&h<=kc20l|8!2hMaDhciLbgYlh`bxS-G@>8j#AT$Nbx| ze4yKbQ{-JZ|K-m#k<+EmmeYvOxi2RvzTiBAVhrfScl*?xys?sAkTkPVZ}o3J?&84) zs0+V^$tTYJa^EijDVPHB_G0$lUP#9eAQj&s97G4&i93lQq-w#tj4gQok?#-k9Y+3K zhj&12nFEMP_c{Ws`x*^;ckZ8zrRp6|HzXc0TBd&PZd%U)=nxl@cH3hg^z?3 Date: Fri, 9 Dec 2022 18:27:14 -0800 Subject: [PATCH 15/21] Finish implementation of UPSVarGauge Still needs testing. --- .../Controls/UPSVarGauge.Designer.vb | 2 +- .../WinNUT-Client/Controls/UPSVarGauge.vb | 333 +++++++++++++----- 2 files changed, 241 insertions(+), 94 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb index 83b6540..23f8fa0 100644 --- a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb @@ -9,7 +9,7 @@ _ Partial Class UPSVarGauge - Inherits System.Windows.Forms.Control + Inherits AGauge 'Control overrides dispose to clean up the component list. _ diff --git a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb index f2d8c71..6e4b636 100644 --- a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb +++ b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb @@ -8,120 +8,267 @@ ' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY Imports System.ComponentModel +Imports System.Drawing.Drawing2D -Namespace Controls - Public Class UPSVarGauge - Inherits AGauge +Friend Class UPSVarGauge + Inherits AGauge #Region "Private Fields" - Private m_value1 As Single - Private m_value2 As Single - - Private m_Center = New Point(74, 70) - Private m_MinValue As Single = 0 - Private m_MaxValue As Single = 100 - - Private m_BaseArcRadius = 45 - Private m_BaseArcStart = 135 - Private m_BaseArcSweep = 270 - Private m_BaseArcWidth = 5 - - Private m_ScaleLinesInterInnerRadius = 40 - Private m_ScaleLinesInterOuterRadius = 48 - Private m_ScaleLinesInterWidth = 1 - - Private m_ScaleLinesMinorTicks = 9 - Private m_ScaleLinesMinorInnerRadius = 42 - Private m_ScaleLinesMinorOuterRadius = 48 - Private m_ScaleLinesMinorWidth = 1 - - Private m_ScaleLinesMajorStepValue = 50.0F - Private m_ScaleLinesMajorInnerRadius = 40 - Private m_ScaleLinesMajorOuterRadius = 48 - Private m_ScaleLinesMajorWidth = 2 - - Private m_ScaleNumbersRadius = 60 - Private m_ScaleNumbersFormat As String - Private m_ScaleNumbersStartScaleLine As Integer - Private m_ScaleNumbersStepScaleLines = 1 - Private m_ScaleNumbersRotation As Integer - - Private m_NeedleType As NeedleType - Private m_NeedleRadius = 32 - Private m_NeedleColor1 = AGaugeNeedleColor.Gray - Private m_NeedleColor2 = Color.DimGray - Private m_NeedleWidth = 2 - - Private m_gradientType = GradientType.RedGreen - Private m_gradientOrientation = GradientOrientation.BottomToUp - Private m_unitvalue1 = UnitValue.Volts - Private m_unitvalue2 = UnitValue.None + Private ReadOnly drawGaugeBackground = True + + Private ReadOnly m_value1 As Single + Private m_value2 As Single + + Private ReadOnly m_Center = New Point(74, 70) + Private ReadOnly m_MinValue As Single = 0 + Private ReadOnly m_MaxValue As Single = 100 + + Private ReadOnly m_BaseArcRadius = 45 + Private ReadOnly m_BaseArcStart = 135 + Private ReadOnly m_BaseArcSweep = 270 + Private ReadOnly m_BaseArcWidth = 5 + + Private ReadOnly m_ScaleLinesInterInnerRadius = 40 + Private ReadOnly m_ScaleLinesInterOuterRadius = 48 + Private ReadOnly m_ScaleLinesInterWidth = 1 + + Private ReadOnly m_ScaleLinesMinorTicks = 9 + Private ReadOnly m_ScaleLinesMinorInnerRadius = 42 + Private ReadOnly m_ScaleLinesMinorOuterRadius = 48 + Private ReadOnly m_ScaleLinesMinorWidth = 1 + + Private ReadOnly m_ScaleLinesMajorStepValue = 50.0F + Private ReadOnly m_ScaleLinesMajorInnerRadius = 40 + Private ReadOnly m_ScaleLinesMajorOuterRadius = 48 + Private ReadOnly m_ScaleLinesMajorWidth = 2 + + Private ReadOnly m_ScaleNumbersRadius = 60 + Private ReadOnly m_ScaleNumbersFormat As String + Private ReadOnly m_ScaleNumbersStartScaleLine As Integer + Private ReadOnly m_ScaleNumbersStepScaleLines = 1 + Private ReadOnly m_ScaleNumbersRotation As Integer + + Private ReadOnly m_NeedleType As NeedleType + Private ReadOnly m_NeedleRadius = 32 + Private ReadOnly m_NeedleColor1 = AGaugeNeedleColor.Gray + Private ReadOnly m_NeedleColor2 = Color.DimGray + Private ReadOnly m_NeedleWidth = 2 + + Private m_gradientType = GradientTypeEnum.RedGreen + Private m_gradientOrientation = GradientOrientationEnum.BottomToUp + Private m_unitvalue1 = UnitValueEnum.Volts + Private m_unitvalue2 = UnitValueEnum.None #End Region #Region "Properties" - ' Hide the old Value property - Private Overloads Property Value As Single - Get - Return Nothing - End Get - Set(value As Single) + ' Map Value1 onto Value + + Public Property Value1 As Single + Get + Return Value + End Get + Set(value As Single) + MyBase.Value = value + End Set + End Property + + + Public Property Value2 As Single + Get + Return m_value2 + End Get + Set(value As Single) + If m_value2 <> value Then + m_value2 = value + OnValueChanged(Me, Nothing) + Refresh() + End If + End Set + End Property - End Set - End Property + + Public Property GradientType As GradientTypeEnum + Get + Return m_gradientType + End Get + Set(value As GradientTypeEnum) + m_gradientType = value + Refresh() + End Set + End Property - - Public Property Value1 As Single - Get - Return m_value1 - End Get - Set(value As Single) - value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue) - If m_value1 <> value Then + + Public Property GradientOrientation As GradientOrientationEnum + Get + Return m_gradientOrientation + End Get + Set(value As GradientOrientationEnum) - End If - End Set + If m_gradientOrientation <> value Then + m_gradientOrientation = value + Refresh() + End If + End Set + End Property - End Property + + Public Property UnitValue1 As UnitValueEnum + Get + Return m_unitvalue1 + End Get + Set(value As UnitValueEnum) + If m_unitvalue1 <> value Then + m_unitvalue1 = value + Refresh() + End If + End Set + End Property + + + Public Property UnitValue2 As UnitValueEnum + Get + Return m_unitvalue2 + End Get + Set(value As UnitValueEnum) + + If m_unitvalue2 <> value Then + m_unitvalue2 = value + Refresh() + End If + End Set + End Property #End Region - Public Enum GradientType - None - RedGreen - End Enum + Public Enum GradientTypeEnum + None + RedGreen + End Enum + + Public Enum GradientOrientationEnum + UpToBottom + BottomToUp + RightToLeft + LeftToRight + End Enum + + Public Enum UnitValueEnum + None + Hertz + Percent + Volts + Watts + End Enum + + Public Sub New() + MyBase.New() + + Size = New Size(148, 130) + Center = New Point(148, 130) + End Sub + + Overrides Sub RenderDefaultArc(graphics As Graphics, center As Point, centerFactor As Single) + If m_BaseArcRadius > 0 Then + Dim baseArcRadius As Integer = m_BaseArcRadius * centerFactor + If m_gradientType <> GradientTypeEnum.None Then + Dim GradientP1Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) + Dim GradientP2Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) + + Select Case m_gradientOrientation + Case GradientOrientationEnum.UpToBottom + GradientP1Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) + GradientP2Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) + Case GradientOrientationEnum.BottomToUp + GradientP1Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) + GradientP2Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) + Case GradientOrientationEnum.RightToLeft + GradientP1Brush = New Point((center.Y + baseArcRadius + m_BaseArcWidth + 2), 0) + GradientP2Brush = New Point((center.Y - baseArcRadius - m_BaseArcWidth - 2), 0) + Case GradientOrientationEnum.LeftToRight + GradientP1Brush = New Point((center.Y - baseArcRadius - m_BaseArcWidth - 2), 0) + GradientP2Brush = New Point((center.Y + baseArcRadius + m_BaseArcWidth + 2), 0) + End Select + + Dim myArc1Gradient = New LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green) + Using pnArc = New Pen(myArc1Gradient, m_BaseArcWidth * centerFactor) + graphics.DrawArc(pnArc, New Rectangle(center.X - baseArcRadius, + center.Y - baseArcRadius, + 2 * baseArcRadius, + 2 * baseArcRadius), + m_BaseArcStart, m_BaseArcSweep) + End Using + Else + Using pnArc = New Pen(BaseArcColor, m_BaseArcWidth * centerFactor) + graphics.DrawArc(pnArc, New Rectangle(center.X - baseArcRadius, + center.Y - baseArcRadius, + 2 * baseArcRadius, + 2 * baseArcRadius), + m_BaseArcStart, m_BaseArcSweep) + End Using + End If + End If + End Sub - Public Enum GradientOrientation - UpToBottom - BottomToUp - RightToLeft - LeftToRight - End Enum + ''' + ''' Override PostRender and render the value of the gauge with unit. + ''' + Overrides Sub PostRender(graphics As Graphics, center As Point, centerFactor As Single) + Dim PenString = New Pen(Color.Black) + Dim PenFontV1 = New Font("Microsoft Sans Serif", 8, FontStyle.Bold) + Dim PenFontV2 = New Font("Microsoft Sans Serif", 7, FontStyle.Bold) + Dim StringPen = New SolidBrush(Color.Black) + Dim LineHeight = 15 + Dim StrPos = center + StrPos.Y += 5 - Public Enum UnitValue - None - Hertz - Percent - Volts - Watts - End Enum + If UnitValue1 <> UnitValueEnum.None Then + Dim StringToDraw = ApplyUnit(Value1, UnitValue1) + Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1) + StrPos.Y += LineHeight + graphics.DrawString(StringToDraw, PenFontV1, StringPen, + New PointF((StrPos.X - (StringSize.Width / 2) + 5), StrPos.Y)) + End If - Public Sub New() - MyBase.New() + If UnitValue2 <> UnitValueEnum.None Then + Dim StringToDraw = ApplyUnit(Value2, UnitValue2) + Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2) + StrPos.Y += LineHeight + graphics.DrawString(StringToDraw, PenFontV2, StringPen, + New PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)) + End If + End Sub - Size = New Size(148, 130) - End Sub + Private Function ApplyUnit(value As String, unit As UnitValueEnum) + Dim returnStr = value - 'Protected Overrides Sub OnPaint(ByVal e As System.Windows.Forms.PaintEventArgs) - ' MyBase.OnPaint(e) + Select Case unit + Case UnitValueEnum.Hertz + returnStr &= " Hz" + Case UnitValueEnum.Percent + returnStr &= " %" + Case UnitValueEnum.Volts + returnStr &= " V" + Case UnitValueEnum.Watts + returnStr &= " W" + End Select - ' 'Add your custom paint code here - 'End Sub + Return returnStr + End Function - End Class -End Namespace +End Class From 105b3c1ef5d0bef3e27575da5f4730dfa909202f Mon Sep 17 00:00:00 2001 From: gbakeman Date: Fri, 9 Dec 2022 18:28:28 -0800 Subject: [PATCH 16/21] Implement UPSVarGauge in test form --- .../WinNUT-Client/AGaugeTest.Designer.vb | 85 ++++++++++++++++--- WinNUT_V2/WinNUT-Client/AGaugeTest.vb | 4 + 2 files changed, 76 insertions(+), 13 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb index 8311a65..71eb9e7 100644 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb @@ -35,8 +35,10 @@ Partial Class AGaugeTest Me.txt_minValue = New System.Windows.Forms.TextBox() Me.txt_maxValue = New System.Windows.Forms.TextBox() Me.Label2 = New System.Windows.Forms.Label() - Me.AGauge1 = New System.Windows.Forms.AGauge() + Me.AGauge1 = New UPSVarGauge() Me.btn_update = New System.Windows.Forms.Button() + Me.btn_battVClone = New System.Windows.Forms.Button() + Me.AG_BattV = New System.Windows.Forms.AGauge() Me.SuspendLayout() ' 'Label1 @@ -80,11 +82,9 @@ Partial Class AGaugeTest Me.AGauge1.BaseArcWidth = 5 Me.AGauge1.Center = New System.Drawing.Point(74, 70) Me.AGauge1.GaugeAutoSize = False - Me.AGauge1.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AGauge1.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp Me.AGauge1.Location = New System.Drawing.Point(13, 13) - Me.AGauge1.MaxValue = 100.0! - Me.AGauge1.MinValue = 0! + Me.AGauge1.MaxValue = 26.0! + Me.AGauge1.MinValue = 2.0! Me.AGauge1.Name = "AGauge1" Me.AGauge1.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray Me.AGauge1.NeedleColor2 = System.Drawing.Color.DimGray @@ -98,7 +98,7 @@ Partial Class AGaugeTest Me.AGauge1.ScaleLinesMajorColor = System.Drawing.Color.Black Me.AGauge1.ScaleLinesMajorInnerRadius = 40 Me.AGauge1.ScaleLinesMajorOuterRadius = 48 - Me.AGauge1.ScaleLinesMajorStepValue = 50.0! + Me.AGauge1.ScaleLinesMajorStepValue = 7.0! Me.AGauge1.ScaleLinesMajorWidth = 2 Me.AGauge1.ScaleLinesMinorColor = System.Drawing.Color.Gray Me.AGauge1.ScaleLinesMinorInnerRadius = 42 @@ -114,25 +114,82 @@ Partial Class AGaugeTest Me.AGauge1.Size = New System.Drawing.Size(148, 130) Me.AGauge1.TabIndex = 0 Me.AGauge1.Text = "AGauge1" - Me.AGauge1.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Volts - Me.AGauge1.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None - Me.AGauge1.Value1 = 0! - Me.AGauge1.Value2 = 0! + Me.AGauge1.Value = 20.3! ' 'btn_update ' - Me.btn_update.Location = New System.Drawing.Point(52, 246) + Me.btn_update.Location = New System.Drawing.Point(93, 246) Me.btn_update.Name = "btn_update" Me.btn_update.Size = New System.Drawing.Size(75, 23) Me.btn_update.TabIndex = 5 Me.btn_update.Text = "Update" Me.btn_update.UseVisualStyleBackColor = True ' + 'btn_battVClone + ' + Me.btn_battVClone.Location = New System.Drawing.Point(12, 246) + Me.btn_battVClone.Name = "btn_battVClone" + Me.btn_battVClone.Size = New System.Drawing.Size(75, 23) + Me.btn_battVClone.TabIndex = 6 + Me.btn_battVClone.Text = "Clone BattV" + Me.btn_battVClone.UseVisualStyleBackColor = True + ' + 'AG_BattV + ' + Me.AG_BattV.BaseArcColor = System.Drawing.Color.Gray + Me.AG_BattV.BaseArcRadius = 45 + Me.AG_BattV.BaseArcStart = 135 + Me.AG_BattV.BaseArcSweep = 270 + Me.AG_BattV.BaseArcWidth = 5 + Me.AG_BattV.Center = New System.Drawing.Point(74, 70) + Me.AG_BattV.GaugeAutoSize = False + Me.AG_BattV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToUp + Me.AG_BattV.Location = New System.Drawing.Point(208, 13) + Me.AG_BattV.MaximumSize = New System.Drawing.Size(148, 130) + Me.AG_BattV.MaxValue = 26.0! + Me.AG_BattV.MinimumSize = New System.Drawing.Size(148, 130) + Me.AG_BattV.MinValue = 14.0! + Me.AG_BattV.Name = "AG_BattV" + Me.AG_BattV.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_BattV.NeedleColor2 = System.Drawing.Color.DimGray + Me.AG_BattV.NeedleRadius = 32 + Me.AG_BattV.NeedleType = System.Windows.Forms.NeedleType.Advance + Me.AG_BattV.NeedleWidth = 2 + Me.AG_BattV.ScaleLinesInterColor = System.Drawing.Color.Black + Me.AG_BattV.ScaleLinesInterInnerRadius = 40 + Me.AG_BattV.ScaleLinesInterOuterRadius = 48 + Me.AG_BattV.ScaleLinesInterWidth = 1 + Me.AG_BattV.ScaleLinesMajorColor = System.Drawing.Color.Black + Me.AG_BattV.ScaleLinesMajorInnerRadius = 40 + Me.AG_BattV.ScaleLinesMajorOuterRadius = 48 + Me.AG_BattV.ScaleLinesMajorStepValue = 12.0! + Me.AG_BattV.ScaleLinesMajorWidth = 2 + Me.AG_BattV.ScaleLinesMinorColor = System.Drawing.Color.Gray + Me.AG_BattV.ScaleLinesMinorInnerRadius = 42 + Me.AG_BattV.ScaleLinesMinorOuterRadius = 48 + Me.AG_BattV.ScaleLinesMinorTicks = 9 + Me.AG_BattV.ScaleLinesMinorWidth = 1 + Me.AG_BattV.ScaleNumbersColor = System.Drawing.Color.Black + Me.AG_BattV.ScaleNumbersFormat = Nothing + Me.AG_BattV.ScaleNumbersRadius = 60 + Me.AG_BattV.ScaleNumbersRotation = 0 + Me.AG_BattV.ScaleNumbersStartScaleLine = 0 + Me.AG_BattV.ScaleNumbersStepScaleLines = 1 + Me.AG_BattV.Size = New System.Drawing.Size(148, 130) + Me.AG_BattV.TabIndex = 7 + Me.AG_BattV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts + Me.AG_BattV.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_BattV.Value1 = 14.0! + Me.AG_BattV.Value2 = 0! + ' 'AGaugeTest ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(180, 281) + Me.ClientSize = New System.Drawing.Size(410, 281) + Me.Controls.Add(Me.AG_BattV) + Me.Controls.Add(Me.btn_battVClone) Me.Controls.Add(Me.btn_update) Me.Controls.Add(Me.txt_maxValue) Me.Controls.Add(Me.Label2) @@ -146,10 +203,12 @@ Partial Class AGaugeTest End Sub - Friend WithEvents AGauge1 As AGauge + Friend WithEvents AGauge1 As UPSVarGauge Friend WithEvents Label1 As Label Friend WithEvents txt_minValue As TextBox Friend WithEvents txt_maxValue As TextBox Friend WithEvents Label2 As Label Friend WithEvents btn_update As Button + Friend WithEvents btn_battVClone As Button + Friend WithEvents AG_BattV As UPSVarGauge End Class diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb index b4ce490..2e65854 100644 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb @@ -12,4 +12,8 @@ Public Class AGaugeTest AGauge1.MinValue = txt_minValue.Text AGauge1.MaxValue = txt_maxValue.Text End Sub + + Private Sub btn_battVClone_Click(sender As Object, e As EventArgs) Handles btn_battVClone.Click + + End Sub End Class From 6f2abf4654d694e79dd5b9d5b01feb91bd9fdaf6 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 13 Dec 2022 16:59:52 -0800 Subject: [PATCH 17/21] Fixed gradient drawing issue Fixed new issue that was introduced where the gradient was not drawing correctly. It seems like the wrong coordinates were being used to calculate the gradient brush. - Corrected naming on gradient orientation enums - Reorganized logic in arc drawing subroutine - Delete unused private fields and organize others --- .../WinNUT-Client/Controls/UPSVarGauge.vb | 75 +++++++++---------- 1 file changed, 37 insertions(+), 38 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb index 6e4b636..581f5dd 100644 --- a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb +++ b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb @@ -15,12 +15,9 @@ Friend Class UPSVarGauge #Region "Private Fields" - Private ReadOnly drawGaugeBackground = True - Private ReadOnly m_value1 As Single Private m_value2 As Single - Private ReadOnly m_Center = New Point(74, 70) Private ReadOnly m_MinValue As Single = 0 Private ReadOnly m_MaxValue As Single = 100 @@ -29,15 +26,15 @@ Friend Class UPSVarGauge Private ReadOnly m_BaseArcSweep = 270 Private ReadOnly m_BaseArcWidth = 5 - Private ReadOnly m_ScaleLinesInterInnerRadius = 40 - Private ReadOnly m_ScaleLinesInterOuterRadius = 48 - Private ReadOnly m_ScaleLinesInterWidth = 1 - Private ReadOnly m_ScaleLinesMinorTicks = 9 Private ReadOnly m_ScaleLinesMinorInnerRadius = 42 Private ReadOnly m_ScaleLinesMinorOuterRadius = 48 Private ReadOnly m_ScaleLinesMinorWidth = 1 + Private ReadOnly m_ScaleLinesInterInnerRadius = 40 + Private ReadOnly m_ScaleLinesInterOuterRadius = 48 + Private ReadOnly m_ScaleLinesInterWidth = 1 + Private ReadOnly m_ScaleLinesMajorStepValue = 50.0F Private ReadOnly m_ScaleLinesMajorInnerRadius = 40 Private ReadOnly m_ScaleLinesMajorOuterRadius = 48 @@ -56,7 +53,7 @@ Friend Class UPSVarGauge Private ReadOnly m_NeedleWidth = 2 Private m_gradientType = GradientTypeEnum.RedGreen - Private m_gradientOrientation = GradientOrientationEnum.BottomToUp + Private m_gradientOrientation = GradientOrientationEnum.BottomToTop Private m_unitvalue1 = UnitValueEnum.Volts Private m_unitvalue2 = UnitValueEnum.None @@ -66,7 +63,7 @@ Friend Class UPSVarGauge ' Map Value1 onto Value Public Property Value1 As Single Get @@ -162,8 +159,8 @@ Friend Class UPSVarGauge End Enum Public Enum GradientOrientationEnum - UpToBottom - BottomToUp + TopToBottom + BottomToTop RightToLeft LeftToRight End Enum @@ -178,45 +175,47 @@ Friend Class UPSVarGauge Public Sub New() MyBase.New() + InitializeComponent() Size = New Size(148, 130) - Center = New Point(148, 130) End Sub - Overrides Sub RenderDefaultArc(graphics As Graphics, center As Point, centerFactor As Single) + Overrides Sub RenderDefaultArc(graphics As Graphics) If m_BaseArcRadius > 0 Then Dim baseArcRadius As Integer = m_BaseArcRadius * centerFactor - If m_gradientType <> GradientTypeEnum.None Then - Dim GradientP1Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) - Dim GradientP2Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) + + If m_gradientType = GradientTypeEnum.None Then + Using pnArc = New Pen(BaseArcColor, m_BaseArcWidth * centerFactor) + graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, + Center.Y - baseArcRadius, + 2 * baseArcRadius, + 2 * baseArcRadius), + m_BaseArcStart, m_BaseArcSweep) + End Using + + Else + Dim GradientP1Brush = New Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)) + Dim GradientP2Brush = New Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)) Select Case m_gradientOrientation - Case GradientOrientationEnum.UpToBottom - GradientP1Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) - GradientP2Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) - Case GradientOrientationEnum.BottomToUp - GradientP1Brush = New Point(0, (center.X + baseArcRadius + m_BaseArcWidth + 2)) - GradientP2Brush = New Point(0, (center.X - baseArcRadius - m_BaseArcWidth - 2)) + Case GradientOrientationEnum.TopToBottom + GradientP1Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) + GradientP2Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) + Case GradientOrientationEnum.BottomToTop + GradientP1Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) + GradientP2Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) Case GradientOrientationEnum.RightToLeft - GradientP1Brush = New Point((center.Y + baseArcRadius + m_BaseArcWidth + 2), 0) - GradientP2Brush = New Point((center.Y - baseArcRadius - m_BaseArcWidth - 2), 0) + GradientP1Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) + GradientP2Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) Case GradientOrientationEnum.LeftToRight - GradientP1Brush = New Point((center.Y - baseArcRadius - m_BaseArcWidth - 2), 0) - GradientP2Brush = New Point((center.Y + baseArcRadius + m_BaseArcWidth + 2), 0) + GradientP1Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) + GradientP2Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) End Select Dim myArc1Gradient = New LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green) Using pnArc = New Pen(myArc1Gradient, m_BaseArcWidth * centerFactor) - graphics.DrawArc(pnArc, New Rectangle(center.X - baseArcRadius, - center.Y - baseArcRadius, - 2 * baseArcRadius, - 2 * baseArcRadius), - m_BaseArcStart, m_BaseArcSweep) - End Using - Else - Using pnArc = New Pen(BaseArcColor, m_BaseArcWidth * centerFactor) - graphics.DrawArc(pnArc, New Rectangle(center.X - baseArcRadius, - center.Y - baseArcRadius, + graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, + Center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep) @@ -228,13 +227,13 @@ Friend Class UPSVarGauge ''' ''' Override PostRender and render the value of the gauge with unit. ''' - Overrides Sub PostRender(graphics As Graphics, center As Point, centerFactor As Single) + Overrides Sub PostRender(graphics As Graphics) Dim PenString = New Pen(Color.Black) Dim PenFontV1 = New Font("Microsoft Sans Serif", 8, FontStyle.Bold) Dim PenFontV2 = New Font("Microsoft Sans Serif", 7, FontStyle.Bold) Dim StringPen = New SolidBrush(Color.Black) Dim LineHeight = 15 - Dim StrPos = center + Dim StrPos = Center StrPos.Y += 5 If UnitValue1 <> UnitValueEnum.None Then From b7c0b82e8b651ed585fc83761dd4c6942d2a9a9e Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 13 Dec 2022 17:00:37 -0800 Subject: [PATCH 18/21] Update AGaugeTest form - Updating references to new gauge class --- WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb | 10 +++------- WinNUT_V2/WinNUT-Client/AGaugeTest.vb | 9 +++++++++ 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb index 71eb9e7..e0240c9 100644 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb @@ -29,7 +29,7 @@ Partial Class AGaugeTest 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. - _ + ' _ Private Sub InitializeComponent() Me.Label1 = New System.Windows.Forms.Label() Me.txt_minValue = New System.Windows.Forms.TextBox() @@ -38,7 +38,7 @@ Partial Class AGaugeTest Me.AGauge1 = New UPSVarGauge() Me.btn_update = New System.Windows.Forms.Button() Me.btn_battVClone = New System.Windows.Forms.Button() - Me.AG_BattV = New System.Windows.Forms.AGauge() + Me.AG_BattV = New UPSVarGauge() Me.SuspendLayout() ' 'Label1 @@ -80,8 +80,6 @@ Partial Class AGaugeTest Me.AGauge1.BaseArcStart = 135 Me.AGauge1.BaseArcSweep = 270 Me.AGauge1.BaseArcWidth = 5 - Me.AGauge1.Center = New System.Drawing.Point(74, 70) - Me.AGauge1.GaugeAutoSize = False Me.AGauge1.Location = New System.Drawing.Point(13, 13) Me.AGauge1.MaxValue = 26.0! Me.AGauge1.MinValue = 2.0! @@ -141,10 +139,8 @@ Partial Class AGaugeTest Me.AG_BattV.BaseArcStart = 135 Me.AG_BattV.BaseArcSweep = 270 Me.AG_BattV.BaseArcWidth = 5 - Me.AG_BattV.Center = New System.Drawing.Point(74, 70) - Me.AG_BattV.GaugeAutoSize = False Me.AG_BattV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToUp + Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop Me.AG_BattV.Location = New System.Drawing.Point(208, 13) Me.AG_BattV.MaximumSize = New System.Drawing.Size(148, 130) Me.AG_BattV.MaxValue = 26.0! diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb index 2e65854..38f9b32 100644 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb +++ b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb @@ -8,6 +8,15 @@ ' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY Public Class AGaugeTest + Public Sub New() + + ' This call is required by the designer. + InitializeComponent() + + ' Add any initialization after the InitializeComponent() call. + + End Sub + Private Sub btn_update_Click(sender As Object, e As EventArgs) Handles btn_update.Click AGauge1.MinValue = txt_minValue.Text AGauge1.MaxValue = txt_maxValue.Text From 3e5d95887bc5f26a5efd3b85d4268d3212f59a18 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Tue, 13 Dec 2022 17:01:28 -0800 Subject: [PATCH 19/21] Update references in WinNUT form Updating references in WinNUT main form to new gauge class. --- WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb | 96 ++++++++++------------ WinNUT_V2/WinNUT-Client/WinNUT.vb | 7 +- 2 files changed, 48 insertions(+), 55 deletions(-) diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb b/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb index 3ef212f..593305e 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb @@ -79,12 +79,12 @@ Partial Class WinNUT Me.GB_InF_Dial = New System.Windows.Forms.GroupBox() Me.Lbl_InF_Dial = New System.Windows.Forms.Label() Me.CB_CurrentLog = New System.Windows.Forms.ComboBox() - Me.AG_InF = New System.Windows.Forms.AGauge() - Me.AG_InV = New System.Windows.Forms.AGauge() - Me.AG_BattV = New System.Windows.Forms.AGauge() - Me.AG_Load = New System.Windows.Forms.AGauge() - Me.AG_OutV = New System.Windows.Forms.AGauge() - Me.AG_BattCh = New System.Windows.Forms.AGauge() + Me.AG_InF = New UPSVarGauge() + Me.AG_InV = New UPSVarGauge() + Me.AG_BattV = New UPSVarGauge() + Me.AG_Load = New UPSVarGauge() + Me.AG_OutV = New UPSVarGauge() + Me.AG_BattCh = New UPSVarGauge() Me.ContextMenu_Systray.SuspendLayout() Me.Main_Menu.SuspendLayout() Me.GB_Status.SuspendLayout() @@ -452,15 +452,13 @@ Partial Class WinNUT Me.AG_InF.BaseArcStart = 135 Me.AG_InF.BaseArcSweep = 270 Me.AG_InF.BaseArcWidth = 5 - Me.AG_InF.Center = New System.Drawing.Point(74, 70) - Me.AG_InF.GaugeAutoSize = False - Me.AG_InF.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_InF.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp + Me.AG_InF.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_InF.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_InF, "AG_InF") Me.AG_InF.MaxValue = 100.0! Me.AG_InF.MinValue = 0! Me.AG_InF.Name = "AG_InF" - Me.AG_InF.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_InF.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_InF.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_InF.NeedleRadius = 32 Me.AG_InF.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -485,8 +483,8 @@ Partial Class WinNUT Me.AG_InF.ScaleNumbersRotation = 0 Me.AG_InF.ScaleNumbersStartScaleLine = 0 Me.AG_InF.ScaleNumbersStepScaleLines = 1 - Me.AG_InF.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Hertz - Me.AG_InF.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AG_InF.UnitValue1 = UPSVarGauge.UnitValueEnum.Hertz + Me.AG_InF.UnitValue2 = UPSVarGauge.UnitValueEnum.None Me.AG_InF.Value1 = 0! Me.AG_InF.Value2 = 0! ' @@ -497,15 +495,13 @@ Partial Class WinNUT Me.AG_InV.BaseArcStart = 135 Me.AG_InV.BaseArcSweep = 270 Me.AG_InV.BaseArcWidth = 5 - Me.AG_InV.Center = New System.Drawing.Point(74, 70) - Me.AG_InV.GaugeAutoSize = False - Me.AG_InV.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_InV.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp + Me.AG_InV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_InV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_InV, "AG_InV") Me.AG_InV.MaxValue = 100.0! Me.AG_InV.MinValue = 0! Me.AG_InV.Name = "AG_InV" - Me.AG_InV.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_InV.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_InV.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_InV.NeedleRadius = 32 Me.AG_InV.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -530,8 +526,8 @@ Partial Class WinNUT Me.AG_InV.ScaleNumbersRotation = 0 Me.AG_InV.ScaleNumbersStartScaleLine = 0 Me.AG_InV.ScaleNumbersStepScaleLines = 1 - Me.AG_InV.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Volts - Me.AG_InV.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AG_InV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts + Me.AG_InV.UnitValue2 = UPSVarGauge.UnitValueEnum.None Me.AG_InV.Value1 = 0! Me.AG_InV.Value2 = 0! ' @@ -542,15 +538,13 @@ Partial Class WinNUT Me.AG_BattV.BaseArcStart = 135 Me.AG_BattV.BaseArcSweep = 270 Me.AG_BattV.BaseArcWidth = 5 - Me.AG_BattV.Center = New System.Drawing.Point(74, 70) - Me.AG_BattV.GaugeAutoSize = False - Me.AG_BattV.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_BattV.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp + Me.AG_BattV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_BattV, "AG_BattV") Me.AG_BattV.MaxValue = 100.0! Me.AG_BattV.MinValue = 0! Me.AG_BattV.Name = "AG_BattV" - Me.AG_BattV.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_BattV.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_BattV.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_BattV.NeedleRadius = 32 Me.AG_BattV.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -575,8 +569,8 @@ Partial Class WinNUT Me.AG_BattV.ScaleNumbersRotation = 0 Me.AG_BattV.ScaleNumbersStartScaleLine = 0 Me.AG_BattV.ScaleNumbersStepScaleLines = 1 - Me.AG_BattV.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Volts - Me.AG_BattV.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AG_BattV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts + Me.AG_BattV.UnitValue2 = UPSVarGauge.UnitValueEnum.None Me.AG_BattV.Value1 = 0! Me.AG_BattV.Value2 = 0! ' @@ -587,15 +581,13 @@ Partial Class WinNUT Me.AG_Load.BaseArcStart = 135 Me.AG_Load.BaseArcSweep = 270 Me.AG_Load.BaseArcWidth = 5 - Me.AG_Load.Center = New System.Drawing.Point(74, 70) - Me.AG_Load.GaugeAutoSize = False - Me.AG_Load.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_Load.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.RightToLeft + Me.AG_Load.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_Load.GradientOrientation = UPSVarGauge.GradientOrientationEnum.RightToLeft resources.ApplyResources(Me.AG_Load, "AG_Load") Me.AG_Load.MaxValue = 100.0! Me.AG_Load.MinValue = 0! Me.AG_Load.Name = "AG_Load" - Me.AG_Load.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_Load.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_Load.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_Load.NeedleRadius = 32 Me.AG_Load.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -620,8 +612,8 @@ Partial Class WinNUT Me.AG_Load.ScaleNumbersRotation = 0 Me.AG_Load.ScaleNumbersStartScaleLine = 0 Me.AG_Load.ScaleNumbersStepScaleLines = 1 - Me.AG_Load.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Percent - Me.AG_Load.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.Watts + Me.AG_Load.UnitValue1 = UPSVarGauge.UnitValueEnum.Percent + Me.AG_Load.UnitValue2 = UPSVarGauge.UnitValueEnum.Watts Me.AG_Load.Value1 = 0! Me.AG_Load.Value2 = 0! ' @@ -632,15 +624,13 @@ Partial Class WinNUT Me.AG_OutV.BaseArcStart = 135 Me.AG_OutV.BaseArcSweep = 270 Me.AG_OutV.BaseArcWidth = 5 - Me.AG_OutV.Center = New System.Drawing.Point(74, 70) - Me.AG_OutV.GaugeAutoSize = False - Me.AG_OutV.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_OutV.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.BottomToUp + Me.AG_OutV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_OutV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_OutV, "AG_OutV") Me.AG_OutV.MaxValue = 100.0! Me.AG_OutV.MinValue = 0! Me.AG_OutV.Name = "AG_OutV" - Me.AG_OutV.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_OutV.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_OutV.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_OutV.NeedleRadius = 32 Me.AG_OutV.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -665,8 +655,8 @@ Partial Class WinNUT Me.AG_OutV.ScaleNumbersRotation = 0 Me.AG_OutV.ScaleNumbersStartScaleLine = 0 Me.AG_OutV.ScaleNumbersStepScaleLines = 1 - Me.AG_OutV.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Volts - Me.AG_OutV.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AG_OutV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts + Me.AG_OutV.UnitValue2 = UPSVarGauge.UnitValueEnum.None Me.AG_OutV.Value1 = 0! Me.AG_OutV.Value2 = 0! ' @@ -677,15 +667,13 @@ Partial Class WinNUT Me.AG_BattCh.BaseArcStart = 135 Me.AG_BattCh.BaseArcSweep = 270 Me.AG_BattCh.BaseArcWidth = 5 - Me.AG_BattCh.Center = New System.Drawing.Point(74, 70) - Me.AG_BattCh.GaugeAutoSize = False - Me.AG_BattCh.GradientColor = System.Windows.Forms.AGauge.GradientType.RedGreen - Me.AG_BattCh.GradientColorOrientation = System.Windows.Forms.AGauge.GradientOrientation.LeftToRight + Me.AG_BattCh.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_BattCh.GradientOrientation = UPSVarGauge.GradientOrientationEnum.LeftToRight resources.ApplyResources(Me.AG_BattCh, "AG_BattCh") Me.AG_BattCh.MaxValue = 100.0! Me.AG_BattCh.MinValue = 0! Me.AG_BattCh.Name = "AG_BattCh" - Me.AG_BattCh.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray + Me.AG_BattCh.NeedleColor1 = AGaugeNeedleColor.Gray Me.AG_BattCh.NeedleColor2 = System.Drawing.Color.DimGray Me.AG_BattCh.NeedleRadius = 32 Me.AG_BattCh.NeedleType = System.Windows.Forms.NeedleType.Advance @@ -710,8 +698,8 @@ Partial Class WinNUT Me.AG_BattCh.ScaleNumbersRotation = 0 Me.AG_BattCh.ScaleNumbersStartScaleLine = 0 Me.AG_BattCh.ScaleNumbersStepScaleLines = 1 - Me.AG_BattCh.UnitValue1 = System.Windows.Forms.AGauge.UnitValue.Percent - Me.AG_BattCh.UnitValue2 = System.Windows.Forms.AGauge.UnitValue.None + Me.AG_BattCh.UnitValue1 = UPSVarGauge.UnitValueEnum.Percent + Me.AG_BattCh.UnitValue2 = UPSVarGauge.UnitValueEnum.None Me.AG_BattCh.Value1 = 0! Me.AG_BattCh.Value2 = 0! ' @@ -806,13 +794,13 @@ Partial Class WinNUT Friend WithEvents Lbl_BattV_Dial As Label Friend WithEvents GB_InV_Dial As GroupBox Friend WithEvents Lbl_InV_Dial As Label - Friend WithEvents AG_InV As AGauge - Friend WithEvents AG_OutV As AGauge - Friend WithEvents AG_BattCh As AGauge - Friend WithEvents AG_Load As AGauge - Friend WithEvents AG_BattV As AGauge + Friend WithEvents AG_InV As UPSVarGauge + Friend WithEvents AG_OutV As UPSVarGauge + Friend WithEvents AG_BattCh As UPSVarGauge + Friend WithEvents AG_Load As UPSVarGauge + Friend WithEvents AG_BattV As UPSVarGauge Friend WithEvents GB_InF_Dial As GroupBox - Friend WithEvents AG_InF As AGauge + Friend WithEvents AG_InF As UPSVarGauge Friend WithEvents Lbl_InF_Dial As Label Friend WithEvents CB_CurrentLog As ComboBox Friend WithEvents Menu_Import_Ini As ToolStripMenuItem diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.vb b/WinNUT_V2/WinNUT-Client/WinNUT.vb index 3e8869f..ee5de8f 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.vb @@ -276,7 +276,7 @@ Public Class WinNUT #If DEBUG Then ' Insert AGauge testing dialog menu item Dim agDbgFormOpen = New ToolStripMenuItem("AGauge Test Form") - AddHandler agDbgFormOpen.Click, Function() AGaugeTest.ShowDialog() + AddHandler agDbgFormOpen.Click, AddressOf OpenAGDebugForm Menu_File.DropDownItems.Add(agDbgFormOpen) #End If @@ -284,6 +284,11 @@ Public Class WinNUT LogLvl.LOG_NOTICE, Me) End Sub + Private Sub OpenAGDebugForm(sender As Object, e As EventArgs) + Dim form = New AGaugeTest() + form.ShowDialog() + End Sub + Private Sub SystemEvents_PowerModeChanged(sender As Object, e As Microsoft.Win32.PowerModeChangedEventArgs) LogFile.LogTracing("PowerModeChangedEvent: " & [Enum].GetName(GetType(Microsoft.Win32.PowerModes), e.Mode), LogLvl.LOG_NOTICE, Me) Select Case e.Mode From 15cde377981cf2f23873c1758ea39cfdb77fdc36 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 6 May 2024 15:13:08 -0400 Subject: [PATCH 20/21] Complete integration of NuGet package - Updated NuGet package reference, removed references to local/external AGauge project - Updating Setup project with changes in references as a result - Removed AGaugeTest form - Removed extra .NET publishing dependency from main project - Moved UPSVarGauge into a Controls namespace, and making explicit references in WinNUT form. - Applying autogenerated OnInitialize function in the Application designer file. --- WinNUT_V2/Setup/Setup.vdproj | 12810 +--------------- .../WinNUT-Client/AGaugeTest.Designer.vb | 210 - WinNUT_V2/WinNUT-Client/AGaugeTest.resx | 120 - WinNUT_V2/WinNUT-Client/AGaugeTest.vb | 28 - .../Controls/UPSVarGauge.Designer.vb | 51 +- .../WinNUT-Client/Controls/UPSVarGauge.vb | 482 +- .../WinNUT-Client.zh-TW.xlf | 8 - .../WinNUT-client.de-DE.xlf | 8 - .../WinNUT-client.fr-FR.xlf | 8 - .../WinNUT-client.ru-RU.xlf | 8 - .../WinNUT-client.zh-CN.xlf | 8 - .../My Project/Application.Designer.vb | 6 + WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj | 24 +- WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb | 72 +- WinNUT_V2/WinNUT-Client/WinNUT.vb | 12 - 15 files changed, 451 insertions(+), 13404 deletions(-) delete mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb delete mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.resx delete mode 100644 WinNUT_V2/WinNUT-Client/AGaugeTest.vb diff --git a/WinNUT_V2/Setup/Setup.vdproj b/WinNUT_V2/Setup/Setup.vdproj index 1ccfc3a..e7ca566 100644 --- a/WinNUT_V2/Setup/Setup.vdproj +++ b/WinNUT_V2/Setup/Setup.vdproj @@ -13,90 +13,6 @@ "SccProvider" = "8:" "Hierarchy" { - "Entry" - { - "MsmKey" = "8:_007771D280B53DD6A126193BB7E17933" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_015E2B0847818306238823A2D48C5681" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_035F3502AE28D7401694849196DDA416" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_03A0EDF87510925D23A589B9F7F99307" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04BC2107644AB3257DDD15248220E634" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04BC2107644AB3257DDD15248220E634" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_04CF9F50AFCFD75A7E6088F3621CA4ED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0676D83FBB947F373451B96CB8BC6BEA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_06AA7F297884188EE0AA5810360FC763" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_08B0003B6C275CCE4F50F88E57B7A578" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } "Entry" { "MsmKey" = "8:_0A325B8139084CA78A0244CAC82F2853" @@ -105,12507 +21,156 @@ } "Entry" { - "MsmKey" = "8:_0A861B352BC31F8043445D772FF57CB6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F5E177FC62202099EA99639175075CA" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_0F5E177FC62202099EA99639175075CA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1114F1AB6BA7BDB8929C7A352BD69CD8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_12D172BCFA45B1B569DD24E2B9266F52" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_19385C4691E649139966B93BFCB76418" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_19A373CB2F62FEC5606DD9E5BBD06BD8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_2021E1982D884B6393B46EBA1914BC5E" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2206214B43115913654388E9CFE55541" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_22E597B5B6FB0277AA111379F71C65B7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2345E89518F0D8985C692D19EF1E808A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_238010302C112A7D7CFBD7B200669489" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_2527A23593D9DECA7626904A842B3A4C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27001287E89A65EA472E8C68410912F2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_308CF6B8D3BD70CE5E6D33225674D157" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_314CE5030A4040E69371869B1C94AA16" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_33BCB1EF059B4E9B87FA7435A8F2499C" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_340864DD72C415E0C492B714301E79A7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34A1F158D4450516C7110A0FE717FAC0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_355796080221874A700D8249D6E0A304" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3885B3B7BC374F927C08B566E62E8291" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3BB4C815C80263264F0835B05D6C29B5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { "MsmKey" = "8:_3F430083DA6440B2B12DECC4BB791883" "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" + "MsmKey" = "8:_70DBA11C2BF449198BA594449914C1BC" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" + "MsmKey" = "8:_761987FA7717402DB92207F177F3DB49" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" + "MsmKey" = "8:_7E781465BFAC4DC08591FE1EDE1E2D1F" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } "Entry" { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" + "MsmKey" = "8:_A17B6478098A4E61AD676107545BBEAD" + "OwnerKey" = "8:_UNDEFINED" "MsmSig" = "8:_UNDEFINED" } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "OwnerKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_41ACD1721ED9213638A12AAF4CF016D4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "OwnerKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "OwnerKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_42BBCEC9AE1CBFE3E58A13542692B9CD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_476DF29CACAAD7A76178704602BE2EC0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4774115E9200F030081FCBB70040F2EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_49DE96DCE27AC1C177BE32450A904C51" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4D677EC3914DF64AFD8292783FAF7ADB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_551F26449E12B56F24758197729250EA" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_551F26449E12B56F24758197729250EA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_55900C9611A2611D3971BBB8926ECB47" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_55E8471B66C724D29B85EA1A89C512BC" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_578DD70008DD00F28E6D4544E03BC1E7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5A1A26F550D51743C07091970252426F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5AF60A8FE8E5CE18A62870618E1A6464" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5C99D3FB8E4CBB81209F637E049611DF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5CA4547DABFA0694032007B9BB0EA244" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5D53059D869C59B0C586793BCD0468AA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5DFBB58F1460C9FB8F9C0FD754DCC774" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5F85205E90CF31B641B997739F28267C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_5FBA4B475C968940926D63A4378CAA79" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_641C6AFC007C27603A5AC9A976685211" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_69B5AB49EAAC31D626DC68C7A213E382" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6D42D14D63106DCB72EB99ACC1F04A15" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E4A4E270D5DA5A9505105045B8026AC" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6E5A64AE79989CD2327639F4521E8019" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF0FE61B726340E7A67DCF29BF4570D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_6FF56102C49E8442B5A49DDAF32C4F26" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_761987FA7717402DB92207F177F3DB49" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_763E5255FF317196BB954450CD929A96" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7643B2E01E55816C8BA2265FF9E9B786" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_774F423D0C033C8CEF33B1307E08D89F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_778ED547516ECB148AF8A5918760B7B5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_780831B78BA2D1CBAB229FBD6E8B951A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79CF7E19F6722548D5DDDEF00B225C2A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7B7229CE771E23BB43496BDC789919ED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7E781465BFAC4DC08591FE1EDE1E2D1F" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_84E1AD60D6C082AD2ED7EC0F1E25E3CB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_85DCA92C1463DA1F61D485D7AB5394A8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_869845581A9866B44DBED568C68F8D20" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89BF85CE8FF57A6CF348C17A9E4A4B46" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_89C48B847A1660FF5443EE1F45B5BE4F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8A23A2887291234BEFC9D9493F11E76D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8BCA62F0EAA5C7203EE1CFD06D5ABE51" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8BDBFBB346DCFA8196620AC61984564B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8C6957C5EDA3BEBDF613423CE0F06854" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8CE68BD35A0A1F65AD3586ECF7C38930" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_8E1DD761B20F3ECDF9A230E8F31A2155" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9348F936EBBAFECC1F3A562B55AD9844" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_94E37BB24B8B221A425EA0F4CE28CCB1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9594709128A3A0B38E40304183D5B6F9" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_95E3FB69DDF82C9CA9B76C8DE419C114" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9E48304B1DC71476548406FCF4AA74CA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A00B47B1ADF412A18F67F733DA104828" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A17B6478098A4E61AD676107545BBEAD" - "OwnerKey" = "8:_UNDEFINED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A51E7D6EB2814770BABB461429AA4198" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A6B4C8C75BC8EF0AEDC4CCFDDBEBF52E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_A82C0ADF725E3339634EAACD8A9BF860" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ACEDB7776268EF0FD32AB901AF362B9A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_AE2D6AEC41AB77BDB4985F4B6AF94F7B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B382C2A98A117987BC221E529A3A207F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3E598F142F01A4265674BEC8B9596AD" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3FCACBB298A470D684D809ED0B8D99A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B3FD4BD0A1EFD06811A00CFD1B94688A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B517F773042D077CB92011685C008C54" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B5EB4F25C305A58F1CAA2F30A1C745CA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B6E8AA80435831938791DA6EB44A5B6D" - "OwnerKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA2F676298C6340C151391971185621C" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BA2F676298C6340C151391971185621C" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD6AEFE74E6F9E7630CDB9CFB4B8FED2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BD86B01616A9B4D242F39070CA850CC8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C0D187E15C56C5721A06E00FD95FBFA2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C1C84843BBAFF08D46E52EA85113A24F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C3ABC9BEC29BBE1E3114959C26FD79C1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C7CC6677DEE9BA97FB8629B55CD370C1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8BCC7B38EA0049691EEF7FD710D8E49" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "OwnerKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "OwnerKey" = "8:_94E37BB24B8B221A425EA0F4CE28CCB1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "OwnerKey" = "8:_9BCB17DE53042833A48B9D04BAB93886" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CE47C0843684401EFAE3BF68CB6A84D1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D1D460AB4EBE598849BAB05241AFF256" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "OwnerKey" = "8:_780831B78BA2D1CBAB229FBD6E8B951A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D3271EFA737471D699DAC74AEDDE57A8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D47BA0FE8D9274AEE294B05893719049" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D4FB3F38EF266C37A7BEC367A523F329" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D4FF9DF0E48D393F409D1DD6A4B0DE2F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_D639A6BCBF265514B88B8DB27A97653D" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DFB70ADFBF7091B8D6D0D3AF054894F6" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_DFCBFE49A95F46FD413BC9EC5A5A2FFE" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E1BD53E405BF635C454697266E55B097" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EB3617603EE8356A34D97EADA49C20F1" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EBC4DB34C82DE60DD7335E5ED11A521A" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F045042B5F25F5B5FF4D733E2635DC51" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2715534C3BAC0F6D865207A99862C81" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A53899707A35DE976FB85A2B61D8F4" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2A935E7EE034BBF28A56C8F5A5608B7" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F2DFA45AEBB8B70591BD9DA9079DD8EC" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F367FD1306372EFEAD3219FE6D30398B" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F5E3E1B2654E985CD59A3EE1AE9AE176" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "OwnerKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "OwnerKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_FEB6F10A91EB54E3CB85A7A1A46CF0CA" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_314CE5030A4040E69371869B1C94AA16" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5C99D3FB8E4CBB81209F637E049611DF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7643B2E01E55816C8BA2265FF9E9B786" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E8BB0E2A241C1023B684B55FEB5B745F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_929B73992E930343CA5B90A2038D04AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_63C8A279ECA1961108679E2A93D5C62B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_70DBA11C2BF449198BA594449914C1BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_85DCA92C1463DA1F61D485D7AB5394A8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DE469A5DFC115AF26DDBCF666237C250" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_79EAA78F0054FD01219DF518DC18DBBB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_10AC006F21D6E7FCF876FA9023859F08" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1DC60DD2329B95D486A3E55969C97D7D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_617369C02C0140C70FB995D0ABBF21E3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5FA6D02721E2E94A4093FD956487D6E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ADFE9608A1B22DCB5B226EF06A49AE83" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9669D935FA55FE8CBCD04CF9AB20AAAD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DB518775295CF964ADA748332DA9A3A5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0BF705C375232EEC838C4D253AEF9574" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_51F85920A3B504154EB08056B3AD9979" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9C64B81D4893F0C58728F8DC06800007" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E6CAC81FA0DD7E67B3730F837AE59C9F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_380EAFB68E1A4974624A2995C6303403" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B517F773042D077CB92011685C008C54" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_938F6F28EAD3BD21F818EAD185A8E9B2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_98206E1950C01D377C5C613E88926BC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6270F7617E1F5E3A7F9BFD82EAEB7925" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E1044D6323768A22D9870EB8FBFDD21E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_581DA186FDCE0FFFC2D735C83A918436" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EFC668EA7FEE2B8448A9712D8FF47F48" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9F6DE8A084F82CF80095E944791B4989" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_E1BD53E405BF635C454697266E55B097" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ECE9944EA9E24D0195044AF46D036749" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F998EE5CB8F8C3586E6E9C104F82C7E2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1CECC0CC6098929030C93D38910A37E4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_355796080221874A700D8249D6E0A304" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3B9DC086FE1CFE5DCD9734AF933B378A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F5AC6CEBF440E9F6F83481FF61AB884F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_799DE40D37798F1E4476A7CBDF282D1F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EE68F7A03EAFA78C41DADA98F51FD114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F1F0B265918B5463A1EBED96C190C38E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_446C9E4FE0A25CE2DFDD92CC03271314" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_146070CBADE53AC54B34B4B587B4C0D5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1D0BF5C88B2AD501EBD3811A9DF54970" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4A481B8AE348191C9E5343DBDAADD142" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4FBF49FC0C81EBB2568861BC1E029FD1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BDE23F8885AA229AB7F8BBBAD762B9F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_99E69CEF87193EDC44645D396FC75FED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_40054CE0A819D4AEF128FBA7A9866CF4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_73D903BF5D6F2AFD13CCB9F032748789" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_45FF9116D5ECE7C5CE1CB9FA016578EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_36F278791B84D5F4FDB6A87F85D69260" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_51B42859AA3880778ED2ECF7432DCC41" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5744BE703D4FC2DA54FF8308CDF1F9AB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_141999BCA64D592F93F389316B0EECCD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_20A98ED50A42C1D4CCDC5730AEDCF631" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ADB32928DF6804264182F0663736A9D0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DD63E4E13211B1E0227A9DCB600816D8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_087D631D0A323F43806A7C9975DEC875" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C5D661607128ACA864FD26CD4DBFDE0B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CF06A5B97926046EAA180163D67BFC8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_72D168A4842EAC9306A038E7D277B357" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_177E6DBC66C7EC973109925FB76F0AD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_27001287E89A65EA472E8C68410912F2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_763D47C7EB44810D6199E3315BC543EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1E67156A953494C6DD379BF2448618DF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CAA83D70E80C09C89E42A34FA8F23665" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5569339E8780E037B2AAC9ACD6564BFF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_341668A85CF9608E002797E97C05C4C0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EC75C57176E02971B7C73D8CC15CDF62" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_34F116BE2B76CBC2D448A7B9075C55C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_04BC2107644AB3257DDD15248220E634" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0F5E177FC62202099EA99639175075CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4F1279BD2527D049EE15B30D58FDF82B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D0EA19A1185228EE443060E46B4854A1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_53E5B29B62A3C421664E5570FA590C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_27115AEA57D5E273CA2FE639228C651A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_76C124487B58F9503C60B5679A43F43E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F0E9F9E594A13BD590CDE51334EF9783" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_02EAC78DFEFD70AB7D245A9594F422CF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BA2F676298C6340C151391971185621C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_551F26449E12B56F24758197729250EA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CA055D3544F418AB3194C3660CC0D5B8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_296E3A55A6CC64F4893533E40ECB5265" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_221A1C67DBF959DC0B271A92F7EC07AE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_99F67A23E661386DE5D66283A9E02715" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_416CAF7E02A6E834D9DCAB6E2433BA99" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D32504F64F9A2A6E38B71B8EB76D9394" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_869845581A9866B44DBED568C68F8D20" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7F619FE6A380D79E80E85D6E6822F82A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C3ABC9BEC29BBE1E3114959C26FD79C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EBC4DB34C82DE60DD7335E5ED11A521A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_04CF9F50AFCFD75A7E6088F3621CA4ED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_774F423D0C033C8CEF33B1307E08D89F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0676D83FBB947F373451B96CB8BC6BEA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B3E598F142F01A4265674BEC8B9596AD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5AF60A8FE8E5CE18A62870618E1A6464" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B3FD4BD0A1EFD06811A00CFD1B94688A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D47BA0FE8D9274AEE294B05893719049" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_49DE96DCE27AC1C177BE32450A904C51" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3BB4C815C80263264F0835B05D6C29B5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_007771D280B53DD6A126193BB7E17933" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4774115E9200F030081FCBB70040F2EF" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5CA4547DABFA0694032007B9BB0EA244" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_79CF7E19F6722548D5DDDEF00B225C2A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_1114F1AB6BA7BDB8929C7A352BD69CD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_12D172BCFA45B1B569DD24E2B9266F52" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_015E2B0847818306238823A2D48C5681" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_89C48B847A1660FF5443EE1F45B5BE4F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_EB3617603EE8356A34D97EADA49C20F1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8BDBFBB346DCFA8196620AC61984564B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_763E5255FF317196BB954450CD929A96" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C0D187E15C56C5721A06E00FD95FBFA2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DFB70ADFBF7091B8D6D0D3AF054894F6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A51E7D6EB2814770BABB461429AA4198" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F5E3E1B2654E985CD59A3EE1AE9AE176" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6E4A4E270D5DA5A9505105045B8026AC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_95E3FB69DDF82C9CA9B76C8DE419C114" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D4FF9DF0E48D393F409D1DD6A4B0DE2F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_55E8471B66C724D29B85EA1A89C512BC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F2715534C3BAC0F6D865207A99862C81" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5DFBB58F1460C9FB8F9C0FD754DCC774" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_641C6AFC007C27603A5AC9A976685211" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_89BF85CE8FF57A6CF348C17A9E4A4B46" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9348F936EBBAFECC1F3A562B55AD9844" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3FF150BC21C6D3F7A800F9E0854357B9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A00B47B1ADF412A18F67F733DA104828" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_84E1AD60D6C082AD2ED7EC0F1E25E3CB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2345E89518F0D8985C692D19EF1E808A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C1C84843BBAFF08D46E52EA85113A24F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_ACEDB7776268EF0FD32AB901AF362B9A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_308CF6B8D3BD70CE5E6D33225674D157" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9594709128A3A0B38E40304183D5B6F9" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_340864DD72C415E0C492B714301E79A7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D3271EFA737471D699DAC74AEDDE57A8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D639A6BCBF265514B88B8DB27A97653D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_3885B3B7BC374F927C08B566E62E8291" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_42BBCEC9AE1CBFE3E58A13542692B9CD" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B3FCACBB298A470D684D809ED0B8D99A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D4FB3F38EF266C37A7BEC367A523F329" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6D42D14D63106DCB72EB99ACC1F04A15" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B5EB4F25C305A58F1CAA2F30A1C745CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8A23A2887291234BEFC9D9493F11E76D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_08B0003B6C275CCE4F50F88E57B7A578" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8CE68BD35A0A1F65AD3586ECF7C38930" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_06AA7F297884188EE0AA5810360FC763" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2206214B43115913654388E9CFE55541" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_035F3502AE28D7401694849196DDA416" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BD6AEFE74E6F9E7630CDB9CFB4B8FED2" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A82C0ADF725E3339634EAACD8A9BF860" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8E1DD761B20F3ECDF9A230E8F31A2155" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_CE47C0843684401EFAE3BF68CB6A84D1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_780831B78BA2D1CBAB229FBD6E8B951A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D237FD453993A62AA805FDFAFC4E91B3" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_7B7229CE771E23BB43496BDC789919ED" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_D1D460AB4EBE598849BAB05241AFF256" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_55900C9611A2611D3971BBB8926ECB47" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_03A0EDF87510925D23A589B9F7F99307" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_22E597B5B6FB0277AA111379F71C65B7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_9E48304B1DC71476548406FCF4AA74CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_238010302C112A7D7CFBD7B200669489" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8BCA62F0EAA5C7203EE1CFD06D5ABE51" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FEB6F10A91EB54E3CB85A7A1A46CF0CA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_778ED547516ECB148AF8A5918760B7B5" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B382C2A98A117987BC221E529A3A207F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_DFCBFE49A95F46FD413BC9EC5A5A2FFE" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FF0FE61B726340E7A67DCF29BF4570D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_94E37BB24B8B221A425EA0F4CE28CCB1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6E5A64AE79989CD2327639F4521E8019" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_19A373CB2F62FEC5606DD9E5BBD06BD8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F2DFA45AEBB8B70591BD9DA9079DD8EC" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_6FF56102C49E8442B5A49DDAF32C4F26" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F2A935E7EE034BBF28A56C8F5A5608B7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_BD86B01616A9B4D242F39070CA850CC8" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_0A861B352BC31F8043445D772FF57CB6" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_A6B4C8C75BC8EF0AEDC4CCFDDBEBF52E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_34A1F158D4450516C7110A0FE717FAC0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_2527A23593D9DECA7626904A842B3A4C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5FBA4B475C968940926D63A4378CAA79" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5D53059D869C59B0C586793BCD0468AA" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F045042B5F25F5B5FF4D733E2635DC51" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_8C6957C5EDA3BEBDF613423CE0F06854" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_69B5AB49EAAC31D626DC68C7A213E382" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C7CC6677DEE9BA97FB8629B55CD370C1" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F2A53899707A35DE976FB85A2B61D8F4" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5A1A26F550D51743C07091970252426F" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_476DF29CACAAD7A76178704602BE2EC0" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_5F85205E90CF31B641B997739F28267C" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_AE2D6AEC41AB77BDB4985F4B6AF94F7B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C8BCC7B38EA0049691EEF7FD710D8E49" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4D677EC3914DF64AFD8292783FAF7ADB" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_578DD70008DD00F28E6D4544E03BC1E7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_F367FD1306372EFEAD3219FE6D30398B" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4047E57A711AF21B1FB64D2B1308EA8A" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_FE65F691A8229B618E6EA507F54C7373" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_C8D2BEF70FF5A41C86DA141D60F8841E" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_4270279B39D1A1F2E4A38BE6345446A7" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_B6E8AA80435831938791DA6EB44A5B6D" - "MsmSig" = "8:_UNDEFINED" - } - "Entry" - { - "MsmKey" = "8:_UNDEFINED" - "OwnerKey" = "8:_41ACD1721ED9213638A12AAF4CF016D4" - "MsmSig" = "8:_UNDEFINED" - } - } - "Configurations" - { - "Debug" - { - "DisplayName" = "8:Debug" - "IsDebugOnly" = "11:TRUE" - "IsReleaseOnly" = "11:FALSE" - "OutputFilename" = "8:Debug\\WinNUT-Setup.msi" - "PackageFilesAs" = "3:1" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:2" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.5.2" - { - "Name" = "8:Microsoft .NET Framework 4.5.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.5.2" - } - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" - { - "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.7.2" - } - } - } - } - "Release" - { - "DisplayName" = "8:Release" - "IsDebugOnly" = "11:FALSE" - "IsReleaseOnly" = "11:TRUE" - "OutputFilename" = "8:Release\\WinNUT-Setup.msi" - "PackageFilesAs" = "3:2" - "PackageFileSize" = "3:-2147483648" - "CabType" = "3:1" - "Compression" = "3:3" - "SignOutput" = "11:FALSE" - "CertificateFile" = "8:" - "PrivateKeyFile" = "8:" - "TimeStampServer" = "8:" - "InstallerBootstrapper" = "3:2" - "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" - { - "Enabled" = "11:TRUE" - "PromptEnabled" = "11:TRUE" - "PrerequisitesLocation" = "2:1" - "Url" = "8:" - "ComponentsUrl" = "8:" - "Items" - { - "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" - { - "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" - "ProductCode" = "8:.NETFramework,Version=v4.7.2" - } - } - } - } - } - "Deployable" - { - "CustomAction" - { - } - "DefaultFeature" - { - "Name" = "8:DefaultFeature" - "Title" = "8:" - "Description" = "8:" - } - "ExternalPersistence" - { - "LaunchCondition" - { - "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_D7F8EF5857D24C70A0403E6DE12801A1" - { - "Name" = "8:.NET Framework" - "Message" = "8:[VSDNETMSG]" - "FrameworkVersion" = "8:.NETFramework,Version=v4.8" - "AllowLaterVersions" = "11:FALSE" - "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262" - } - } - } - "File" - { - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_007771D280B53DD6A126193BB7E17933" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_007771D280B53DD6A126193BB7E17933" - { - "Name" = "8:System.Threading.Tasks.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Tasks.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_015E2B0847818306238823A2D48C5681" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Security, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_015E2B0847818306238823A2D48C5681" - { - "Name" = "8:System.ServiceModel.Security.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Security.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_02EAC78DFEFD70AB7D245A9594F422CF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Sms.LegacySmsApiContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_02EAC78DFEFD70AB7D245A9594F422CF" - { - "Name" = "8:Windows.Devices.Sms.LegacySmsApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Sms.LegacySmsApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_035F3502AE28D7401694849196DDA416" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_035F3502AE28D7401694849196DDA416" - { - "Name" = "8:System.Net.Requests.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Requests.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_03A0EDF87510925D23A589B9F7F99307" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_03A0EDF87510925D23A589B9F7F99307" - { - "Name" = "8:System.Linq.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04BC2107644AB3257DDD15248220E634" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Phone.StartScreen.DualSimTileContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_04BC2107644AB3257DDD15248220E634" - { - "Name" = "8:Windows.Phone.StartScreen.DualSimTileContract.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Phone.StartScreen.DualSimTileContract.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_04CF9F50AFCFD75A7E6088F3621CA4ED" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_04CF9F50AFCFD75A7E6088F3621CA4ED" - { - "Name" = "8:System.Xml.XPath.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XPath.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0676D83FBB947F373451B96CB8BC6BEA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlDocument, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_0676D83FBB947F373451B96CB8BC6BEA" - { - "Name" = "8:System.Xml.XmlDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XmlDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_06AA7F297884188EE0AA5810360FC763" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Sockets, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_06AA7F297884188EE0AA5810360FC763" - { - "Name" = "8:System.Net.Sockets.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Sockets.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_087D631D0A323F43806A7C9975DEC875" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract, Version=5.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_087D631D0A323F43806A7C9975DEC875" - { - "Name" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.CallsPhoneContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_08B0003B6C275CCE4F50F88E57B7A578" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets.Client, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_08B0003B6C275CCE4F50F88E57B7A578" - { - "Name" = "8:System.Net.WebSockets.Client.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebSockets.Client.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A325B8139084CA78A0244CAC82F2853" - { - "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.exe.config" - "TargetName" = "8:WinNUT-Client.exe.config" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0A861B352BC31F8043445D772FF57CB6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tools, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_0A861B352BC31F8043445D772FF57CB6" - { - "Name" = "8:System.Diagnostics.Tools.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Tools.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BF705C375232EEC838C4D253AEF9574" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_0BF705C375232EEC838C4D253AEF9574" - { - "Name" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.SystemManufacturers.SystemManufacturersContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0F5E177FC62202099EA99639175075CA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Phone.PhoneContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_0F5E177FC62202099EA99639175075CA" - { - "Name" = "8:Windows.Phone.PhoneContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Phone.PhoneContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_10AC006F21D6E7FCF876FA9023859F08" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_10AC006F21D6E7FCF876FA9023859F08" - { - "Name" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Xaml.Core.Direct.XamlDirectContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1114F1AB6BA7BDB8929C7A352BD69CD8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding.Extensions, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_1114F1AB6BA7BDB8929C7A352BD69CD8" - { - "Name" = "8:System.Text.Encoding.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.Encoding.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_12D172BCFA45B1B569DD24E2B9266F52" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_12D172BCFA45B1B569DD24E2B9266F52" - { - "Name" = "8:System.Text.Encoding.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.Encoding.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_141999BCA64D592F93F389316B0EECCD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_141999BCA64D592F93F389316B0EECCD" - { - "Name" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Preview.Notes.PreviewNotesContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_146070CBADE53AC54B34B4B587B4C0D5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.Preview.GamesEnumerationContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_146070CBADE53AC54B34B4B587B4C0D5" - { - "Name" = "8:Windows.Gaming.Preview.GamesEnumerationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.Preview.GamesEnumerationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_177E6DBC66C7EC973109925FB76F0AD8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_177E6DBC66C7EC973109925FB76F0AD8" - { - "Name" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ActivationCameraSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_19385C4691E649139966B93BFCB76418" - { - "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.exe.manifest" - "TargetName" = "8:WinNUT-Client.exe.manifest" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_19A373CB2F62FEC5606DD9E5BBD06BD8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_19A373CB2F62FEC5606DD9E5BBD06BD8" - { - "Name" = "8:System.Globalization.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1CECC0CC6098929030C93D38910A37E4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.AppRecording.AppRecordingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1CECC0CC6098929030C93D38910A37E4" - { - "Name" = "8:Windows.Media.AppRecording.AppRecordingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.AppRecording.AppRecordingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1D0BF5C88B2AD501EBD3811A9DF54970" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.Input.GamingInputPreviewContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1D0BF5C88B2AD501EBD3811A9DF54970" - { - "Name" = "8:Windows.Gaming.Input.GamingInputPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.Input.GamingInputPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1DC60DD2329B95D486A3E55969C97D7D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1DC60DD2329B95D486A3E55969C97D7D" - { - "Name" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.ViewManagement.ViewManagementViewScalingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1E67156A953494C6DD379BF2448618DF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ValueTuple, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" - "ScatterAssemblies" - { - "_1E67156A953494C6DD379BF2448618DF" - { - "Name" = "8:System.ValueTuple.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ValueTuple.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_1EC0F6144DC6F3F5E736D3ADF7F564FA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Maps.LocalSearchContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_1EC0F6144DC6F3F5E736D3ADF7F564FA" - { - "Name" = "8:Windows.Services.Maps.LocalSearchContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Maps.LocalSearchContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2021E1982D884B6393B46EBA1914BC5E" - { - "SourcePath" = "8:..\\images\\Jpg\\Setup_Banner.jpg" - "TargetName" = "8:Setup_Banner.jpg" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:TRUE" - "Hidden" = "11:TRUE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_20A98ED50A42C1D4CCDC5730AEDCF631" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_20A98ED50A42C1D4CCDC5730AEDCF631" - { - "Name" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Preview.InkWorkspace.PreviewInkWorkspaceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2206214B43115913654388E9CFE55541" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Security, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2206214B43115913654388E9CFE55541" - { - "Name" = "8:System.Net.Security.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Security.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_221A1C67DBF959DC0B271A92F7EC07AE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_221A1C67DBF959DC0B271A92F7EC07AE" - { - "Name" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Printers.Extensions.ExtensionsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_22E597B5B6FB0277AA111379F71C65B7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.UnmanagedMemoryStream, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_22E597B5B6FB0277AA111379F71C65B7" - { - "Name" = "8:System.IO.UnmanagedMemoryStream.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.UnmanagedMemoryStream.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2345E89518F0D8985C692D19EF1E808A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Handles, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2345E89518F0D8985C692D19EF1E808A" - { - "Name" = "8:System.Runtime.Handles.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Handles.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_238010302C112A7D7CFBD7B200669489" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.MemoryMappedFiles, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_238010302C112A7D7CFBD7B200669489" - { - "Name" = "8:System.IO.MemoryMappedFiles.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.MemoryMappedFiles.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_2527A23593D9DECA7626904A842B3A4C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Process, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_2527A23593D9DECA7626904A842B3A4C" - { - "Name" = "8:System.Diagnostics.Process.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Process.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27001287E89A65EA472E8C68410912F2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_27001287E89A65EA472E8C68410912F2" - { - "Name" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.AI.MachineLearning.Preview.MachineLearningPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_27115AEA57D5E273CA2FE639228C651A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Devices.CallControlContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_27115AEA57D5E273CA2FE639228C651A" - { - "Name" = "8:Windows.Media.Devices.CallControlContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Devices.CallControlContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_296E3A55A6CC64F4893533E40ECB5265" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_296E3A55A6CC64F4893533E40ECB5265" - { - "Name" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.WebUISearchActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_308CF6B8D3BD70CE5E6D33225674D157" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.CompilerServices.VisualC, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_308CF6B8D3BD70CE5E6D33225674D157" - { - "Name" = "8:System.Runtime.CompilerServices.VisualC.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.CompilerServices.VisualC.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33BCB1EF059B4E9B87FA7435A8F2499C" - { - "SourcePath" = "8:..\\images\\Ico\\WinNut.ico" - "TargetName" = "8:WinNut.ico" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:TRUE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_340864DD72C415E0C492B714301E79A7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.ResourceManager, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_340864DD72C415E0C492B714301E79A7" - { - "Name" = "8:System.Resources.ResourceManager.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.ResourceManager.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_341668A85CF9608E002797E97C05C4C0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_341668A85CF9608E002797E97C05C4C0" - { - "Name" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Core.AnimationMetrics.AnimationMetricsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_34A1F158D4450516C7110A0FE717FAC0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.StackTrace, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_34A1F158D4450516C7110A0FE717FAC0" - { - "Name" = "8:System.Diagnostics.StackTrace.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.StackTrace.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_34F116BE2B76CBC2D448A7B9075C55C1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_34F116BE2B76CBC2D448A7B9075C55C1" - { - "Name" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.ExchangeActiveSyncProvisioning.EasContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_355796080221874A700D8249D6E0A304" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_355796080221874A700D8249D6E0A304" - { - "Name" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.AppBroadcasting.AppBroadcastingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_36F278791B84D5F4FDB6A87F85D69260" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Search.SearchContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_36F278791B84D5F4FDB6A87F85D69260" - { - "Name" = "8:Windows.ApplicationModel.Search.SearchContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Search.SearchContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_380EAFB68E1A4974624A2995C6303403" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.TargetedContent.TargetedContentContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_380EAFB68E1A4974624A2995C6303403" - { - "Name" = "8:Windows.Services.TargetedContent.TargetedContentContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.TargetedContent.TargetedContentContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3885B3B7BC374F927C08B566E62E8291" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Extensions, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3885B3B7BC374F927C08B566E62E8291" - { - "Name" = "8:System.Reflection.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3B9DC086FE1CFE5DCD9734AF933B378A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_3B9DC086FE1CFE5DCD9734AF933B378A" - { - "Name" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Management.Deployment.Preview.DeploymentPreviewContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3BB4C815C80263264F0835B05D6C29B5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Tasks.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3BB4C815C80263264F0835B05D6C29B5" - { - "Name" = "8:System.Threading.Tasks.Parallel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Tasks.Parallel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3C02EAEA0AD8AD7328CC2692CD4C19D1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.AI.MachineLearning.MachineLearningContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_3C02EAEA0AD8AD7328CC2692CD4C19D1" - { - "Name" = "8:Windows.AI.MachineLearning.MachineLearningContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.AI.MachineLearning.MachineLearningContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F430083DA6440B2B12DECC4BB791883" - { - "SourcePath" = "8:..\\..\\changelog.md" - "TargetName" = "8:changelog.md" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:FALSE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_3FF150BC21C6D3F7A800F9E0854357B9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_3FF150BC21C6D3F7A800F9E0854357B9" - { - "Name" = "8:System.Runtime.InteropServices.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_40054CE0A819D4AEF128FBA7A9866CF4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.DevicesLowLevelContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_40054CE0A819D4AEF128FBA7A9866CF4" - { - "Name" = "8:Windows.Devices.DevicesLowLevelContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.DevicesLowLevelContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4047E57A711AF21B1FB64D2B1308EA8A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:netstandard, Version=2.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51" - "ScatterAssemblies" - { - "_4047E57A711AF21B1FB64D2B1308EA8A" - { - "Name" = "8:netstandard.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:netstandard.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_416CAF7E02A6E834D9DCAB6E2433BA99" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.Connectivity.WwanContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_416CAF7E02A6E834D9DCAB6E2433BA99" - { - "Name" = "8:Windows.Networking.Connectivity.WwanContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.Connectivity.WwanContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41ACD1721ED9213638A12AAF4CF016D4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Win32.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_41ACD1721ED9213638A12AAF4CF016D4" - { - "Name" = "8:Microsoft.Win32.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Microsoft.Win32.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4270279B39D1A1F2E4A38BE6345446A7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_4270279B39D1A1F2E4A38BE6345446A7" - { - "Name" = "8:System.IO.Compression.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_42BBCEC9AE1CBFE3E58A13542692B9CD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.Lightweight, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_42BBCEC9AE1CBFE3E58A13542692B9CD" - { - "Name" = "8:System.Reflection.Emit.Lightweight.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.Lightweight.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_446C9E4FE0A25CE2DFDD92CC03271314" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.UI.GameChatOverlayContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_446C9E4FE0A25CE2DFDD92CC03271314" - { - "Name" = "8:Windows.Gaming.UI.GameChatOverlayContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.UI.GameChatOverlayContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_45FF9116D5ECE7C5CE1CB9FA016578EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_45FF9116D5ECE7C5CE1CB9FA016578EF" - { - "Name" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.SocialInfo.SocialInfoContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_476DF29CACAAD7A76178704602BE2EC0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_476DF29CACAAD7A76178704602BE2EC0" - { - "Name" = "8:System.ComponentModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4774115E9200F030081FCBB70040F2EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Overlapped, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_4774115E9200F030081FCBB70040F2EF" - { - "Name" = "8:System.Threading.Overlapped.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Overlapped.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_49DE96DCE27AC1C177BE32450A904C51" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Thread, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_49DE96DCE27AC1C177BE32450A904C51" - { - "Name" = "8:System.Threading.Thread.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Thread.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4A481B8AE348191C9E5343DBDAADD142" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4A481B8AE348191C9E5343DBDAADD142" - { - "Name" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Embedded.DeviceLockdown.DeviceLockdownContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4D677EC3914DF64AFD8292783FAF7ADB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_4D677EC3914DF64AFD8292783FAF7ADB" - { - "Name" = "8:System.Collections.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4F1279BD2527D049EE15B30D58FDF82B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4F1279BD2527D049EE15B30D58FDF82B" - { - "Name" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.NetworkOperators.LegacyNetworkOperatorsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_4FBF49FC0C81EBB2568861BC1E029FD1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_4FBF49FC0C81EBB2568861BC1E029FD1" - { - "Name" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.SmartCards.SmartCardBackgroundTriggerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51B42859AA3880778ED2ECF7432DCC41" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_51B42859AA3880778ED2ECF7432DCC41" - { - "Name" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Search.Core.SearchCoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_51F85920A3B504154EB08056B3AD9979" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileSharedModeContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_51F85920A3B504154EB08056B3AD9979" - { - "Name" = "8:Windows.System.Profile.ProfileSharedModeContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileSharedModeContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_53E5B29B62A3C421664E5570FA590C81" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.MediaControlContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_53E5B29B62A3C421664E5570FA590C81" - { - "Name" = "8:Windows.Media.MediaControlContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.MediaControlContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_545FCC1D9F70CE4A1E2F3C929A7E62FC" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Storage.Provider.CloudFilesContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_545FCC1D9F70CE4A1E2F3C929A7E62FC" - { - "Name" = "8:Windows.Storage.Provider.CloudFilesContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Storage.Provider.CloudFilesContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_551F26449E12B56F24758197729250EA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Portable.PortableDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_551F26449E12B56F24758197729250EA" - { - "Name" = "8:Windows.Devices.Portable.PortableDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Portable.PortableDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5569339E8780E037B2AAC9ACD6564BFF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5569339E8780E037B2AAC9ACD6564BFF" - { - "Name" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.WebUI.Core.WebUICommandBarContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55900C9611A2611D3971BBB8926ECB47" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_55900C9611A2611D3971BBB8926ECB47" - { - "Name" = "8:System.Linq.Expressions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Expressions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_55E8471B66C724D29B85EA1A89C512BC" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Claims, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_55E8471B66C724D29B85EA1A89C512BC" - { - "Name" = "8:System.Security.Claims.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Claims.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5744BE703D4FC2DA54FF8308CDF1F9AB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5744BE703D4FC2DA54FF8308CDF1F9AB" - { - "Name" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Resources.Management.ResourceIndexerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_578DD70008DD00F28E6D4544E03BC1E7" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_578DD70008DD00F28E6D4544E03BC1E7" - { - "Name" = "8:System.Collections.Concurrent.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.Concurrent.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_581DA186FDCE0FFFC2D735C83A918436" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_581DA186FDCE0FFFC2D735C83A918436" - { - "Name" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.Sockets.ControlChannelTriggerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5A1A26F550D51743C07091970252426F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.EventBasedAsync, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5A1A26F550D51743C07091970252426F" - { - "Name" = "8:System.ComponentModel.EventBasedAsync.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.EventBasedAsync.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5AF60A8FE8E5CE18A62870618E1A6464" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.ReaderWriter, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5AF60A8FE8E5CE18A62870618E1A6464" - { - "Name" = "8:System.Xml.ReaderWriter.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.ReaderWriter.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5C99D3FB8E4CBB81209F637E049611DF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:WinNUT-Client_Common, Version=2.2.8338.35532, Culture=neutral, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_5C99D3FB8E4CBB81209F637E049611DF" - { - "Name" = "8:WinNUT-Client_Common.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:WinNUT-Client_Common.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5CA4547DABFA0694032007B9BB0EA244" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5CA4547DABFA0694032007B9BB0EA244" - { - "Name" = "8:System.Threading.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5D53059D869C59B0C586793BCD0468AA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Debug, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5D53059D869C59B0C586793BCD0468AA" - { - "Name" = "8:System.Diagnostics.Debug.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Debug.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5DFBB58F1460C9FB8F9C0FD754DCC774" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5DFBB58F1460C9FB8F9C0FD754DCC774" - { - "Name" = "8:System.Runtime.Serialization.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5F85205E90CF31B641B997739F28267C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Annotations, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5F85205E90CF31B641B997739F28267C" - { - "Name" = "8:System.ComponentModel.Annotations.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.Annotations.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5FA6D02721E2E94A4093FD956487D6E2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Core.CoreWindowDialogsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_5FA6D02721E2E94A4093FD956487D6E2" - { - "Name" = "8:Windows.UI.Core.CoreWindowDialogsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Core.CoreWindowDialogsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_5FBA4B475C968940926D63A4378CAA79" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.FileVersionInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_5FBA4B475C968940926D63A4378CAA79" - { - "Name" = "8:System.Diagnostics.FileVersionInfo.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.FileVersionInfo.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_617369C02C0140C70FB995D0ABBF21E3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Shell.SecurityAppManagerContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_617369C02C0140C70FB995D0ABBF21E3" - { - "Name" = "8:Windows.UI.Shell.SecurityAppManagerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Shell.SecurityAppManagerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6270F7617E1F5E3A7F9BFD82EAEB7925" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6270F7617E1F5E3A7F9BFD82EAEB7925" - { - "Name" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Perception.Automation.Core.PerceptionAutomationCoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_63C8A279ECA1961108679E2A93D5C62B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime.UI.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_63C8A279ECA1961108679E2A93D5C62B" - { - "Name" = "8:System.Runtime.WindowsRuntime.UI.Xaml.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.UI.Xaml.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_641C6AFC007C27603A5AC9A976685211" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Json, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_641C6AFC007C27603A5AC9A976685211" - { - "Name" = "8:System.Runtime.Serialization.Json.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Json.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_69B5AB49EAAC31D626DC68C7A213E382" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Console, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_69B5AB49EAAC31D626DC68C7A213E382" - { - "Name" = "8:System.Console.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Console.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6A7C09B4B4815C7BDB39B5BD18A00AC4" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Foundation.UniversalApiContract, Version=10.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6A7C09B4B4815C7BDB39B5BD18A00AC4" - { - "Name" = "8:Windows.Foundation.UniversalApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Foundation.UniversalApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D2CD6EE7ECD814A9D093BF6CB700CF6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Store.StoreContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6D2CD6EE7ECD814A9D093BF6CB700CF6" - { - "Name" = "8:Windows.Services.Store.StoreContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Store.StoreContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6D42D14D63106DCB72EB99ACC1F04A15" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6D42D14D63106DCB72EB99ACC1F04A15" - { - "Name" = "8:System.Reflection.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E4A4E270D5DA5A9505105045B8026AC" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Encoding, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6E4A4E270D5DA5A9505105045B8026AC" - { - "Name" = "8:System.Security.Cryptography.Encoding.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Encoding.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6E5A64AE79989CD2327639F4521E8019" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6E5A64AE79989CD2327639F4521E8019" - { - "Name" = "8:System.Globalization.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Protection.ProtectionRenewalContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_6FA0C5EADBFE8BD9B0CA3D3E7EFE662A" - { - "Name" = "8:Windows.Media.Protection.ProtectionRenewalContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Protection.ProtectionRenewalContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FF0FE61B726340E7A67DCF29BF4570D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6FF0FE61B726340E7A67DCF29BF4570D" - { - "Name" = "8:System.IO.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_6FF56102C49E8442B5A49DDAF32C4F26" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Dynamic.Runtime, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_6FF56102C49E8442B5A49DDAF32C4F26" - { - "Name" = "8:System.Dynamic.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Dynamic.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_72D168A4842EAC9306A038E7D277B357" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_72D168A4842EAC9306A038E7D277B357" - { - "Name" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ContactActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_73D903BF5D6F2AFD13CCB9F032748789" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.StartupTaskContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_73D903BF5D6F2AFD13CCB9F032748789" - { - "Name" = "8:Windows.ApplicationModel.StartupTaskContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.StartupTaskContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_761987FA7717402DB92207F177F3DB49" - { - "SourcePath" = "8:..\\..\\COPYING" - "TargetName" = "8:COPYING" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_763D47C7EB44810D6199E3315BC543EF" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Microsoft.Toolkit.Uwp.Notifications, Version=7.1.0.0, Culture=neutral, PublicKeyToken=4aff67a105548ee2, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_763D47C7EB44810D6199E3315BC543EF" - { - "Name" = "8:Microsoft.Toolkit.Uwp.Notifications.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Microsoft.Toolkit.Uwp.Notifications.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_763E5255FF317196BB954450CD929A96" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Duplex, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_763E5255FF317196BB954450CD929A96" - { - "Name" = "8:System.ServiceModel.Duplex.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Duplex.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7643B2E01E55816C8BA2265FF9E9B786" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:AGauge, Version=2.1.8338.35532, Culture=neutral, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7643B2E01E55816C8BA2265FF9E9B786" - { - "Name" = "8:AGauge.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:AGauge.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_76C124487B58F9503C60B5679A43F43E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.CameraCaptureUIContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_76C124487B58F9503C60B5679A43F43E" - { - "Name" = "8:Windows.Media.Capture.CameraCaptureUIContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.CameraCaptureUIContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_774F423D0C033C8CEF33B1307E08D89F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XmlSerializer, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_774F423D0C033C8CEF33B1307E08D89F" - { - "Name" = "8:System.Xml.XmlSerializer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XmlSerializer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_778ED547516ECB148AF8A5918760B7B5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Primitives, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_778ED547516ECB148AF8A5918760B7B5" - { - "Name" = "8:System.IO.FileSystem.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_780831B78BA2D1CBAB229FBD6E8B951A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.Rtc, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_780831B78BA2D1CBAB229FBD6E8B951A" - { - "Name" = "8:System.Net.Http.Rtc.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.Rtc.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_799DE40D37798F1E4476A7CBDF282D1F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_799DE40D37798F1E4476A7CBDF282D1F" - { - "Name" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Globalization.GlobalizationJapanesePhoneticAnalyzerContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79CF7E19F6722548D5DDDEF00B225C2A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Text.RegularExpressions, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_79CF7E19F6722548D5DDDEF00B225C2A" - { - "Name" = "8:System.Text.RegularExpressions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Text.RegularExpressions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_79EAA78F0054FD01219DF518DC18DBBB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.Xaml.Hosting.HostingContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_79EAA78F0054FD01219DF518DC18DBBB" - { - "Name" = "8:Windows.UI.Xaml.Hosting.HostingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.Xaml.Hosting.HostingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7B7229CE771E23BB43496BDC789919ED" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_7B7229CE771E23BB43496BDC789919ED" - { - "Name" = "8:System.Linq.Queryable.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Queryable.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E781465BFAC4DC08591FE1EDE1E2D1F" - { - "SourcePath" = "8:..\\..\\README.md" - "TargetName" = "8:README.md" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7F619FE6A380D79E80E85D6E6822F82A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_7F619FE6A380D79E80E85D6E6822F82A" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_84E1AD60D6C082AD2ED7EC0F1E25E3CB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_84E1AD60D6C082AD2ED7EC0F1E25E3CB" - { - "Name" = "8:System.Runtime.InteropServices.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_85DCA92C1463DA1F61D485D7AB5394A8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_85DCA92C1463DA1F61D485D7AB5394A8" - { - "Name" = "8:Newtonsoft.Json.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Newtonsoft.Json.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_869845581A9866B44DBED568C68F8D20" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_869845581A9866B44DBED568C68F8D20" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_89BF85CE8FF57A6CF348C17A9E4A4B46" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Formatters, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_89BF85CE8FF57A6CF348C17A9E4A4B46" - { - "Name" = "8:System.Runtime.Serialization.Formatters.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Serialization.Formatters.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_89C48B847A1660FF5443EE1F45B5BE4F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Primitives, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_89C48B847A1660FF5443EE1F45B5BE4F" - { - "Name" = "8:System.ServiceModel.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8A23A2887291234BEFC9D9493F11E76D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebSockets, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8A23A2887291234BEFC9D9493F11E76D" - { - "Name" = "8:System.Net.WebSockets.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebSockets.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8BCA62F0EAA5C7203EE1CFD06D5ABE51" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.IsolatedStorage, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8BCA62F0EAA5C7203EE1CFD06D5ABE51" - { - "Name" = "8:System.IO.IsolatedStorage.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.IsolatedStorage.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8BDBFBB346DCFA8196620AC61984564B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.Http, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8BDBFBB346DCFA8196620AC61984564B" - { - "Name" = "8:System.ServiceModel.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8C6957C5EDA3BEBDF613423CE0F06854" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Data.Common, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8C6957C5EDA3BEBDF613423CE0F06854" - { - "Name" = "8:System.Data.Common.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Data.Common.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8CE68BD35A0A1F65AD3586ECF7C38930" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.WebHeaderCollection, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8CE68BD35A0A1F65AD3586ECF7C38930" - { - "Name" = "8:System.Net.WebHeaderCollection.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.WebHeaderCollection.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_8E1DD761B20F3ECDF9A230E8F31A2155" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_8E1DD761B20F3ECDF9A230E8F31A2155" - { - "Name" = "8:System.Net.NetworkInformation.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.NetworkInformation.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_929B73992E930343CA5B90A2038D04AB" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Numerics.Vectors, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_929B73992E930343CA5B90A2038D04AB" - { - "Name" = "8:System.Numerics.Vectors.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Numerics.Vectors.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9348F936EBBAFECC1F3A562B55AD9844" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Numerics, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9348F936EBBAFECC1F3A562B55AD9844" - { - "Name" = "8:System.Runtime.Numerics.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Numerics.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_938F6F28EAD3BD21F818EAD185A8E9B2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.Isolation.IsolatedWindowsEnvironmentContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_938F6F28EAD3BD21F818EAD185A8E9B2" - { - "Name" = "8:Windows.Security.Isolation.Isolatedwindowsenvironmentcontract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.Isolation.Isolatedwindowsenvironmentcontract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_94E37BB24B8B221A425EA0F4CE28CCB1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.ZipFile, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" - "ScatterAssemblies" - { - "_94E37BB24B8B221A425EA0F4CE28CCB1" - { - "Name" = "8:System.IO.Compression.ZipFile.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.ZipFile.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9594709128A3A0B38E40304183D5B6F9" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Writer, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9594709128A3A0B38E40304183D5B6F9" - { - "Name" = "8:System.Resources.Writer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.Writer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_95E3FB69DDF82C9CA9B76C8DE419C114" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Csp, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_95E3FB69DDF82C9CA9B76C8DE419C114" - { - "Name" = "8:System.Security.Cryptography.Csp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Csp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9669D935FA55FE8CBCD04CF9AB20AAAD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.UserProfile.UserProfileContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9669D935FA55FE8CBCD04CF9AB20AAAD" - { - "Name" = "8:Windows.System.UserProfile.UserProfileContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.UserProfile.UserProfileContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_98206E1950C01D377C5C613E88926BC8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract, Version=5.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_98206E1950C01D377C5C613E88926BC8" - { - "Name" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Security.EnterpriseData.EnterpriseDataContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99E69CEF87193EDC44645D396FC75FED" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Printers.PrintersContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_99E69CEF87193EDC44645D396FC75FED" - { - "Name" = "8:Windows.Devices.Printers.PrintersContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Printers.PrintersContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_99F67A23E661386DE5D66283A9E02715" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_99F67A23E661386DE5D66283A9E02715" - { - "Name" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.LockScreenCallContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9BCB17DE53042833A48B9D04BAB93886" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime, Version=4.0.14.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" - "ScatterAssemblies" - { - "_9BCB17DE53042833A48B9D04BAB93886" - { - "Name" = "8:System.Runtime.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9C64B81D4893F0C58728F8DC06800007" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileRetailInfoContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9C64B81D4893F0C58728F8DC06800007" - { - "Name" = "8:Windows.System.Profile.ProfileRetailInfoContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileRetailInfoContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9E48304B1DC71476548406FCF4AA74CA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.Pipes, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_9E48304B1DC71476548406FCF4AA74CA" - { - "Name" = "8:System.IO.Pipes.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Pipes.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_9F6DE8A084F82CF80095E944791B4989" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.GameBarContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_9F6DE8A084F82CF80095E944791B4989" - { - "Name" = "8:Windows.Media.Capture.GameBarContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.GameBarContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A00B47B1ADF412A18F67F733DA104828" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.InteropServices.RuntimeInformation, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A00B47B1ADF412A18F67F733DA104828" - { - "Name" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.InteropServices.RuntimeInformation.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A17B6478098A4E61AD676107545BBEAD" - { - "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.application" - "TargetName" = "8:WinNUT-Client.application" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A51E7D6EB2814770BABB461429AA4198" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.X509Certificates, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A51E7D6EB2814770BABB461429AA4198" - { - "Name" = "8:System.Security.Cryptography.X509Certificates.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.X509Certificates.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A6B4C8C75BC8EF0AEDC4CCFDDBEBF52E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TextWriterTraceListener, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A6B4C8C75BC8EF0AEDC4CCFDDBEBF52E" - { - "Name" = "8:System.Diagnostics.TextWriterTraceListener.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.TextWriterTraceListener.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A82C0ADF725E3339634EAACD8A9BF860" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Ping, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_A82C0ADF725E3339634EAACD8A9BF860" - { - "Name" = "8:System.Net.Ping.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Ping.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ACEDB7776268EF0FD32AB901AF362B9A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_ACEDB7776268EF0FD32AB901AF362B9A" - { - "Name" = "8:System.Runtime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADB32928DF6804264182F0663736A9D0" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.FullTrustAppContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ADB32928DF6804264182F0663736A9D0" - { - "Name" = "8:Windows.ApplicationModel.FullTrustAppContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.FullTrustAppContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ADFE9608A1B22DCB5B226EF06A49AE83" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.UserProfile.UserProfileLockScreenContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ADFE9608A1B22DCB5B226EF06A49AE83" - { - "Name" = "8:Windows.System.UserProfile.UserProfileLockScreenContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.UserProfile.UserProfileLockScreenContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_AE2D6AEC41AB77BDB4985F4B6AF94F7B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.Specialized, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_AE2D6AEC41AB77BDB4985F4B6AF94F7B" - { - "Name" = "8:System.Collections.Specialized.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.Specialized.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B382C2A98A117987BC221E529A3A207F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.DriveInfo, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B382C2A98A117987BC221E529A3A207F" - { - "Name" = "8:System.IO.FileSystem.DriveInfo.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.DriveInfo.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B3E598F142F01A4265674BEC8B9596AD" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XDocument, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B3E598F142F01A4265674BEC8B9596AD" - { - "Name" = "8:System.Xml.XDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B3FCACBB298A470D684D809ED0B8D99A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit.ILGeneration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B3FCACBB298A470D684D809ED0B8D99A" - { - "Name" = "8:System.Reflection.Emit.ILGeneration.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.ILGeneration.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B3FD4BD0A1EFD06811A00CFD1B94688A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.Timer, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B3FD4BD0A1EFD06811A00CFD1B94688A" - { - "Name" = "8:System.Threading.Timer.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.Timer.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B517F773042D077CB92011685C008C54" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Services.Maps.GuidanceContract, Version=3.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B517F773042D077CB92011685C008C54" - { - "Name" = "8:Windows.Services.Maps.GuidanceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Services.Maps.GuidanceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B5EB4F25C305A58F1CAA2F30A1C745CA" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_B5EB4F25C305A58F1CAA2F30A1C745CA" - { - "Name" = "8:System.ObjectModel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ObjectModel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B6D9EA4A6D09E22DA4A3D00A6C0F8998" - { - "Name" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Activation.ActivatedEventsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B6E8AA80435831938791DA6EB44A5B6D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Tracing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_B6E8AA80435831938791DA6EB44A5B6D" - { - "Name" = "8:System.Diagnostics.Tracing.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Tracing.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_B91E322AFFFF5BE0D1E6F1617FDEA80C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_B91E322AFFFF5BE0D1E6F1617FDEA80C" - { - "Name" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.CommunicationBlocking.CommunicationBlockingContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BA2F676298C6340C151391971185621C" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Scanners.ScannerDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_BA2F676298C6340C151391971185621C" - { - "Name" = "8:Windows.Devices.Scanners.ScannerDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Scanners.ScannerDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD6AEFE74E6F9E7630CDB9CFB4B8FED2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Primitives, Version=4.0.11.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_BD6AEFE74E6F9E7630CDB9CFB4B8FED2" - { - "Name" = "8:System.Net.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BD86B01616A9B4D242F39070CA850CC8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.TraceSource, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_BD86B01616A9B4D242F39070CA850CC8" - { - "Name" = "8:System.Diagnostics.TraceSource.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.TraceSource.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_BDE23F8885AA229AB7F8BBBAD762B9F2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract, Version=6.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_BDE23F8885AA229AB7F8BBBAD762B9F2" - { - "Name" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.SmartCards.SmartCardEmulatorContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C0D187E15C56C5721A06E00FD95FBFA2" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.SecureString, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C0D187E15C56C5721A06E00FD95FBFA2" - { - "Name" = "8:System.Security.SecureString.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.SecureString.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C1C84843BBAFF08D46E52EA85113A24F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Extensions, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C1C84843BBAFF08D46E52EA85113A24F" - { - "Name" = "8:System.Runtime.Extensions.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.Extensions.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C3ABC9BEC29BBE1E3114959C26FD79C1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C3ABC9BEC29BBE1E3114959C26FD79C1" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C5D661607128ACA864FD26CD4DBFDE0B" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_C5D661607128ACA864FD26CD4DBFDE0B" - { - "Name" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.Background.CallsBackgroundContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C7CC6677DEE9BA97FB8629B55CD370C1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.TypeConverter, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C7CC6677DEE9BA97FB8629B55CD370C1" - { - "Name" = "8:System.ComponentModel.TypeConverter.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ComponentModel.TypeConverter.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8BCC7B38EA0049691EEF7FD710D8E49" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Collections.NonGeneric, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_C8BCC7B38EA0049691EEF7FD710D8E49" - { - "Name" = "8:System.Collections.NonGeneric.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Collections.NonGeneric.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_C8D2BEF70FF5A41C86DA141D60F8841E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_C8D2BEF70FF5A41C86DA141D60F8841E" - { - "Name" = "8:System.IO.Compression.FileSystem.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.Compression.FileSystem.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CA055D3544F418AB3194C3660CC0D5B8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Wallet.WalletContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CA055D3544F418AB3194C3660CC0D5B8" - { - "Name" = "8:Windows.ApplicationModel.Wallet.WalletContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Wallet.WalletContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CAA83D70E80C09C89E42A34FA8F23665" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows, Version=255.255.255.255, Culture=neutral" - "ScatterAssemblies" - { - "_CAA83D70E80C09C89E42A34FA8F23665" - { - "Name" = "8:Windows.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CE47C0843684401EFAE3BF68CB6A84D1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Net.NameResolution, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_CE47C0843684401EFAE3BF68CB6A84D1" - { - "Name" = "8:System.Net.NameResolution.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.NameResolution.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Devices.Custom.CustomDeviceContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CEF0BD4A629B7E0FEAB50EBA269DE5AE" - { - "Name" = "8:Windows.Devices.Custom.CustomDeviceContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Devices.Custom.CustomDeviceContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_CF06A5B97926046EAA180163D67BFC8A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_CF06A5B97926046EAA180163D67BFC8A" - { - "Name" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Background.BackgroundAlarmApplicationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D0EA19A1185228EE443060E46B4854A1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Playlists.PlaylistsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_D0EA19A1185228EE443060E46B4854A1" - { - "Name" = "8:Windows.Media.Playlists.PlaylistsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Playlists.PlaylistsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D1D460AB4EBE598849BAB05241AFF256" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Linq.Parallel, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D1D460AB4EBE598849BAB05241AFF256" - { - "Name" = "8:System.Linq.Parallel.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Linq.Parallel.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D237FD453993A62AA805FDFAFC4E91B3" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http.WebRequest, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_D237FD453993A62AA805FDFAFC4E91B3" - { - "Name" = "8:System.Net.Http.WebRequest.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.WebRequest.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D32504F64F9A2A6E38B71B8EB76D9394" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Foundation.FoundationContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_D32504F64F9A2A6E38B71B8EB76D9394" - { - "Name" = "8:Windows.Foundation.FoundationContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Foundation.FoundationContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D3271EFA737471D699DAC74AEDDE57A8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Resources.Reader, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D3271EFA737471D699DAC74AEDDE57A8" - { - "Name" = "8:System.Resources.Reader.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Resources.Reader.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D47BA0FE8D9274AEE294B05893719049" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Threading.ThreadPool, Version=4.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D47BA0FE8D9274AEE294B05893719049" - { - "Name" = "8:System.Threading.ThreadPool.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Threading.ThreadPool.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D4FB3F38EF266C37A7BEC367A523F329" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D4FB3F38EF266C37A7BEC367A523F329" - { - "Name" = "8:System.Reflection.Emit.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Emit.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D4FF9DF0E48D393F409D1DD6A4B0DE2F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Algorithms, Version=4.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D4FF9DF0E48D393F409D1DD6A4B0DE2F" - { - "Name" = "8:System.Security.Cryptography.Algorithms.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Algorithms.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_D639A6BCBF265514B88B8DB27A97653D" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Reflection.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_D639A6BCBF265514B88B8DB27A97653D" - { - "Name" = "8:System.Reflection.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Reflection.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DB518775295CF964ADA748332DA9A3A5" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.SystemManagementContract, Version=7.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DB518775295CF964ADA748332DA9A3A5" - { - "Name" = "8:Windows.System.SystemManagementContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.SystemManagementContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DD63E4E13211B1E0227A9DCB600816D8" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.ApplicationModel.Calls.CallsVoipContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DD63E4E13211B1E0227A9DCB600816D8" - { - "Name" = "8:Windows.ApplicationModel.Calls.CallsVoipContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.ApplicationModel.Calls.CallsVoipContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DE469A5DFC115AF26DDBCF666237C250" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_DE469A5DFC115AF26DDBCF666237C250" - { - "Name" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Web.Http.Diagnostics.HttpDiagnosticsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DFB70ADFBF7091B8D6D0D3AF054894F6" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Principal, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DFB70ADFBF7091B8D6D0D3AF054894F6" - { - "Name" = "8:System.Security.Principal.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Principal.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_DFCBFE49A95F46FD413BC9EC5A5A2FFE" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_DFCBFE49A95F46FD413BC9EC5A5A2FFE" - { - "Name" = "8:System.IO.FileSystem.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1044D6323768A22D9870EB8FBFDD21E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E1044D6323768A22D9870EB8FBFDD21E" - { - "Name" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.XboxLive.XboxLiveSecureSocketsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E1BD53E405BF635C454697266E55B097" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppCaptureMetadataContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E1BD53E405BF635C454697266E55B097" - { - "Name" = "8:Windows.Media.Capture.AppCaptureMetadataContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppCaptureMetadataContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E6CAC81FA0DD7E67B3730F837AE59C9F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.System.Profile.ProfileHardwareTokenContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_E6CAC81FA0DD7E67B3730F837AE59C9F" - { - "Name" = "8:Windows.System.Profile.ProfileHardwareTokenContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.System.Profile.ProfileHardwareTokenContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_E8BB0E2A241C1023B684B55FEB5B745F" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Runtime.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_E8BB0E2A241C1023B684B55FEB5B745F" - { - "Name" = "8:System.Runtime.WindowsRuntime.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Runtime.WindowsRuntime.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EB3617603EE8356A34D97EADA49C20F1" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ServiceModel.NetTcp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_EB3617603EE8356A34D97EADA49C20F1" - { - "Name" = "8:System.ServiceModel.NetTcp.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.ServiceModel.NetTcp.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EBC4DB34C82DE60DD7335E5ED11A521A" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Xml.XPath.XDocument, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_EBC4DB34C82DE60DD7335E5ED11A521A" - { - "Name" = "8:System.Xml.XPath.XDocument.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Xml.XPath.XDocument.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EC75C57176E02971B7C73D8CC15CDF62" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EC75C57176E02971B7C73D8CC15CDF62" - { - "Name" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.UI.ApplicationSettings.ApplicationsSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ECE9944EA9E24D0195044AF46D036749" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppCaptureContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_ECE9944EA9E24D0195044AF46D036749" - { - "Name" = "8:Windows.Media.Capture.AppCaptureContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppCaptureContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EE68F7A03EAFA78C41DADA98F51FD114" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.XboxLive.StorageApiContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EE68F7A03EAFA78C41DADA98F51FD114" - { - "Name" = "8:Windows.Gaming.XboxLive.StorageApiContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Gaming.XboxLive.StorageApiContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_EFC668EA7FEE2B8448A9712D8FF47F48" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_EFC668EA7FEE2B8448A9712D8FF47F48" - { - "Name" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract.WinMD" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Networking.NetworkOperators.NetworkOperatorsFdnContract.WinMD" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F045042B5F25F5B5FF4D733E2635DC51" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F045042B5F25F5B5FF4D733E2635DC51" - { - "Name" = "8:System.Diagnostics.Contracts.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Diagnostics.Contracts.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F0E9F9E594A13BD590CDE51334EF9783" + } + "Configurations" + { + "Debug" + { + "DisplayName" = "8:Debug" + "IsDebugOnly" = "11:TRUE" + "IsReleaseOnly" = "11:FALSE" + "OutputFilename" = "8:Debug\\WinNUT-Setup.msi" + "PackageFilesAs" = "3:1" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:2" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Management.Workplace.WorkplaceSettingsContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" + "Enabled" = "11:TRUE" + "PromptEnabled" = "11:TRUE" + "PrerequisitesLocation" = "2:1" + "Url" = "8:" + "ComponentsUrl" = "8:" + "Items" { - "_F0E9F9E594A13BD590CDE51334EF9783" + "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.5.2" { - "Name" = "8:Windows.Management.Workplace.WorkplaceSettingsContract.winmd" - "Attributes" = "3:512" + "Name" = "8:Microsoft .NET Framework 4.5.2 (x86 and x64)" + "ProductCode" = "8:.NETFramework,Version=v4.5.2" } - } - "SourcePath" = "8:Windows.Management.Workplace.WorkplaceSettingsContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" - } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F1F0B265918B5463A1EBED96C190C38E" - { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Gaming.UI.GamingUIProviderContract, Version=1.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F1F0B265918B5463A1EBED96C190C38E" + "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" { - "Name" = "8:Windows.Gaming.UI.GamingUIProviderContract.winmd" - "Attributes" = "3:512" + "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" + "ProductCode" = "8:.NETFramework,Version=v4.7.2" } } - "SourcePath" = "8:Windows.Gaming.UI.GamingUIProviderContract.winmd" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2715534C3BAC0F6D865207A99862C81" + } + "Release" + { + "DisplayName" = "8:Release" + "IsDebugOnly" = "11:FALSE" + "IsReleaseOnly" = "11:TRUE" + "OutputFilename" = "8:Release\\WinNUT-Setup.msi" + "PackageFilesAs" = "3:2" + "PackageFileSize" = "3:-2147483648" + "CabType" = "3:1" + "Compression" = "3:3" + "SignOutput" = "11:FALSE" + "CertificateFile" = "8:" + "PrivateKeyFile" = "8:" + "TimeStampServer" = "8:" + "InstallerBootstrapper" = "3:2" + "BootstrapperCfg:{63ACBE69-63AA-4F98-B2B6-99F9E24495F2}" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Xml, Version=4.1.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" + "Enabled" = "11:TRUE" + "PromptEnabled" = "11:TRUE" + "PrerequisitesLocation" = "2:1" + "Url" = "8:" + "ComponentsUrl" = "8:" + "Items" { - "_F2715534C3BAC0F6D865207A99862C81" + "{EDC2488A-8267-493A-A98E-7D9C3B36CDF3}:.NETFramework,Version=v4.7.2" { - "Name" = "8:System.Runtime.Serialization.Xml.dll" - "Attributes" = "3:512" + "Name" = "8:Microsoft .NET Framework 4.7.2 (x86 and x64)" + "ProductCode" = "8:.NETFramework,Version=v4.7.2" } } - "SourcePath" = "8:System.Runtime.Serialization.Xml.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2A53899707A35DE976FB85A2B61D8F4" + } + } + "Deployable" + { + "CustomAction" + { + } + "DefaultFeature" + { + "Name" = "8:DefaultFeature" + "Title" = "8:" + "Description" = "8:" + } + "ExternalPersistence" + { + "LaunchCondition" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.ComponentModel.Primitives, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" + "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_D7F8EF5857D24C70A0403E6DE12801A1" { - "_F2A53899707A35DE976FB85A2B61D8F4" - { - "Name" = "8:System.ComponentModel.Primitives.dll" - "Attributes" = "3:512" - } + "Name" = "8:.NET Framework" + "Message" = "8:[VSDNETMSG]" + "FrameworkVersion" = "8:.NETFramework,Version=v4.8" + "AllowLaterVersions" = "11:FALSE" + "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=863262" } - "SourcePath" = "8:System.ComponentModel.Primitives.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" - "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2A935E7EE034BBF28A56C8F5A5608B7" + } + "File" + { + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0A325B8139084CA78A0244CAC82F2853" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Drawing.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F2A935E7EE034BBF28A56C8F5A5608B7" - { - "Name" = "8:System.Drawing.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Drawing.Primitives.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.exe.config" + "TargetName" = "8:WinNUT-Client.exe.config" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" @@ -12618,25 +183,14 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2DFA45AEBB8B70591BD9DA9079DD8EC" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_19385C4691E649139966B93BFCB76418" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Globalization.Calendars, Version=4.0.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F2DFA45AEBB8B70591BD9DA9079DD8EC" - { - "Name" = "8:System.Globalization.Calendars.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Globalization.Calendars.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.exe.manifest" + "TargetName" = "8:WinNUT-Client.exe.manifest" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" @@ -12649,92 +203,59 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F367FD1306372EFEAD3219FE6D30398B" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_2021E1982D884B6393B46EBA1914BC5E" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.AppContext, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F367FD1306372EFEAD3219FE6D30398B" - { - "Name" = "8:System.AppContext.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.AppContext.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\images\\Jpg\\Setup_Banner.jpg" + "TargetName" = "8:Setup_Banner.jpg" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" + "ReadOnly" = "11:TRUE" + "Hidden" = "11:TRUE" "System" = "11:FALSE" "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5AC6CEBF440E9F6F83481FF61AB884F" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_33BCB1EF059B4E9B87FA7435A8F2499C" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Graphics.Printing3D.Printing3DContract, Version=4.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F5AC6CEBF440E9F6F83481FF61AB884F" - { - "Name" = "8:Windows.Graphics.Printing3D.Printing3DContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Graphics.Printing3D.Printing3DContract.winmd" - "TargetName" = "8:" + "SourcePath" = "8:..\\images\\Ico\\WinNut.ico" + "TargetName" = "8:WinNut.ico" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" "Transitive" = "11:FALSE" "Vital" = "11:TRUE" "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" + "Hidden" = "11:TRUE" "System" = "11:FALSE" "Permanent" = "11:FALSE" "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F5E3E1B2654E985CD59A3EE1AE9AE176" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_3F430083DA6440B2B12DECC4BB791883" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.Security.Cryptography.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_F5E3E1B2654E985CD59A3EE1AE9AE176" - { - "Name" = "8:System.Security.Cryptography.Primitives.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Security.Cryptography.Primitives.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\..\\changelog.md" + "TargetName" = "8:changelog.md" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" + "Vital" = "11:FALSE" "ReadOnly" = "11:FALSE" "Hidden" = "11:FALSE" "System" = "11:FALSE" @@ -12742,25 +263,14 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F998EE5CB8F8C3586E6E9C104F82C7E2" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_761987FA7717402DB92207F177F3DB49" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:Windows.Media.Capture.AppBroadcastContract, Version=2.0.0.0, Culture=neutral" - "ScatterAssemblies" - { - "_F998EE5CB8F8C3586E6E9C104F82C7E2" - { - "Name" = "8:Windows.Media.Capture.AppBroadcastContract.winmd" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:Windows.Media.Capture.AppBroadcastContract.winmd" - "TargetName" = "8:" + "SourcePath" = "8:..\\..\\COPYING" + "TargetName" = "8:COPYING" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" @@ -12773,25 +283,14 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FE65F691A8229B618E6EA507F54C7373" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_7E781465BFAC4DC08591FE1EDE1E2D1F" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:TRUE" - "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" - "ScatterAssemblies" - { - "_FE65F691A8229B618E6EA507F54C7373" - { - "Name" = "8:System.Net.Http.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.Net.Http.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\..\\README.md" + "TargetName" = "8:README.md" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" @@ -12804,25 +303,14 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } - "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_FEB6F10A91EB54E3CB85A7A1A46CF0CA" + "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A17B6478098A4E61AD676107545BBEAD" { - "AssemblyRegister" = "3:1" - "AssemblyIsInGAC" = "11:FALSE" - "AssemblyAsmDisplayName" = "8:System.IO.FileSystem.Watcher, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" - "ScatterAssemblies" - { - "_FEB6F10A91EB54E3CB85A7A1A46CF0CA" - { - "Name" = "8:System.IO.FileSystem.Watcher.dll" - "Attributes" = "3:512" - } - } - "SourcePath" = "8:System.IO.FileSystem.Watcher.dll" - "TargetName" = "8:" + "SourcePath" = "8:..\\WinNUT-Client\\bin\\Release\\WinNUT-Client.application" + "TargetName" = "8:WinNUT-Client.application" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" "Condition" = "8:" @@ -12835,8 +323,8 @@ "SharedLegacy" = "11:FALSE" "PackageAs" = "3:1" "Register" = "3:1" - "Exclude" = "11:TRUE" - "IsDependency" = "11:TRUE" + "Exclude" = "11:FALSE" + "IsDependency" = "11:FALSE" "IsolateTo" = "8:" } } @@ -13453,37 +941,9 @@ } "ProjectOutput" { - "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_314CE5030A4040E69371869B1C94AA16" - { - "SourcePath" = "8:..\\AGauge_mod\\obj\\Release\\AGauge.dll" - "TargetName" = "8:" - "Tag" = "8:" - "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" - "Condition" = "8:" - "Transitive" = "11:FALSE" - "Vital" = "11:TRUE" - "ReadOnly" = "11:FALSE" - "Hidden" = "11:FALSE" - "System" = "11:FALSE" - "Permanent" = "11:FALSE" - "SharedLegacy" = "11:FALSE" - "PackageAs" = "3:1" - "Register" = "3:1" - "Exclude" = "11:FALSE" - "IsDependency" = "11:FALSE" - "IsolateTo" = "8:" - "ProjectOutputGroupRegister" = "3:1" - "OutputConfiguration" = "8:" - "OutputGroupCanonicalName" = "8:Built" - "OutputProjectGuid" = "8:{CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}" - "ShowKeyOutput" = "11:TRUE" - "ExcludeFilters" - { - } - } "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_70DBA11C2BF449198BA594449914C1BC" { - "SourcePath" = "8:..\\WinNUT-Client\\obj\\Release\\WinNUT-Client.exe" + "SourcePath" = "8:..\\WinNUT-Client\\obj\\Debug\\WinNUT-Client.exe" "TargetName" = "8:" "Tag" = "8:" "Folder" = "8:_7A1917372AF14D75845D775AAEB7CD48" diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb deleted file mode 100644 index e0240c9..0000000 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.Designer.vb +++ /dev/null @@ -1,210 +0,0 @@ -' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. -' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) -' -' This program is free software: you can redistribute it and/or modify it under the terms of the -' GNU General Public License as published by the Free Software Foundation, either version 3 of the -' License, or any later version. -' -' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY - - _ -Partial Class AGaugeTest - Inherits System.Windows.Forms.Form - - 'Form overrides dispose to clean up the component list. - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub - - 'Required by the Windows Form Designer - Private components As System.ComponentModel.IContainer - - 'NOTE: The following procedure is required by the Windows Form Designer - 'It can be modified using the Windows Form Designer. - 'Do not modify it using the code editor. - ' _ - Private Sub InitializeComponent() - Me.Label1 = New System.Windows.Forms.Label() - Me.txt_minValue = New System.Windows.Forms.TextBox() - Me.txt_maxValue = New System.Windows.Forms.TextBox() - Me.Label2 = New System.Windows.Forms.Label() - Me.AGauge1 = New UPSVarGauge() - Me.btn_update = New System.Windows.Forms.Button() - Me.btn_battVClone = New System.Windows.Forms.Button() - Me.AG_BattV = New UPSVarGauge() - Me.SuspendLayout() - ' - 'Label1 - ' - Me.Label1.AutoSize = True - Me.Label1.Location = New System.Drawing.Point(13, 150) - Me.Label1.Name = "Label1" - Me.Label1.Size = New System.Drawing.Size(51, 13) - Me.Label1.TabIndex = 1 - Me.Label1.Text = "MinValue" - ' - 'txt_minValue - ' - Me.txt_minValue.Location = New System.Drawing.Point(99, 150) - Me.txt_minValue.Name = "txt_minValue" - Me.txt_minValue.Size = New System.Drawing.Size(62, 20) - Me.txt_minValue.TabIndex = 2 - ' - 'txt_maxValue - ' - Me.txt_maxValue.Location = New System.Drawing.Point(99, 176) - Me.txt_maxValue.Name = "txt_maxValue" - Me.txt_maxValue.Size = New System.Drawing.Size(62, 20) - Me.txt_maxValue.TabIndex = 4 - ' - 'Label2 - ' - Me.Label2.AutoSize = True - Me.Label2.Location = New System.Drawing.Point(13, 176) - Me.Label2.Name = "Label2" - Me.Label2.Size = New System.Drawing.Size(54, 13) - Me.Label2.TabIndex = 3 - Me.Label2.Text = "MaxValue" - ' - 'AGauge1 - ' - Me.AGauge1.BaseArcColor = System.Drawing.Color.Gray - Me.AGauge1.BaseArcRadius = 45 - Me.AGauge1.BaseArcStart = 135 - Me.AGauge1.BaseArcSweep = 270 - Me.AGauge1.BaseArcWidth = 5 - Me.AGauge1.Location = New System.Drawing.Point(13, 13) - Me.AGauge1.MaxValue = 26.0! - Me.AGauge1.MinValue = 2.0! - Me.AGauge1.Name = "AGauge1" - Me.AGauge1.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray - Me.AGauge1.NeedleColor2 = System.Drawing.Color.DimGray - Me.AGauge1.NeedleRadius = 32 - Me.AGauge1.NeedleType = System.Windows.Forms.NeedleType.Advance - Me.AGauge1.NeedleWidth = 2 - Me.AGauge1.ScaleLinesInterColor = System.Drawing.Color.Black - Me.AGauge1.ScaleLinesInterInnerRadius = 40 - Me.AGauge1.ScaleLinesInterOuterRadius = 48 - Me.AGauge1.ScaleLinesInterWidth = 1 - Me.AGauge1.ScaleLinesMajorColor = System.Drawing.Color.Black - Me.AGauge1.ScaleLinesMajorInnerRadius = 40 - Me.AGauge1.ScaleLinesMajorOuterRadius = 48 - Me.AGauge1.ScaleLinesMajorStepValue = 7.0! - Me.AGauge1.ScaleLinesMajorWidth = 2 - Me.AGauge1.ScaleLinesMinorColor = System.Drawing.Color.Gray - Me.AGauge1.ScaleLinesMinorInnerRadius = 42 - Me.AGauge1.ScaleLinesMinorOuterRadius = 48 - Me.AGauge1.ScaleLinesMinorTicks = 9 - Me.AGauge1.ScaleLinesMinorWidth = 1 - Me.AGauge1.ScaleNumbersColor = System.Drawing.Color.Black - Me.AGauge1.ScaleNumbersFormat = Nothing - Me.AGauge1.ScaleNumbersRadius = 60 - Me.AGauge1.ScaleNumbersRotation = 0 - Me.AGauge1.ScaleNumbersStartScaleLine = 0 - Me.AGauge1.ScaleNumbersStepScaleLines = 1 - Me.AGauge1.Size = New System.Drawing.Size(148, 130) - Me.AGauge1.TabIndex = 0 - Me.AGauge1.Text = "AGauge1" - Me.AGauge1.Value = 20.3! - ' - 'btn_update - ' - Me.btn_update.Location = New System.Drawing.Point(93, 246) - Me.btn_update.Name = "btn_update" - Me.btn_update.Size = New System.Drawing.Size(75, 23) - Me.btn_update.TabIndex = 5 - Me.btn_update.Text = "Update" - Me.btn_update.UseVisualStyleBackColor = True - ' - 'btn_battVClone - ' - Me.btn_battVClone.Location = New System.Drawing.Point(12, 246) - Me.btn_battVClone.Name = "btn_battVClone" - Me.btn_battVClone.Size = New System.Drawing.Size(75, 23) - Me.btn_battVClone.TabIndex = 6 - Me.btn_battVClone.Text = "Clone BattV" - Me.btn_battVClone.UseVisualStyleBackColor = True - ' - 'AG_BattV - ' - Me.AG_BattV.BaseArcColor = System.Drawing.Color.Gray - Me.AG_BattV.BaseArcRadius = 45 - Me.AG_BattV.BaseArcStart = 135 - Me.AG_BattV.BaseArcSweep = 270 - Me.AG_BattV.BaseArcWidth = 5 - Me.AG_BattV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop - Me.AG_BattV.Location = New System.Drawing.Point(208, 13) - Me.AG_BattV.MaximumSize = New System.Drawing.Size(148, 130) - Me.AG_BattV.MaxValue = 26.0! - Me.AG_BattV.MinimumSize = New System.Drawing.Size(148, 130) - Me.AG_BattV.MinValue = 14.0! - Me.AG_BattV.Name = "AG_BattV" - Me.AG_BattV.NeedleColor1 = System.Windows.Forms.AGaugeNeedleColor.Gray - Me.AG_BattV.NeedleColor2 = System.Drawing.Color.DimGray - Me.AG_BattV.NeedleRadius = 32 - Me.AG_BattV.NeedleType = System.Windows.Forms.NeedleType.Advance - Me.AG_BattV.NeedleWidth = 2 - Me.AG_BattV.ScaleLinesInterColor = System.Drawing.Color.Black - Me.AG_BattV.ScaleLinesInterInnerRadius = 40 - Me.AG_BattV.ScaleLinesInterOuterRadius = 48 - Me.AG_BattV.ScaleLinesInterWidth = 1 - Me.AG_BattV.ScaleLinesMajorColor = System.Drawing.Color.Black - Me.AG_BattV.ScaleLinesMajorInnerRadius = 40 - Me.AG_BattV.ScaleLinesMajorOuterRadius = 48 - Me.AG_BattV.ScaleLinesMajorStepValue = 12.0! - Me.AG_BattV.ScaleLinesMajorWidth = 2 - Me.AG_BattV.ScaleLinesMinorColor = System.Drawing.Color.Gray - Me.AG_BattV.ScaleLinesMinorInnerRadius = 42 - Me.AG_BattV.ScaleLinesMinorOuterRadius = 48 - Me.AG_BattV.ScaleLinesMinorTicks = 9 - Me.AG_BattV.ScaleLinesMinorWidth = 1 - Me.AG_BattV.ScaleNumbersColor = System.Drawing.Color.Black - Me.AG_BattV.ScaleNumbersFormat = Nothing - Me.AG_BattV.ScaleNumbersRadius = 60 - Me.AG_BattV.ScaleNumbersRotation = 0 - Me.AG_BattV.ScaleNumbersStartScaleLine = 0 - Me.AG_BattV.ScaleNumbersStepScaleLines = 1 - Me.AG_BattV.Size = New System.Drawing.Size(148, 130) - Me.AG_BattV.TabIndex = 7 - Me.AG_BattV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts - Me.AG_BattV.UnitValue2 = UPSVarGauge.UnitValueEnum.None - Me.AG_BattV.Value1 = 14.0! - Me.AG_BattV.Value2 = 0! - ' - 'AGaugeTest - ' - Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) - Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font - Me.ClientSize = New System.Drawing.Size(410, 281) - Me.Controls.Add(Me.AG_BattV) - Me.Controls.Add(Me.btn_battVClone) - Me.Controls.Add(Me.btn_update) - Me.Controls.Add(Me.txt_maxValue) - Me.Controls.Add(Me.Label2) - Me.Controls.Add(Me.txt_minValue) - Me.Controls.Add(Me.Label1) - Me.Controls.Add(Me.AGauge1) - Me.Name = "AGaugeTest" - Me.Text = "AGaugeTest" - Me.ResumeLayout(False) - Me.PerformLayout() - - End Sub - - Friend WithEvents AGauge1 As UPSVarGauge - Friend WithEvents Label1 As Label - Friend WithEvents txt_minValue As TextBox - Friend WithEvents txt_maxValue As TextBox - Friend WithEvents Label2 As Label - Friend WithEvents btn_update As Button - Friend WithEvents btn_battVClone As Button - Friend WithEvents AG_BattV As UPSVarGauge -End Class diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.resx b/WinNUT_V2/WinNUT-Client/AGaugeTest.resx deleted file mode 100644 index 1af7de1..0000000 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb b/WinNUT_V2/WinNUT-Client/AGaugeTest.vb deleted file mode 100644 index 38f9b32..0000000 --- a/WinNUT_V2/WinNUT-Client/AGaugeTest.vb +++ /dev/null @@ -1,28 +0,0 @@ -' WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. -' Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) -' -' This program is free software: you can redistribute it and/or modify it under the terms of the -' GNU General Public License as published by the Free Software Foundation, either version 3 of the -' License, or any later version. -' -' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY - -Public Class AGaugeTest - Public Sub New() - - ' This call is required by the designer. - InitializeComponent() - - ' Add any initialization after the InitializeComponent() call. - - End Sub - - Private Sub btn_update_Click(sender As Object, e As EventArgs) Handles btn_update.Click - AGauge1.MinValue = txt_minValue.Text - AGauge1.MaxValue = txt_maxValue.Text - End Sub - - Private Sub btn_battVClone_Click(sender As Object, e As EventArgs) Handles btn_battVClone.Click - - End Sub -End Class diff --git a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb index 23f8fa0..50c2b7f 100644 --- a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.Designer.vb @@ -7,32 +7,35 @@ ' ' This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY - _ -Partial Class UPSVarGauge - Inherits AGauge +Namespace Controls - 'Control overrides dispose to clean up the component list. - _ - Protected Overrides Sub Dispose(ByVal disposing As Boolean) - Try - If disposing AndAlso components IsNot Nothing Then - components.Dispose() - End If - Finally - MyBase.Dispose(disposing) - End Try - End Sub + + Partial Class UPSVarGauge + Inherits AGauge - 'Required by the Control Designer - Private components As System.ComponentModel.IContainer + 'Control overrides dispose to clean up the component list. + + Protected Overrides Sub Dispose(ByVal disposing As Boolean) + Try + If disposing AndAlso components IsNot Nothing Then + components.Dispose() + End If + Finally + MyBase.Dispose(disposing) + End Try + End Sub - ' NOTE: The following procedure is required by the Component Designer - ' It can be modified using the Component Designer. Do not modify it - ' using the code editor. - _ - Private Sub InitializeComponent() - components = New System.ComponentModel.Container() - End Sub + 'Required by the Control Designer + Private components As System.ComponentModel.IContainer -End Class + ' NOTE: The following procedure is required by the Component Designer + ' It can be modified using the Component Designer. Do not modify it + ' using the code editor. + + Private Sub InitializeComponent() + components = New System.ComponentModel.Container() + End Sub + End Class + +End Namespace diff --git a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb index 581f5dd..a4acd7c 100644 --- a/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb +++ b/WinNUT_V2/WinNUT-Client/Controls/UPSVarGauge.vb @@ -10,264 +10,268 @@ Imports System.ComponentModel Imports System.Drawing.Drawing2D -Friend Class UPSVarGauge - Inherits AGauge +Namespace Controls + + Friend Class UPSVarGauge + Inherits AGauge #Region "Private Fields" - Private ReadOnly m_value1 As Single - Private m_value2 As Single + Private ReadOnly m_value1 As Single + Private m_value2 As Single - Private ReadOnly m_MinValue As Single = 0 - Private ReadOnly m_MaxValue As Single = 100 + Private ReadOnly m_MinValue As Single = 0 + Private ReadOnly m_MaxValue As Single = 100 - Private ReadOnly m_BaseArcRadius = 45 - Private ReadOnly m_BaseArcStart = 135 - Private ReadOnly m_BaseArcSweep = 270 - Private ReadOnly m_BaseArcWidth = 5 + Private ReadOnly m_BaseArcRadius = 45 + Private ReadOnly m_BaseArcStart = 135 + Private ReadOnly m_BaseArcSweep = 270 + Private ReadOnly m_BaseArcWidth = 5 - Private ReadOnly m_ScaleLinesMinorTicks = 9 - Private ReadOnly m_ScaleLinesMinorInnerRadius = 42 - Private ReadOnly m_ScaleLinesMinorOuterRadius = 48 - Private ReadOnly m_ScaleLinesMinorWidth = 1 + ' Private ReadOnly m_ScaleLinesMinorTicks = 9 + Private ReadOnly m_ScaleLinesMinorInnerRadius = 42 + Private ReadOnly m_ScaleLinesMinorOuterRadius = 48 + Private ReadOnly m_ScaleLinesMinorWidth = 1 - Private ReadOnly m_ScaleLinesInterInnerRadius = 40 - Private ReadOnly m_ScaleLinesInterOuterRadius = 48 - Private ReadOnly m_ScaleLinesInterWidth = 1 + Private ReadOnly m_ScaleLinesInterInnerRadius = 40 + Private ReadOnly m_ScaleLinesInterOuterRadius = 48 + Private ReadOnly m_ScaleLinesInterWidth = 1 - Private ReadOnly m_ScaleLinesMajorStepValue = 50.0F - Private ReadOnly m_ScaleLinesMajorInnerRadius = 40 - Private ReadOnly m_ScaleLinesMajorOuterRadius = 48 - Private ReadOnly m_ScaleLinesMajorWidth = 2 + ' Private ReadOnly m_ScaleLinesMajorStepValue = 50.0F + Private ReadOnly m_ScaleLinesMajorInnerRadius = 40 + Private ReadOnly m_ScaleLinesMajorOuterRadius = 48 + Private ReadOnly m_ScaleLinesMajorWidth = 2 - Private ReadOnly m_ScaleNumbersRadius = 60 - Private ReadOnly m_ScaleNumbersFormat As String - Private ReadOnly m_ScaleNumbersStartScaleLine As Integer - Private ReadOnly m_ScaleNumbersStepScaleLines = 1 - Private ReadOnly m_ScaleNumbersRotation As Integer + Private ReadOnly m_ScaleNumbersRadius = 60 + Private ReadOnly m_ScaleNumbersFormat As String + Private ReadOnly m_ScaleNumbersStartScaleLine As Integer + Private ReadOnly m_ScaleNumbersStepScaleLines = 1 + Private ReadOnly m_ScaleNumbersRotation As Integer - Private ReadOnly m_NeedleType As NeedleType - Private ReadOnly m_NeedleRadius = 32 - Private ReadOnly m_NeedleColor1 = AGaugeNeedleColor.Gray - Private ReadOnly m_NeedleColor2 = Color.DimGray - Private ReadOnly m_NeedleWidth = 2 + Private ReadOnly m_NeedleType As NeedleType + Private ReadOnly m_NeedleRadius = 32 + Private ReadOnly m_NeedleColor1 = AGaugeNeedleColor.Gray + Private ReadOnly m_NeedleColor2 = Color.DimGray + Private ReadOnly m_NeedleWidth = 2 - Private m_gradientType = GradientTypeEnum.RedGreen - Private m_gradientOrientation = GradientOrientationEnum.BottomToTop - Private m_unitvalue1 = UnitValueEnum.Volts - Private m_unitvalue2 = UnitValueEnum.None + Private m_gradientType = GradientTypeEnum.RedGreen + Private m_gradientOrientation = GradientOrientationEnum.BottomToTop + Private m_unitvalue1 = UnitValueEnum.Volts + Private m_unitvalue2 = UnitValueEnum.None #End Region #Region "Properties" - ' Map Value1 onto Value - - Public Property Value1 As Single - Get - Return Value - End Get - Set(value As Single) - MyBase.Value = value - End Set - End Property - - - Public Property Value2 As Single - Get - Return m_value2 - End Get - Set(value As Single) - If m_value2 <> value Then - m_value2 = value - OnValueChanged(Me, Nothing) - Refresh() - End If - End Set - End Property - - - Public Property GradientType As GradientTypeEnum - Get - Return m_gradientType - End Get - Set(value As GradientTypeEnum) - m_gradientType = value - Refresh() - End Set - End Property - - - Public Property GradientOrientation As GradientOrientationEnum - Get - Return m_gradientOrientation - End Get - Set(value As GradientOrientationEnum) - - If m_gradientOrientation <> value Then - m_gradientOrientation = value + ' Map Value1 onto Value + + Public Property Value1 As Single + Get + Return Value + End Get + Set(value As Single) + MyBase.Value = value + End Set + End Property + + + Public Property Value2 As Single + Get + Return m_value2 + End Get + Set(value As Single) + If m_value2 <> value Then + m_value2 = value + OnValueChanged(Me, Nothing) + Refresh() + End If + End Set + End Property + + + Public Property GradientType As GradientTypeEnum + Get + Return m_gradientType + End Get + Set(value As GradientTypeEnum) + m_gradientType = value Refresh() + End Set + End Property + + + Public Property GradientOrientation As GradientOrientationEnum + Get + Return m_gradientOrientation + End Get + Set(value As GradientOrientationEnum) + + If m_gradientOrientation <> value Then + m_gradientOrientation = value + Refresh() + End If + End Set + End Property + + + Public Property UnitValue1 As UnitValueEnum + Get + Return m_unitvalue1 + End Get + Set(value As UnitValueEnum) + + If m_unitvalue1 <> value Then + m_unitvalue1 = value + Refresh() + End If + End Set + End Property + + + Public Property UnitValue2 As UnitValueEnum + Get + Return m_unitvalue2 + End Get + Set(value As UnitValueEnum) + + If m_unitvalue2 <> value Then + m_unitvalue2 = value + Refresh() + End If + End Set + End Property + +#End Region + + Public Enum GradientTypeEnum + None + RedGreen + End Enum + + Public Enum GradientOrientationEnum + TopToBottom + BottomToTop + RightToLeft + LeftToRight + End Enum + + Public Enum UnitValueEnum + None + Hertz + Percent + Volts + Watts + End Enum + + Public Sub New() + MyBase.New() + InitializeComponent() + + Size = New Size(148, 130) + End Sub + + Overrides Sub RenderDefaultArc(graphics As Graphics) + If m_BaseArcRadius > 0 Then + Dim baseArcRadius As Integer = m_BaseArcRadius * centerFactor + + If m_gradientType = GradientTypeEnum.None Then + Using pnArc = New Pen(BaseArcColor, m_BaseArcWidth * centerFactor) + graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, + Center.Y - baseArcRadius, + 2 * baseArcRadius, + 2 * baseArcRadius), + m_BaseArcStart, m_BaseArcSweep) + End Using + + Else + Dim GradientP1Brush = New Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)) + Dim GradientP2Brush = New Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)) + + Select Case m_gradientOrientation + Case GradientOrientationEnum.TopToBottom + GradientP1Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) + GradientP2Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) + Case GradientOrientationEnum.BottomToTop + GradientP1Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) + GradientP2Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) + Case GradientOrientationEnum.RightToLeft + GradientP1Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) + GradientP2Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) + Case GradientOrientationEnum.LeftToRight + GradientP1Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) + GradientP2Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) + End Select + + Dim myArc1Gradient = New LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green) + Using pnArc = New Pen(myArc1Gradient, m_BaseArcWidth * centerFactor) + graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, + Center.Y - baseArcRadius, + 2 * baseArcRadius, + 2 * baseArcRadius), + m_BaseArcStart, m_BaseArcSweep) + End Using + End If End If - End Set - End Property - - - Public Property UnitValue1 As UnitValueEnum - Get - Return m_unitvalue1 - End Get - Set(value As UnitValueEnum) - - If m_unitvalue1 <> value Then - m_unitvalue1 = value - Refresh() + End Sub + + ''' + ''' Override PostRender and render the value of the gauge with unit. + ''' + Overrides Sub PostRender(graphics As Graphics) + Dim PenString = New Pen(Color.Black) + Dim PenFontV1 = New Font("Microsoft Sans Serif", 8, FontStyle.Bold) + Dim PenFontV2 = New Font("Microsoft Sans Serif", 7, FontStyle.Bold) + Dim StringPen = New SolidBrush(Color.Black) + Dim LineHeight = 15 + Dim StrPos = Center + StrPos.Y += 5 + + If UnitValue1 <> UnitValueEnum.None Then + Dim StringToDraw = ApplyUnit(Value1, UnitValue1) + Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1) + StrPos.Y += LineHeight + graphics.DrawString(StringToDraw, PenFontV1, StringPen, + New PointF((StrPos.X - (StringSize.Width / 2) + 5), StrPos.Y)) End If - End Set - End Property - - - Public Property UnitValue2 As UnitValueEnum - Get - Return m_unitvalue2 - End Get - Set(value As UnitValueEnum) - - If m_unitvalue2 <> value Then - m_unitvalue2 = value - Refresh() + + If UnitValue2 <> UnitValueEnum.None Then + Dim StringToDraw = ApplyUnit(Value2, UnitValue2) + Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2) + StrPos.Y += LineHeight + graphics.DrawString(StringToDraw, PenFontV2, StringPen, + New PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)) End If - End Set - End Property + End Sub -#End Region + Private Function ApplyUnit(value As String, unit As UnitValueEnum) + Dim returnStr = value - Public Enum GradientTypeEnum - None - RedGreen - End Enum - - Public Enum GradientOrientationEnum - TopToBottom - BottomToTop - RightToLeft - LeftToRight - End Enum - - Public Enum UnitValueEnum - None - Hertz - Percent - Volts - Watts - End Enum - - Public Sub New() - MyBase.New() - InitializeComponent() - - Size = New Size(148, 130) - End Sub - - Overrides Sub RenderDefaultArc(graphics As Graphics) - If m_BaseArcRadius > 0 Then - Dim baseArcRadius As Integer = m_BaseArcRadius * centerFactor - - If m_gradientType = GradientTypeEnum.None Then - Using pnArc = New Pen(BaseArcColor, m_BaseArcWidth * centerFactor) - graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, - Center.Y - baseArcRadius, - 2 * baseArcRadius, - 2 * baseArcRadius), - m_BaseArcStart, m_BaseArcSweep) - End Using - - Else - Dim GradientP1Brush = New Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)) - Dim GradientP2Brush = New Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)) - - Select Case m_gradientOrientation - Case GradientOrientationEnum.TopToBottom - GradientP1Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) - GradientP2Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) - Case GradientOrientationEnum.BottomToTop - GradientP1Brush = New Point(0, (Center.Y + baseArcRadius + m_BaseArcWidth + 2)) - GradientP2Brush = New Point(0, (Center.Y - baseArcRadius - m_BaseArcWidth - 2)) - Case GradientOrientationEnum.RightToLeft - GradientP1Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) - GradientP2Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) - Case GradientOrientationEnum.LeftToRight - GradientP1Brush = New Point((Center.X - baseArcRadius - m_BaseArcWidth - 2), 0) - GradientP2Brush = New Point((Center.X + baseArcRadius + m_BaseArcWidth + 2), 0) - End Select - - Dim myArc1Gradient = New LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green) - Using pnArc = New Pen(myArc1Gradient, m_BaseArcWidth * centerFactor) - graphics.DrawArc(pnArc, New Rectangle(Center.X - baseArcRadius, - Center.Y - baseArcRadius, - 2 * baseArcRadius, - 2 * baseArcRadius), - m_BaseArcStart, m_BaseArcSweep) - End Using - End If - End If - End Sub - - ''' - ''' Override PostRender and render the value of the gauge with unit. - ''' - Overrides Sub PostRender(graphics As Graphics) - Dim PenString = New Pen(Color.Black) - Dim PenFontV1 = New Font("Microsoft Sans Serif", 8, FontStyle.Bold) - Dim PenFontV2 = New Font("Microsoft Sans Serif", 7, FontStyle.Bold) - Dim StringPen = New SolidBrush(Color.Black) - Dim LineHeight = 15 - Dim StrPos = Center - StrPos.Y += 5 - - If UnitValue1 <> UnitValueEnum.None Then - Dim StringToDraw = ApplyUnit(Value1, UnitValue1) - Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1) - StrPos.Y += LineHeight - graphics.DrawString(StringToDraw, PenFontV1, StringPen, - New PointF((StrPos.X - (StringSize.Width / 2) + 5), StrPos.Y)) - End If - - If UnitValue2 <> UnitValueEnum.None Then - Dim StringToDraw = ApplyUnit(Value2, UnitValue2) - Dim StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2) - StrPos.Y += LineHeight - graphics.DrawString(StringToDraw, PenFontV2, StringPen, - New PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)) - End If - End Sub - - Private Function ApplyUnit(value As String, unit As UnitValueEnum) - Dim returnStr = value - - Select Case unit - Case UnitValueEnum.Hertz - returnStr &= " Hz" - Case UnitValueEnum.Percent - returnStr &= " %" - Case UnitValueEnum.Volts - returnStr &= " V" - Case UnitValueEnum.Watts - returnStr &= " W" - End Select - - Return returnStr - End Function - -End Class + Select Case unit + Case UnitValueEnum.Hertz + returnStr &= " Hz" + Case UnitValueEnum.Percent + returnStr &= " %" + Case UnitValueEnum.Volts + returnStr &= " V" + Case UnitValueEnum.Watts + returnStr &= " W" + End Select + + Return returnStr + End Function + + End Class + +End Namespace diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf index 1572c31..3d17497 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-Client.zh-TW.xlf @@ -58582,12 +58582,4 @@ Accepted value: Numeric value from 0 to 100. - -
- -
- - - -
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf index 3dd563c..6b8613d 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.de-DE.xlf @@ -58582,12 +58582,4 @@ Remaining Time : {WinNUT.Lbl_VRTime.Text} - -
- -
- - - -
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf index 5d0db96..fe901ce 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.fr-FR.xlf @@ -58610,12 +58610,4 @@ Temps restant: {WinNUT.Lbl_VRTime.Text}
- -
- -
- - - -
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf index 4f92b7d..57eb44c 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.ru-RU.xlf @@ -58607,12 +58607,4 @@ Accepted value: Numeric value from 0 to 100. - -
- -
- - - -
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf index fc059ad..0703469 100644 --- a/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf +++ b/WinNUT_V2/WinNUT-Client/MultilingualResources/WinNUT-client.zh-CN.xlf @@ -58606,12 +58606,4 @@ Accepted value: Numeric value from 0 to 100. - -
- -
- - - -
\ No newline at end of file diff --git a/WinNUT_V2/WinNUT-Client/My Project/Application.Designer.vb b/WinNUT_V2/WinNUT-Client/My Project/Application.Designer.vb index bd70312..cbdb606 100644 --- a/WinNUT_V2/WinNUT-Client/My Project/Application.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/My Project/Application.Designer.vb @@ -34,5 +34,11 @@ Namespace My Protected Overrides Sub OnCreateMainForm() Me.MainForm = Global.WinNUT_Client.WinNUT End Sub + + _ + Protected Overrides Function OnInitialize(ByVal commandLineArgs As System.Collections.ObjectModel.ReadOnlyCollection(Of String)) As Boolean + Me.MinimumSplashScreenDisplayTime = 0 + Return MyBase.OnInitialize(commandLineArgs) + End Function End Class End Namespace diff --git a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj index 6c20531..34bddf3 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj +++ b/WinNUT_V2/WinNUT-Client/WinNUT-client.vbproj @@ -29,7 +29,7 @@ 2.2.0.%2a false true - true + false 10.0.18362 @@ -96,10 +96,6 @@ My Project\app.manifest - - False - lib\AGauge.dll - @@ -136,12 +132,6 @@ Form - - AGaugeTest.vb - - - Form - Component @@ -220,9 +210,6 @@ About_Gui.vb - - AGaugeTest.vb - List_Var_Gui.vb @@ -384,11 +371,6 @@ - - False - Microsoft .NET Framework 4.5.2 %28x86 et x64%29 - true - False .NET Framework 3.5 SP1 @@ -409,6 +391,9 @@ + + 2.1.0-prerelease.1 + 7.1.2 @@ -416,7 +401,6 @@ 13.0.1 - diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb b/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb index 593305e..548de88 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.Designer.vb @@ -79,12 +79,12 @@ Partial Class WinNUT Me.GB_InF_Dial = New System.Windows.Forms.GroupBox() Me.Lbl_InF_Dial = New System.Windows.Forms.Label() Me.CB_CurrentLog = New System.Windows.Forms.ComboBox() - Me.AG_InF = New UPSVarGauge() - Me.AG_InV = New UPSVarGauge() - Me.AG_BattV = New UPSVarGauge() - Me.AG_Load = New UPSVarGauge() - Me.AG_OutV = New UPSVarGauge() - Me.AG_BattCh = New UPSVarGauge() + Me.AG_InF = New WinNUT_Client.Controls.UPSVarGauge() + Me.AG_InV = New WinNUT_Client.Controls.UPSVarGauge() + Me.AG_BattV = New WinNUT_Client.Controls.UPSVarGauge() + Me.AG_Load = New WinNUT_Client.Controls.UPSVarGauge() + Me.AG_OutV = New WinNUT_Client.Controls.UPSVarGauge() + Me.AG_BattCh = New WinNUT_Client.Controls.UPSVarGauge() Me.ContextMenu_Systray.SuspendLayout() Me.Main_Menu.SuspendLayout() Me.GB_Status.SuspendLayout() @@ -452,8 +452,8 @@ Partial Class WinNUT Me.AG_InF.BaseArcStart = 135 Me.AG_InF.BaseArcSweep = 270 Me.AG_InF.BaseArcWidth = 5 - Me.AG_InF.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_InF.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop + Me.AG_InF.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_InF.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_InF, "AG_InF") Me.AG_InF.MaxValue = 100.0! Me.AG_InF.MinValue = 0! @@ -483,8 +483,8 @@ Partial Class WinNUT Me.AG_InF.ScaleNumbersRotation = 0 Me.AG_InF.ScaleNumbersStartScaleLine = 0 Me.AG_InF.ScaleNumbersStepScaleLines = 1 - Me.AG_InF.UnitValue1 = UPSVarGauge.UnitValueEnum.Hertz - Me.AG_InF.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_InF.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Hertz + Me.AG_InF.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.None Me.AG_InF.Value1 = 0! Me.AG_InF.Value2 = 0! ' @@ -495,8 +495,8 @@ Partial Class WinNUT Me.AG_InV.BaseArcStart = 135 Me.AG_InV.BaseArcSweep = 270 Me.AG_InV.BaseArcWidth = 5 - Me.AG_InV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_InV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop + Me.AG_InV.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_InV.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_InV, "AG_InV") Me.AG_InV.MaxValue = 100.0! Me.AG_InV.MinValue = 0! @@ -526,8 +526,8 @@ Partial Class WinNUT Me.AG_InV.ScaleNumbersRotation = 0 Me.AG_InV.ScaleNumbersStartScaleLine = 0 Me.AG_InV.ScaleNumbersStepScaleLines = 1 - Me.AG_InV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts - Me.AG_InV.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_InV.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Volts + Me.AG_InV.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.None Me.AG_InV.Value1 = 0! Me.AG_InV.Value2 = 0! ' @@ -538,8 +538,8 @@ Partial Class WinNUT Me.AG_BattV.BaseArcStart = 135 Me.AG_BattV.BaseArcSweep = 270 Me.AG_BattV.BaseArcWidth = 5 - Me.AG_BattV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_BattV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop + Me.AG_BattV.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_BattV.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_BattV, "AG_BattV") Me.AG_BattV.MaxValue = 100.0! Me.AG_BattV.MinValue = 0! @@ -569,8 +569,8 @@ Partial Class WinNUT Me.AG_BattV.ScaleNumbersRotation = 0 Me.AG_BattV.ScaleNumbersStartScaleLine = 0 Me.AG_BattV.ScaleNumbersStepScaleLines = 1 - Me.AG_BattV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts - Me.AG_BattV.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_BattV.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Volts + Me.AG_BattV.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.None Me.AG_BattV.Value1 = 0! Me.AG_BattV.Value2 = 0! ' @@ -581,8 +581,8 @@ Partial Class WinNUT Me.AG_Load.BaseArcStart = 135 Me.AG_Load.BaseArcSweep = 270 Me.AG_Load.BaseArcWidth = 5 - Me.AG_Load.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_Load.GradientOrientation = UPSVarGauge.GradientOrientationEnum.RightToLeft + Me.AG_Load.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_Load.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.RightToLeft resources.ApplyResources(Me.AG_Load, "AG_Load") Me.AG_Load.MaxValue = 100.0! Me.AG_Load.MinValue = 0! @@ -612,8 +612,8 @@ Partial Class WinNUT Me.AG_Load.ScaleNumbersRotation = 0 Me.AG_Load.ScaleNumbersStartScaleLine = 0 Me.AG_Load.ScaleNumbersStepScaleLines = 1 - Me.AG_Load.UnitValue1 = UPSVarGauge.UnitValueEnum.Percent - Me.AG_Load.UnitValue2 = UPSVarGauge.UnitValueEnum.Watts + Me.AG_Load.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Percent + Me.AG_Load.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Watts Me.AG_Load.Value1 = 0! Me.AG_Load.Value2 = 0! ' @@ -624,8 +624,8 @@ Partial Class WinNUT Me.AG_OutV.BaseArcStart = 135 Me.AG_OutV.BaseArcSweep = 270 Me.AG_OutV.BaseArcWidth = 5 - Me.AG_OutV.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_OutV.GradientOrientation = UPSVarGauge.GradientOrientationEnum.BottomToTop + Me.AG_OutV.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_OutV.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.BottomToTop resources.ApplyResources(Me.AG_OutV, "AG_OutV") Me.AG_OutV.MaxValue = 100.0! Me.AG_OutV.MinValue = 0! @@ -655,8 +655,8 @@ Partial Class WinNUT Me.AG_OutV.ScaleNumbersRotation = 0 Me.AG_OutV.ScaleNumbersStartScaleLine = 0 Me.AG_OutV.ScaleNumbersStepScaleLines = 1 - Me.AG_OutV.UnitValue1 = UPSVarGauge.UnitValueEnum.Volts - Me.AG_OutV.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_OutV.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Volts + Me.AG_OutV.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.None Me.AG_OutV.Value1 = 0! Me.AG_OutV.Value2 = 0! ' @@ -667,8 +667,8 @@ Partial Class WinNUT Me.AG_BattCh.BaseArcStart = 135 Me.AG_BattCh.BaseArcSweep = 270 Me.AG_BattCh.BaseArcWidth = 5 - Me.AG_BattCh.GradientType = UPSVarGauge.GradientTypeEnum.RedGreen - Me.AG_BattCh.GradientOrientation = UPSVarGauge.GradientOrientationEnum.LeftToRight + Me.AG_BattCh.GradientType = WinNUT_Client.Controls.UPSVarGauge.GradientTypeEnum.RedGreen + Me.AG_BattCh.GradientOrientation = WinNUT_Client.Controls.UPSVarGauge.GradientOrientationEnum.LeftToRight resources.ApplyResources(Me.AG_BattCh, "AG_BattCh") Me.AG_BattCh.MaxValue = 100.0! Me.AG_BattCh.MinValue = 0! @@ -698,8 +698,8 @@ Partial Class WinNUT Me.AG_BattCh.ScaleNumbersRotation = 0 Me.AG_BattCh.ScaleNumbersStartScaleLine = 0 Me.AG_BattCh.ScaleNumbersStepScaleLines = 1 - Me.AG_BattCh.UnitValue1 = UPSVarGauge.UnitValueEnum.Percent - Me.AG_BattCh.UnitValue2 = UPSVarGauge.UnitValueEnum.None + Me.AG_BattCh.UnitValue1 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.Percent + Me.AG_BattCh.UnitValue2 = WinNUT_Client.Controls.UPSVarGauge.UnitValueEnum.None Me.AG_BattCh.Value1 = 0! Me.AG_BattCh.Value2 = 0! ' @@ -794,13 +794,13 @@ Partial Class WinNUT Friend WithEvents Lbl_BattV_Dial As Label Friend WithEvents GB_InV_Dial As GroupBox Friend WithEvents Lbl_InV_Dial As Label - Friend WithEvents AG_InV As UPSVarGauge - Friend WithEvents AG_OutV As UPSVarGauge - Friend WithEvents AG_BattCh As UPSVarGauge - Friend WithEvents AG_Load As UPSVarGauge - Friend WithEvents AG_BattV As UPSVarGauge + Friend WithEvents AG_InV As WinNUT_Client.Controls.UPSVarGauge + Friend WithEvents AG_OutV As WinNUT_Client.Controls.UPSVarGauge + Friend WithEvents AG_BattCh As WinNUT_Client.Controls.UPSVarGauge + Friend WithEvents AG_Load As WinNUT_Client.Controls.UPSVarGauge + Friend WithEvents AG_BattV As WinNUT_Client.Controls.UPSVarGauge Friend WithEvents GB_InF_Dial As GroupBox - Friend WithEvents AG_InF As UPSVarGauge + Friend WithEvents AG_InF As WinNUT_Client.Controls.UPSVarGauge Friend WithEvents Lbl_InF_Dial As Label Friend WithEvents CB_CurrentLog As ComboBox Friend WithEvents Menu_Import_Ini As ToolStripMenuItem diff --git a/WinNUT_V2/WinNUT-Client/WinNUT.vb b/WinNUT_V2/WinNUT-Client/WinNUT.vb index ee5de8f..565888e 100644 --- a/WinNUT_V2/WinNUT-Client/WinNUT.vb +++ b/WinNUT_V2/WinNUT-Client/WinNUT.vb @@ -273,22 +273,10 @@ Public Class WinNUT HasFocus = False End If -#If DEBUG Then - ' Insert AGauge testing dialog menu item - Dim agDbgFormOpen = New ToolStripMenuItem("AGauge Test Form") - AddHandler agDbgFormOpen.Click, AddressOf OpenAGDebugForm - Menu_File.DropDownItems.Add(agDbgFormOpen) -#End If - LogFile.LogTracing(String.Format("{0} v{1} completed initialization.", My.Application.Info.ProductName, My.Application.Info.Version), LogLvl.LOG_NOTICE, Me) End Sub - Private Sub OpenAGDebugForm(sender As Object, e As EventArgs) - Dim form = New AGaugeTest() - form.ShowDialog() - End Sub - Private Sub SystemEvents_PowerModeChanged(sender As Object, e As Microsoft.Win32.PowerModeChangedEventArgs) LogFile.LogTracing("PowerModeChangedEvent: " & [Enum].GetName(GetType(Microsoft.Win32.PowerModes), e.Mode), LogLvl.LOG_NOTICE, Me) Select Case e.Mode From 6dcd2f726f4af7aa074b5b0681dce49c75b2d563 Mon Sep 17 00:00:00 2001 From: gbakeman Date: Mon, 6 May 2024 16:06:42 -0400 Subject: [PATCH 21/21] Remove original AGauge_mod project No longer need the original modded AGauge files. Also remove an extraneous library. --- WinNUT_V2/AGauge_mod/AGauge - FxCop.FxCop | 382 ---- WinNUT_V2/AGauge_mod/AGauge.Designer.cs | 40 - WinNUT_V2/AGauge_mod/AGauge.bmp | Bin 246 -> 0 bytes WinNUT_V2/AGauge_mod/AGauge.cs | 1624 ----------------- WinNUT_V2/AGauge_mod/AGauge.csproj | 74 - WinNUT_V2/AGauge_mod/AGauge.csproj.user | 6 - WinNUT_V2/AGauge_mod/AGauge.sln | 25 - WinNUT_V2/AGauge_mod/AGaugeLabel.cs | 128 -- WinNUT_V2/AGauge_mod/AGaugeRange.cs | 187 -- .../AGauge_mod/Properties/AssemblyInfo.cs | 35 - WinNUT_V2/WinNUT-Client/lib/AGauge.dll | Bin 40960 -> 0 bytes 11 files changed, 2501 deletions(-) delete mode 100644 WinNUT_V2/AGauge_mod/AGauge - FxCop.FxCop delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.Designer.cs delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.bmp delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.cs delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.csproj delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.csproj.user delete mode 100644 WinNUT_V2/AGauge_mod/AGauge.sln delete mode 100644 WinNUT_V2/AGauge_mod/AGaugeLabel.cs delete mode 100644 WinNUT_V2/AGauge_mod/AGaugeRange.cs delete mode 100644 WinNUT_V2/AGauge_mod/Properties/AssemblyInfo.cs delete mode 100644 WinNUT_V2/WinNUT-Client/lib/AGauge.dll diff --git a/WinNUT_V2/AGauge_mod/AGauge - FxCop.FxCop b/WinNUT_V2/AGauge_mod/AGauge - FxCop.FxCop deleted file mode 100644 index 14e40f4..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge - FxCop.FxCop +++ /dev/null @@ -1,382 +0,0 @@ - - - - True - c:\program files (x86)\microsoft fxcop 1.36\Xml\FxCopReport.xsl - - - - - - True - True - True - 10 - 1 - - False - - False - 120 - False - - - - $(ProjectDir)/../AGaugeApp/bin/Debug/ - - - - - - - - - - - - - - - - - - - - - - - - - - - 'AGauge.dll' - - - - - 'AGauge.dll' - - - - - - - - - - - 'AGauge' - AGauge - - - - - - - - - 'AGauge.AllowDrop' - - - - - - - - - - - - - - 'value' - 'AGauge.AllowDrop.set(bool)' - - - - - - - - - - - - - - - - 'AGauge.AutoSize' - - - - - - - - - - - - - - 'value' - 'AGauge.AutoSize.set(bool)' - - - - - - - - - - - - - - - - 'AGauge.ForeColor' - - - - - - - - - - - - - - 'value' - 'AGauge.ForeColor.set(bool)' - - - - - - - - - - - - - - - - 'AGauge.ImeMode' - - - - - - - - - - - - - - 'value' - 'AGauge.ImeMode.set(bool)' - - - - - - - - - - - - - - - - 'float.ToString(string)' - 'AGauge.OnPaint(PaintEventArgs)' - 'float.ToString(string, IFormatProvider)' - - - - - - - - - - - - - - - - 'AGaugeLabelCollection' - IList - - - - - 'AGaugeLabelCollection' - - - - - 'AGaugeLabelCollection' - 'CollectionBase' - - - - - - - - - 'int.ToString()' - 'AGaugeLabelCollection.GetUniqueName()' - 'int.ToString(IFormatProvider)' - - - 'int.ToString()' - 'AGaugeLabelCollection.GetUniqueName()' - 'int.ToString(IFormatProvider)' - - - 'int.ToString()' - 'AGaugeLabelCollection.GetUniqueName()' - 'int.ToString(IFormatProvider)' - - - - - - - - - 'value' - 'AGaugeLabel' - 'AGaugeLabelCollection.OnInsert(int, object)' - castclass - - - 'value' - 'AGaugeLabel' - 'AGaugeLabelCollection.OnInsert(int, object)' - castclass - - - - - - - - - - - 'AGaugeRangeCollection' - IList - - - - - 'AGaugeRangeCollection' - - - - - 'AGaugeRangeCollection' - 'CollectionBase' - - - - - - - - - 'int.ToString()' - 'AGaugeRangeCollection.GetUniqueName()' - 'int.ToString(IFormatProvider)' - - - 'int.ToString()' - 'AGaugeRangeCollection.GetUniqueName()' - 'int.ToString(IFormatProvider)' - - - - - - - - - 'value' - 'AGaugeRange' - 'AGaugeRangeCollection.OnInsert(int, object)' - castclass - - - 'value' - 'AGaugeRange' - 'AGaugeRangeCollection.OnInsert(int, object)' - castclass - - - - - - - - - - - - - - - - Hid inherited members - Hide inherited members - Variable used - - - - - Sign {0} with a strong name key. - - - {0} appears to be a non-generic, strongly typed collection. Add an implementation to the instance of {1}<T> where T is the underlying element type of {0}. - - - {0}, a parameter, is cast to type {1} multiple times in method {2}. Cache the result of the 'as' operator or direct cast in order to eliminate the redundant {3} instruction. - - - {0} should provide a strongly typed implementation of ICollection.CopyTo. - - - Mark {0} with CLSCompliant(true) because it exposes externally visible types. - - - The 'this' parameter (or 'Me' in Visual Basic) of {0} is never used. Mark the member as static (or Shared in Visual Basic) or use 'this'/'Me' in the method body or at least one property accessor, if appropriate. - - - Parameter {0} of {1} is never used. Remove the parameter or use it in the method body. - - - Because the behavior of {0} could vary based on the current user's locale settings, replace this call in {1} with a call to {2}. If the result of {2} will be displayed to the user, specify 'CultureInfo.CurrentCulture' as the 'IFormatProvider' parameter. Otherwise, if the result will be stored and accessed by software, such as when it is persisted to disk or to a database, specify 'CultureInfo.InvariantCulture'. - - - The type name {0} conflicts in whole or in part with the namespace name '{1}'. Change either name to eliminate the conflict. - - - Change the base type of {0} from {1} to its generic equivalent 'System.Collections.ObjectModel.Collection'. - - - - diff --git a/WinNUT_V2/AGauge_mod/AGauge.Designer.cs b/WinNUT_V2/AGauge_mod/AGauge.Designer.cs deleted file mode 100644 index 4bf503b..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge.Designer.cs +++ /dev/null @@ -1,40 +0,0 @@ -namespace System.Windows.Forms -{ - partial class AGauge - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing) - { - if (null != gaugeBitmap) - gaugeBitmap.Dispose(); - - if (null != components) - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - components = new System.ComponentModel.Container(); - } - - #endregion - } -} diff --git a/WinNUT_V2/AGauge_mod/AGauge.bmp b/WinNUT_V2/AGauge_mod/AGauge.bmp deleted file mode 100644 index 53018cb296fafe1915246604ab2628cfc3e573e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmXwxF%|+L3`FC57M32vbJ%;G&34cQD@)7mZT1SBO3-GU5P@WVCV^aUZ;7)I7v}k& z2RV*G9vU)d;W%MP&H*Y*skM?mzz6}nV)A;+{XFVLOVC78zRo-JMc|{lJKGaG`UBWd gN;#2g!yD%R?(aI<*kcB)s%v6T)na!`%{}1y1AumanE(I) diff --git a/WinNUT_V2/AGauge_mod/AGauge.cs b/WinNUT_V2/AGauge_mod/AGauge.cs deleted file mode 100644 index 6a77f15..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge.cs +++ /dev/null @@ -1,1624 +0,0 @@ -// Copyright (C) 2007 A.J.Bauer -// -// This software is provided as-is, without any express or implied -// warranty. In no event will the authors be held liable for any damages -// arising from the use of this software. - -// Permission is granted to anyone to use this software for any purpose, -// including commercial applications, and to alter it and redistribute it -// freely, subject to the following restrictions: -// 1. The origin of this software must not be misrepresented; you must not -// claim that you wrote the original software. if you use this software -// in a product, an acknowledgment in the product documentation would be -// appreciated but is not required. -// 2. Altered source versions must be plainly marked as such, and must not be -// misrepresented as being the original software. -// 3. This notice may not be removed or altered from any source distribution. -// -// ----------------------------------------------------------------------------------- -// Copyright (C) 2012 Code Artist -// -// Added several improvement to original code created by A.J.Bauer. -// Visit: http://codearteng.blogspot.com for more information on change history. -// -// ----------------------------------------------------------------------------------- - -using System.ComponentModel; -using System.Drawing; -using System.Drawing.Drawing2D; -using System.Diagnostics; - -namespace System.Windows.Forms -{ - /// - /// AGauge - Copyright (C) 2007 A.J.Bauer - /// http://www.codeproject.com/Articles/17559/A-fast-and-performing-gauge - /// - [ToolboxBitmap(typeof(AGauge), "AGauge.AGauge.bmp"), - DefaultEvent("ValueInRangeChanged"), - Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")] - public partial class AGauge : Control - { - #region Private Fields - - private float fontBoundY1; - private float fontBoundY2; - private Bitmap gaugeBitmap; - private bool drawGaugeBackground = true; - - //Modified by Gawindx - //private Single m_value1; - private float m_value1; - //Added By Gawindx - private float m_value2; - //private Boolean m_AutoSize = false; - - //private Point m_Center = new Point(100, 100); - //Modified by gawindx - private Point m_Center = new Point(74, 70); - private float m_MinValue = 0; - private float m_MaxValue = 100; - - private Color m_BaseArcColor = Color.Gray; - //Modified by Gawindx - //private Int32 m_BaseArcRadius = 80; - private int m_BaseArcRadius = 45; - private int m_BaseArcStart = 135; - private int m_BaseArcSweep = 270; - //Modified by Gawindx - //private Int32 m_BaseArcStart = -135; - //private Int32 m_BaseArcSweep = -45; - private int m_BaseArcWidth = 5; - - private Color m_ScaleLinesInterColor = Color.Black; - //Modified by Gawindx - //private Int32 m_ScaleLinesInterInnerRadius = 73; - //private Int32 m_ScaleLinesInterOuterRadius = 80; - private int m_ScaleLinesInterInnerRadius = 40; - private int m_ScaleLinesInterOuterRadius = 48; - private int m_ScaleLinesInterWidth = 1; - - - private int m_ScaleLinesMinorTicks = 9; - private Color m_ScaleLinesMinorColor = Color.Gray; - //Modified by Gawindx - //private Int32 m_ScaleLinesMinorInnerRadius = 75; - //private Int32 m_ScaleLinesMinorOuterRadius = 80 - private int m_ScaleLinesMinorInnerRadius = 42; - private int m_ScaleLinesMinorOuterRadius = 48; - private int m_ScaleLinesMinorWidth = 1; - - private float m_ScaleLinesMajorStepValue = 50.0f; - private Color m_ScaleLinesMajorColor = Color.Black; - //Modified by Gawindx - //private Int32 m_ScaleLinesMajorInnerRadius = 70; - //private Int32 m_ScaleLinesMajorOuterRadius = 80; - private int m_ScaleLinesMajorInnerRadius = 40; - private int m_ScaleLinesMajorOuterRadius = 48; - private int m_ScaleLinesMajorWidth = 2; - - //Modified by Gawindx - //private Int32 m_ScaleNumbersRadius = 95; - private int m_ScaleNumbersRadius = 60; - private Color m_ScaleNumbersColor = Color.Black; - private string m_ScaleNumbersFormat; - private int m_ScaleNumbersStartScaleLine; - private int m_ScaleNumbersStepScaleLines = 1; - private int m_ScaleNumbersRotation; - - private NeedleType m_NeedleType; - //Modified by Gawindx - //private Int32 m_NeedleRadius = 80; - private int m_NeedleRadius = 32; - private AGaugeNeedleColor m_NeedleColor1 = AGaugeNeedleColor.Gray; - private Color m_NeedleColor2 = Color.DimGray; - private int m_NeedleWidth = 2; - - //Added By Gawindx - public enum GradientType - { - None, - RedGreen - } - public enum GradientOrientation - { - UpToBottom, - BottomToUp, - RightToLeft, - LeftToRight - } - public enum UnitValue - { - None, - Hertz, - Percent, - Volts, - Watts - } - - private GradientType m_gradientType = GradientType.RedGreen; - private GradientOrientation m_gradientOrientation = GradientOrientation.BottomToUp; - private UnitValue m_unitvalue1 = UnitValue.Volts; - private UnitValue m_unitvalue2 = UnitValue.None; - #endregion - - #region EventHandler - - [Description("This event is raised when gauge value changed.")] - public event EventHandler ValueChanged; - private void OnValueChanged() - { - EventHandler e = ValueChanged; - if (e != null) e(this, null); - } - - [Description("This event is raised if the value is entering or leaving defined range.")] - public event EventHandler ValueInRangeChanged; - private void OnValueInRangeChanged(AGaugeRange range, float value) - { - EventHandler e = ValueInRangeChanged; - if (e != null) e(this, new ValueInRangeChangedEventArgs(range, value, range.InRange)); - } - - #endregion - - #region Hidden and overridden inherited properties - - public new bool AllowDrop { get { return false; } set { /*Do Nothing */ } } - //public new Boolean AutoSize { get { return false; } set { /*Do Nothing */ } } - public new bool ForeColor { get { return false; } set { /*Do Nothing */ } } - public new bool ImeMode { get { return false; } set { /*Do Nothing */ } } - public override Color BackColor - { - get { return base.BackColor; } - set - { - base.BackColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - public override Font Font - { - get { return base.Font; } - set - { - base.Font = value; - drawGaugeBackground = true; - Refresh(); - } - } - public override ImageLayout BackgroundImageLayout - { - get { return base.BackgroundImageLayout; } - set - { - base.BackgroundImageLayout = value; - drawGaugeBackground = true; - Refresh(); - } - } - #endregion - - public AGauge() - { - InitializeComponent(); - SetStyle(ControlStyles.OptimizedDoubleBuffer, true); - _GaugeRanges = new AGaugeRangeCollection(this); - _GaugeLabels = new AGaugeLabelCollection(this); - - //Default Values - //Size = new Size(205, 180); - //Modified by Gawindx - Size = new Size(148, 130); - } - - #region Properties - [Browsable(true), - Category("AGauge"), - //Modified By Gawindx - //System.ComponentModel.Description("Gauge value.")] - Description("Gauge value1.")] - public float Value1 - { - get { return m_value1; } - set - { - value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue); - if (m_value1 != value) - { - m_value1 = value; - OnValueChanged(); - - if (this.DesignMode) drawGaugeBackground = true; - - foreach (AGaugeRange ptrRange in _GaugeRanges) - { - if ((m_value1 >= ptrRange.StartValue) - && (m_value1 <= ptrRange.EndValue)) - { - //Entering Range - if (!ptrRange.InRange) - { - ptrRange.InRange = true; - OnValueInRangeChanged(ptrRange, m_value1); - } - } - else - { - //Leaving Range - if (ptrRange.InRange) - { - ptrRange.InRange = false; - OnValueInRangeChanged(ptrRange, m_value1); - } - } - } - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("Auto size Mode of the gauge.")] - public bool GaugeAutoSize - { - get - { - return base.AutoSize; - } - set - { - base.AutoSize = value; - } - } - - [Browsable(true), - Category("AGauge"), - Description("Gauge Ranges.")] - [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] - public AGaugeRangeCollection GaugeRanges { get { return _GaugeRanges; } } - private AGaugeRangeCollection _GaugeRanges; - - [Browsable(true), - Category("AGauge"), - Description("Gauge Labels.")] - [DesignerSerializationVisibility(DesignerSerializationVisibility.Content)] - public AGaugeLabelCollection GaugeLabels { get { return _GaugeLabels; } } - private AGaugeLabelCollection _GaugeLabels; - - #region << Gauge Base >> - [Browsable(true), - Category("AGauge"), - Description("The center of the gauge (in the control's client area)."), - //Modified By Gawindx - //System.ComponentModel.DefaultValue(typeof(Point), "100, 100")] - DefaultValue(typeof(Point), "148, 130")] - public Point Center - { - get { return m_Center; } - set - { - if (m_Center != value) - { - m_Center = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("UseColor For Arc Base Color.")] - public GradientType GradientColor - { - get { return m_gradientType; } - set - { - if (m_gradientType != value) - { - m_gradientType = value; - Refresh(); - } - } - } - - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Orientation Of Gradient Colors.")] - public GradientOrientation GradientColorOrientation - { - get { return m_gradientOrientation; } - set - { - if (m_gradientOrientation != value) - { - m_gradientOrientation = value; - Refresh(); - } - } - } - - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Units For Value 1")] - public UnitValue UnitValue1 - { - get { return m_unitvalue1; } - set - { - if (m_unitvalue1 != value) - { - m_unitvalue1 = value; - Refresh(); - } - } - } - - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("UseColor For Arc Base Color.")] - public UnitValue UnitValue2 - { - get { return m_unitvalue2; } - set - { - if (m_unitvalue2 != value) - { - m_unitvalue2 = value; - Refresh(); - } - } - } - - //Added By Gawindx - [Browsable(true), - Category("AGauge"), - Description("Second Value To Display.")] - public float Value2 - { - get { return m_value2; } - set - { - if (m_value2 != value) - { - m_value2 = value; - OnValueChanged(); - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the base arc.")] - public Color BaseArcColor - { - get { return m_BaseArcColor; } - set - { - if (m_BaseArcColor != value) - { - m_BaseArcColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The radius of the base arc.")] - public int BaseArcRadius - { - get { return m_BaseArcRadius; } - set - { - if (m_BaseArcRadius != value) - { - m_BaseArcRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The start angle of the base arc.")] - public int BaseArcStart - { - get { return m_BaseArcStart; } - set - { - if (m_BaseArcStart != value) - { - m_BaseArcStart = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The sweep angle of the base arc.")] - public int BaseArcSweep - { - get { return m_BaseArcSweep; } - set - { - if (m_BaseArcSweep != value) - { - m_BaseArcSweep = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the base arc.")] - public int BaseArcWidth - { - get { return m_BaseArcWidth; } - set - { - if (m_BaseArcWidth != value) - { - m_BaseArcWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - #endregion - - #region << Gauge Scale >> - - [Browsable(true), - Category("AGauge"), - Description("The minimum value to show on the scale.")] - public float MinValue - { - get { return m_MinValue; } - set - { - if ((m_MinValue != value) && (value < m_MaxValue)) - { - m_MinValue = value; - m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); - m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The maximum value to show on the scale.")] - public float MaxValue - { - get { return m_MaxValue; } - set - { - if ((m_MaxValue != value) && (value > m_MinValue)) - { - m_MaxValue = value; - m_value1 = Math.Min(Math.Max(m_value1, m_MinValue), m_MaxValue); - m_ScaleLinesMajorStepValue = Math.Min(m_ScaleLinesMajorStepValue, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public Color ScaleLinesInterColor - { - get { return m_ScaleLinesInterColor; } - set - { - if (m_ScaleLinesInterColor != value) - { - m_ScaleLinesInterColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public int ScaleLinesInterInnerRadius - { - get { return m_ScaleLinesInterInnerRadius; } - set - { - if (m_ScaleLinesInterInnerRadius != value) - { - m_ScaleLinesInterInnerRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public int ScaleLinesInterOuterRadius - { - get { return m_ScaleLinesInterOuterRadius; } - set - { - if (m_ScaleLinesInterOuterRadius != value) - { - m_ScaleLinesInterOuterRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the inter scale lines which are the middle scale lines for an uneven number of minor scale lines.")] - public int ScaleLinesInterWidth - { - get { return m_ScaleLinesInterWidth; } - set - { - if (m_ScaleLinesInterWidth != value) - { - m_ScaleLinesInterWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The number of minor scale lines.")] - public int ScaleLinesMinorTicks - { - get { return m_ScaleLinesMinorTicks; } - set - { - if (m_ScaleLinesMinorTicks != value) - { - m_ScaleLinesMinorTicks = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the minor scale lines.")] - public Color ScaleLinesMinorColor - { - get { return m_ScaleLinesMinorColor; } - set - { - if (m_ScaleLinesMinorColor != value) - { - m_ScaleLinesMinorColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the minor scale lines.")] - public int ScaleLinesMinorInnerRadius - { - get { return m_ScaleLinesMinorInnerRadius; } - set - { - if (m_ScaleLinesMinorInnerRadius != value) - { - m_ScaleLinesMinorInnerRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the minor scale lines.")] - public int ScaleLinesMinorOuterRadius - { - get { return m_ScaleLinesMinorOuterRadius; } - set - { - if (m_ScaleLinesMinorOuterRadius != value) - { - m_ScaleLinesMinorOuterRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the minor scale lines.")] - public int ScaleLinesMinorWidth - { - get { return m_ScaleLinesMinorWidth; } - set - { - if (m_ScaleLinesMinorWidth != value) - { - m_ScaleLinesMinorWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The step value of the major scale lines.")] - public float ScaleLinesMajorStepValue - { - get { return m_ScaleLinesMajorStepValue; } - set - { - if ((m_ScaleLinesMajorStepValue != value) && (value > 0)) - { - m_ScaleLinesMajorStepValue = Math.Min(value, m_MaxValue - m_MinValue); - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the major scale lines.")] - public Color ScaleLinesMajorColor - { - get { return m_ScaleLinesMajorColor; } - set - { - if (m_ScaleLinesMajorColor != value) - { - m_ScaleLinesMajorColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The inner radius of the major scale lines.")] - public int ScaleLinesMajorInnerRadius - { - get { return m_ScaleLinesMajorInnerRadius; } - set - { - if (m_ScaleLinesMajorInnerRadius != value) - { - m_ScaleLinesMajorInnerRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The outer radius of the major scale lines.")] - public int ScaleLinesMajorOuterRadius - { - get { return m_ScaleLinesMajorOuterRadius; } - set - { - if (m_ScaleLinesMajorOuterRadius != value) - { - m_ScaleLinesMajorOuterRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the major scale lines.")] - public int ScaleLinesMajorWidth - { - get { return m_ScaleLinesMajorWidth; } - set - { - if (m_ScaleLinesMajorWidth != value) - { - m_ScaleLinesMajorWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - #endregion - - #region << Gauge Scale Numbers >> - - [Browsable(true), - Category("AGauge"), - Description("The radius of the scale numbers.")] - public int ScaleNumbersRadius - { - get { return m_ScaleNumbersRadius; } - set - { - if (m_ScaleNumbersRadius != value) - { - m_ScaleNumbersRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The color of the scale numbers.")] - public Color ScaleNumbersColor - { - get { return m_ScaleNumbersColor; } - set - { - if (m_ScaleNumbersColor != value) - { - m_ScaleNumbersColor = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The format of the scale numbers.")] - public string ScaleNumbersFormat - { - get { return m_ScaleNumbersFormat; } - set - { - if (m_ScaleNumbersFormat != value) - { - m_ScaleNumbersFormat = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The number of the scale line to start writing numbers next to.")] - public int ScaleNumbersStartScaleLine - { - get { return m_ScaleNumbersStartScaleLine; } - set - { - if (m_ScaleNumbersStartScaleLine != value) - { - m_ScaleNumbersStartScaleLine = Math.Max(value, 1); - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The number of scale line steps for writing numbers.")] - public int ScaleNumbersStepScaleLines - { - get { return m_ScaleNumbersStepScaleLines; } - set - { - if (m_ScaleNumbersStepScaleLines != value) - { - m_ScaleNumbersStepScaleLines = Math.Max(value, 1); - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The angle relative to the tangent of the base arc at a scale line that is used to rotate numbers. set to 0 for no rotation or e.g. set to 90.")] - public int ScaleNumbersRotation - { - get { return m_ScaleNumbersRotation; } - set - { - if (m_ScaleNumbersRotation != value) - { - m_ScaleNumbersRotation = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - #endregion - - #region << Gauge Needle >> - - [Browsable(true), - Category("AGauge"), - Description("The type of the needle, currently only type 0 and 1 are supported. Type 0 looks nicers but if you experience performance problems you might consider using type 1.")] - public NeedleType NeedleType - { - get { return m_NeedleType; } - set - { - if (m_NeedleType != value) - { - m_NeedleType = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The radius of the needle.")] - public int NeedleRadius - { - get { return m_NeedleRadius; } - set - { - if (m_NeedleRadius != value) - { - m_NeedleRadius = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The first color of the needle.")] - public AGaugeNeedleColor NeedleColor1 - { - get { return m_NeedleColor1; } - set - { - if (m_NeedleColor1 != value) - { - m_NeedleColor1 = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The second color of the needle.")] - public Color NeedleColor2 - { - get { return m_NeedleColor2; } - set - { - if (m_NeedleColor2 != value) - { - m_NeedleColor2 = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - [Browsable(true), - Category("AGauge"), - Description("The width of the needle.")] - public int NeedleWidth - { - get { return m_NeedleWidth; } - set - { - if (m_NeedleWidth != value) - { - m_NeedleWidth = value; - drawGaugeBackground = true; - Refresh(); - } - } - } - - #endregion - - #endregion - - #region Helper - - private void FindFontBounds() - { - //find upper and lower bounds for numeric characters - int c1; - int c2; - bool boundfound; - using (SolidBrush backBrush = new SolidBrush(Color.White)) - using (SolidBrush foreBrush = new SolidBrush(Color.Black)) - { - using (Bitmap bmpMeasure = new Bitmap(5, 5)) - using (Graphics gMeasure = Graphics.FromImage(bmpMeasure)) - { - SizeF boundingBox = gMeasure.MeasureString("0123456789", Font, -1, StringFormat.GenericTypographic); - using (var b = new Bitmap((int)(boundingBox.Width), (int)(boundingBox.Height))) - using (var g = Graphics.FromImage(b)) - { - g.FillRectangle(backBrush, 0.0F, 0.0F, boundingBox.Width, boundingBox.Height); - g.DrawString("0123456789", Font, foreBrush, 0.0F, 0.0F, StringFormat.GenericTypographic); - - fontBoundY1 = 0; - fontBoundY2 = 0; - c1 = 0; - boundfound = false; - while ((c1 < b.Height) && (!boundfound)) - { - c2 = 0; - while ((c2 < b.Width) && (!boundfound)) - { - if (b.GetPixel(c2, c1) != backBrush.Color) - { - fontBoundY1 = c1; - boundfound = true; - } - c2++; - } - c1++; - } - - c1 = b.Height - 1; - boundfound = false; - while ((0 < c1) && (!boundfound)) - { - c2 = 0; - while ((c2 < b.Width) && (!boundfound)) - { - if (b.GetPixel(c2, c1) != backBrush.Color) - { - fontBoundY2 = c1; - boundfound = true; - } - c2++; - } - c1--; - } - } - } - } - } - - [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)] - public void RepaintControl() - { - drawGaugeBackground = true; - Refresh(); - } - - #endregion - - #region Base member overrides - - protected override void OnPaintBackground(PaintEventArgs pevent) - { - } - protected override void OnPaint(PaintEventArgs e) - { - if ((Width < 10) || (Height < 10)) - { - return; - } - - #region AutoSize - float centerFactor = 1; - var center = Center; - - - if (AutoSize) - { - double widthFactor = ((1.0 / (double)(2 * Center.X)) * (double)Size.Width); - double heightFactor = ((1.0 / (double)(2 * Center.Y)) * (double)Size.Height); - centerFactor = (float)Math.Min(widthFactor, heightFactor); - center = new Point((int)(Center.X * widthFactor), (int)(Center.Y * heightFactor)); - } - #endregion - - #region drawGaugeBackground - if (drawGaugeBackground) - { - drawGaugeBackground = false; - - FindFontBounds(); - - if (gaugeBitmap != null) - { - gaugeBitmap.Dispose(); - gaugeBitmap = null; - } - - gaugeBitmap = new Bitmap(Width, Height, e.Graphics); - using (Graphics ggr = Graphics.FromImage(gaugeBitmap)) - using (GraphicsPath gp = new GraphicsPath()) - { - using (var brBackground = new SolidBrush(BackColor)) - { - ggr.FillRectangle(brBackground, ClientRectangle); - } - - #region BackgroundImage - if (BackgroundImage != null) - { - switch (BackgroundImageLayout) - { - case ImageLayout.Center: - ggr.DrawImageUnscaled(BackgroundImage, Width / 2 - BackgroundImage.Width / 2, Height / 2 - BackgroundImage.Height / 2); - break; - case ImageLayout.None: - ggr.DrawImageUnscaled(BackgroundImage, 0, 0); - break; - case ImageLayout.Stretch: - ggr.DrawImage(BackgroundImage, 0, 0, Width, Height); - break; - case ImageLayout.Tile: - int pixelOffsetX = 0; - int pixelOffsetY = 0; - while (pixelOffsetX < Width) - { - pixelOffsetY = 0; - while (pixelOffsetY < Height) - { - ggr.DrawImageUnscaled(BackgroundImage, pixelOffsetX, pixelOffsetY); - pixelOffsetY += BackgroundImage.Height; - } - pixelOffsetX += BackgroundImage.Width; - } - break; - case ImageLayout.Zoom: - if ((float)(BackgroundImage.Width / Width) < (float)(BackgroundImage.Height / Height)) - { - ggr.DrawImage(BackgroundImage, 0, 0, Height, Height); - } - else - { - ggr.DrawImage(BackgroundImage, 0, 0, Width, Width); - } - break; - } - } - #endregion - - ggr.SmoothingMode = SmoothingMode.HighQuality; - ggr.PixelOffsetMode = PixelOffsetMode.HighQuality; - - - #region _GaugeRanges - float rangeStartAngle; - float rangeSweepAngle; - foreach (AGaugeRange ptrRange in _GaugeRanges) - { - if (ptrRange.EndValue > ptrRange.StartValue) - { - rangeStartAngle = m_BaseArcStart + (ptrRange.StartValue - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); - rangeSweepAngle = (ptrRange.EndValue - ptrRange.StartValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue); - gp.Reset(); - int outerRadius = (int)(ptrRange.OuterRadius * centerFactor); - gp.AddPie(new Rectangle(center.X - outerRadius, center.Y - outerRadius, - 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); - gp.Reverse(); - int innerRadius = (int)(ptrRange.InnerRadius * centerFactor); - gp.AddPie(new Rectangle(center.X - innerRadius, center.Y - innerRadius, - 2 * innerRadius, 2 * innerRadius), rangeStartAngle, rangeSweepAngle); - gp.Reverse(); - ggr.SetClip(gp); - using (var brRange = new SolidBrush(ptrRange.Color)) - { - ggr.FillPie(brRange, new Rectangle(center.X - outerRadius, center.Y - outerRadius, 2 * outerRadius, 2 * outerRadius), rangeStartAngle, rangeSweepAngle); - } - } - } - #endregion - - ggr.SetClip(ClientRectangle); - if (m_BaseArcRadius > 0) - { - int baseArcRadius = (int)(m_BaseArcRadius * centerFactor); - if (m_gradientType != GradientType.None) - { - Point GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - Point GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - switch (m_gradientOrientation) - { - case GradientOrientation.UpToBottom: - GradientP1Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - GradientP2Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - break; - case GradientOrientation.BottomToUp: - GradientP1Brush = new Point(0, (Center.X + baseArcRadius + m_BaseArcWidth + 2)); - GradientP2Brush = new Point(0, (Center.X - baseArcRadius - m_BaseArcWidth - 2)); - break; - case GradientOrientation.RightToLeft: - GradientP1Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); - GradientP2Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); - break; - case GradientOrientation.LeftToRight: - GradientP1Brush = new Point((Center.Y - baseArcRadius - m_BaseArcWidth - 2), 0); - GradientP2Brush = new Point((Center.Y + baseArcRadius + m_BaseArcWidth + 2), 0); - break; - } - LinearGradientBrush myArc1Gradient = new LinearGradientBrush(GradientP1Brush, GradientP2Brush, Color.Red, Color.Green); - using (var pnArc = new Pen(myArc1Gradient, (int)(m_BaseArcWidth * centerFactor))) - { - ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); - } - } - else - { - using (var pnArc = new Pen(m_BaseArcColor, (int)(m_BaseArcWidth * centerFactor))) - { - ggr.DrawArc(pnArc, new Rectangle(center.X - baseArcRadius, center.Y - baseArcRadius, 2 * baseArcRadius, 2 * baseArcRadius), m_BaseArcStart, m_BaseArcSweep); - } - } - } - - #region ScaleNumbers - string valueText = ""; - SizeF boundingBox; - float countValue = 0; - int counter1 = 0; - var Format = StringFormat.GenericTypographic; - Format.Alignment = StringAlignment.Near; - - using (var pnMajorScaleLines = new Pen(m_ScaleLinesMajorColor, (int)(m_ScaleLinesMajorWidth * centerFactor))) - using (var brScaleNumbers = new SolidBrush(m_ScaleNumbersColor)) - { - while (countValue <= (m_MaxValue - m_MinValue)) - { - valueText = (m_MinValue + countValue).ToString(m_ScaleNumbersFormat); - ggr.ResetTransform(); - boundingBox = ggr.MeasureString(valueText, Font, -1, StringFormat.GenericTypographic); - - gp.Reset(); - int scaleLinesMajorOuterRadius = (int)(m_ScaleLinesMajorOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorOuterRadius, center.Y - scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius, 2 * scaleLinesMajorOuterRadius)); - gp.Reverse(); - int scaleLinesMajorInnerRadius = (int)(m_ScaleLinesMajorInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMajorInnerRadius, center.Y - scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius, 2 * scaleLinesMajorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - ggr.DrawLine(pnMajorScaleLines, - (float)(center.X), - (float)(center.Y), - (float)(center.X + 2 * scaleLinesMajorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0)), - (float)(center.Y + 2 * scaleLinesMajorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0))); - - gp.Reset(); - int scaleLinesMinorOuterRadius = (int)(m_ScaleLinesMinorOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); - gp.Reverse(); - int scaleLinesMinorInnerRadius = (int)(m_ScaleLinesMinorInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - if (countValue < (m_MaxValue - m_MinValue)) - { - using (var pnScaleLinesInter = new Pen(m_ScaleLinesInterColor, (int)(m_ScaleLinesInterWidth * centerFactor))) - using (var pnScaleLinesMinorColor = new Pen(m_ScaleLinesMinorColor, (int)(m_ScaleLinesMinorWidth * centerFactor))) - { - for (int counter2 = 1; counter2 <= m_ScaleLinesMinorTicks; counter2++) - { - if (((m_ScaleLinesMinorTicks % 2) == 1) && (m_ScaleLinesMinorTicks / 2) + 1 == counter2) - { - gp.Reset(); - int scaleLinesInterOuterRadius = (int)(m_ScaleLinesInterOuterRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesInterOuterRadius, center.Y - scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius, 2 * scaleLinesInterOuterRadius)); - gp.Reverse(); - int scaleLinesInterInnerRadius = (int)(m_ScaleLinesInterInnerRadius * centerFactor); - gp.AddEllipse(new Rectangle(center.X - scaleLinesInterInnerRadius, center.Y - scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius, 2 * scaleLinesInterInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - - ggr.DrawLine(pnScaleLinesInter, - (float)(center.X), - (float)(center.Y), - (float)(center.X + 2 * scaleLinesInterOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (float)(center.Y + 2 * scaleLinesInterOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); - - gp.Reset(); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorOuterRadius, center.Y - scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius, 2 * scaleLinesMinorOuterRadius)); - gp.Reverse(); - gp.AddEllipse(new Rectangle(center.X - scaleLinesMinorInnerRadius, center.Y - scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius, 2 * scaleLinesMinorInnerRadius)); - gp.Reverse(); - ggr.SetClip(gp); - } - else - { - ggr.DrawLine(pnScaleLinesMinorColor, - (float)(center.X), - (float)(center.Y), - (float)(center.X + 2 * scaleLinesMinorOuterRadius * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0)), - (float)(center.Y + 2 * scaleLinesMinorOuterRadius * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue) + counter2 * m_BaseArcSweep / (((float)((m_MaxValue - m_MinValue) / m_ScaleLinesMajorStepValue)) * (m_ScaleLinesMinorTicks + 1))) * Math.PI / 180.0))); - } - } - } - } - - ggr.SetClip(ClientRectangle); - - if (m_ScaleNumbersRotation != 0) - { - ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.AntiAlias; - ggr.RotateTransform(90.0F + m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)); - } - - ggr.TranslateTransform((float)(center.X + (m_ScaleNumbersRadius * centerFactor) * Math.Cos((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), - (float)(center.Y + (m_ScaleNumbersRadius * centerFactor) * Math.Sin((m_BaseArcStart + countValue * m_BaseArcSweep / (m_MaxValue - m_MinValue)) * Math.PI / 180.0f)), - System.Drawing.Drawing2D.MatrixOrder.Append); - - - if (counter1 >= ScaleNumbersStartScaleLine - 1) - { - var ptText = new PointF((-boundingBox.Width / 2f), (-fontBoundY1 - (fontBoundY2 - fontBoundY1 + 1f) / 2f)); - ggr.DrawString(valueText, Font, brScaleNumbers, ptText.X, ptText.Y, Format); - } - - countValue += m_ScaleLinesMajorStepValue; - counter1++; - } - } - #endregion - - ggr.ResetTransform(); - ggr.SetClip(ClientRectangle); - - if (m_ScaleNumbersRotation != 0) - { - ggr.TextRenderingHint = System.Drawing.Text.TextRenderingHint.SystemDefault; - } - - #region _GaugeLabels - Format = StringFormat.GenericTypographic; - Format.Alignment = StringAlignment.Center; - foreach (AGaugeLabel ptrGaugeLabel in _GaugeLabels) - { - if (!string.IsNullOrEmpty(ptrGaugeLabel.Text)) - { - using (var brGaugeLabel = new SolidBrush(ptrGaugeLabel.Color)) - { - ggr.DrawString(ptrGaugeLabel.Text, ptrGaugeLabel.Font, brGaugeLabel, - (ptrGaugeLabel.Position.X) * centerFactor + center.X, - (ptrGaugeLabel.Position.Y) * centerFactor + center.Y, Format); - } - } - } - #endregion - } - } - #endregion - - e.Graphics.DrawImageUnscaled(gaugeBitmap, 0, 0); - e.Graphics.SmoothingMode = SmoothingMode.AntiAlias; - e.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality; - - #region Needle - float brushAngle = (int)(m_BaseArcStart + (m_value1 - m_MinValue) * m_BaseArcSweep / (m_MaxValue - m_MinValue)) % 360; - if (brushAngle < 0) brushAngle += 360; - double needleAngle = brushAngle * Math.PI / 180; - - int needleWidth = (int)(m_NeedleWidth * centerFactor); - int needleRadius = (int)(m_NeedleRadius * centerFactor); - switch (m_NeedleType) - { - case NeedleType.Advance: - PointF[] points = new PointF[3]; - - int subcol = (int)(((brushAngle + 225) % 180) * 100 / 180); - int subcol2 = (int)(((brushAngle + 135) % 180) * 100 / 180); - - using (var brNeedle = new SolidBrush(m_NeedleColor2)) - { - e.Graphics.FillEllipse(brNeedle, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - } - - Color clr1 = Color.White; - Color clr2 = Color.White; - Color clr3 = Color.White; - Color clr4 = Color.White; - - switch (m_NeedleColor1) - { - case AGaugeNeedleColor.Gray: - clr1 = Color.FromArgb(80 + subcol, 80 + subcol, 80 + subcol); - clr2 = Color.FromArgb(180 - subcol, 180 - subcol, 180 - subcol); - clr3 = Color.FromArgb(80 + subcol2, 80 + subcol2, 80 + subcol2); - clr4 = Color.FromArgb(180 - subcol2, 180 - subcol2, 180 - subcol2); - e.Graphics.DrawEllipse(Pens.Gray, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Red: - clr1 = Color.FromArgb(145 + subcol, subcol, subcol); - clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 100 - subcol); - clr3 = Color.FromArgb(145 + subcol2, subcol2, subcol2); - clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Red, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Green: - clr1 = Color.FromArgb(subcol, 145 + subcol, subcol); - clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 100 - subcol); - clr3 = Color.FromArgb(subcol2, 145 + subcol2, subcol2); - clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Green, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Blue: - clr1 = Color.FromArgb(subcol, subcol, 145 + subcol); - clr2 = Color.FromArgb(100 - subcol, 100 - subcol, 245 - subcol); - clr3 = Color.FromArgb(subcol2, subcol2, 145 + subcol2); - clr4 = Color.FromArgb(100 - subcol2, 100 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Blue, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Magenta: - clr1 = Color.FromArgb(subcol, 145 + subcol, 145 + subcol); - clr2 = Color.FromArgb(100 - subcol, 245 - subcol, 245 - subcol); - clr3 = Color.FromArgb(subcol2, 145 + subcol2, 145 + subcol2); - clr4 = Color.FromArgb(100 - subcol2, 245 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Magenta, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Violet: - clr1 = Color.FromArgb(145 + subcol, subcol, 145 + subcol); - clr2 = Color.FromArgb(245 - subcol, 100 - subcol, 245 - subcol); - clr3 = Color.FromArgb(145 + subcol2, subcol2, 145 + subcol2); - clr4 = Color.FromArgb(245 - subcol2, 100 - subcol2, 245 - subcol2); - e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - case AGaugeNeedleColor.Yellow: - clr1 = Color.FromArgb(145 + subcol, 145 + subcol, subcol); - clr2 = Color.FromArgb(245 - subcol, 245 - subcol, 100 - subcol); - clr3 = Color.FromArgb(145 + subcol2, 145 + subcol2, subcol2); - clr4 = Color.FromArgb(245 - subcol2, 245 - subcol2, 100 - subcol2); - e.Graphics.DrawEllipse(Pens.Violet, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - break; - } - - if (Math.Floor((float)(((brushAngle + 225) % 360) / 180.0)) == 0) - { - Color clrTemp = clr1; - clr1 = clr2; - clr2 = clrTemp; - } - - if (Math.Floor((float)(((brushAngle + 135) % 360) / 180.0)) == 0) - { - clr4 = clr3; - } - - using (Brush brush1 = new SolidBrush(clr1)) - using (Brush brush2 = new SolidBrush(clr2)) - using (Brush brush3 = new SolidBrush(clr3)) - using (Brush brush4 = new SolidBrush(clr4)) - { - points[0].X = (float)(center.X + needleRadius * Math.Cos(needleAngle)); - points[0].Y = (float)(center.Y + needleRadius * Math.Sin(needleAngle)); - points[1].X = (float)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[1].Y = (float)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); - e.Graphics.FillPolygon(brush1, points); - - points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); - e.Graphics.FillPolygon(brush2, points); - - points[0].X = (float)(center.X - (needleRadius / 20 - 1) * Math.Cos(needleAngle)); - points[0].Y = (float)(center.Y - (needleRadius / 20 - 1) * Math.Sin(needleAngle)); - points[1].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle + Math.PI / 2)); - points[1].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle + Math.PI / 2)); - points[2].X = (float)(center.X - needleRadius / 5 * Math.Cos(needleAngle) + needleWidth * 2 * Math.Cos(needleAngle - Math.PI / 2)); - points[2].Y = (float)(center.Y - needleRadius / 5 * Math.Sin(needleAngle) + needleWidth * 2 * Math.Sin(needleAngle - Math.PI / 2)); - e.Graphics.FillPolygon(brush4, points); - - points[0].X = (float)(center.X - needleRadius / 20 * Math.Cos(needleAngle)); - points[0].Y = (float)(center.Y - needleRadius / 20 * Math.Sin(needleAngle)); - points[1].X = (float)(center.X + needleRadius * Math.Cos(needleAngle)); - points[1].Y = (float)(center.Y + needleRadius * Math.Sin(needleAngle)); - - using (var pnNeedle = new Pen(m_NeedleColor2)) - { - e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[0].X, points[0].Y); - e.Graphics.DrawLine(pnNeedle, center.X, center.Y, points[1].X, points[1].Y); - } - } - break; - case NeedleType.Simple: - Point startPoint = new Point((int)(center.X - needleRadius / 8 * Math.Cos(needleAngle)), - (int)(center.Y - needleRadius / 8 * Math.Sin(needleAngle))); - Point endPoint = new Point((int)(center.X + needleRadius * Math.Cos(needleAngle)), - (int)(center.Y + needleRadius * Math.Sin(needleAngle))); - - using (var brDisk = new SolidBrush(m_NeedleColor2)) - { - e.Graphics.FillEllipse(brDisk, center.X - needleWidth * 3, center.Y - needleWidth * 3, needleWidth * 6, needleWidth * 6); - } - - using (var pnLine = new Pen(GetColor(m_NeedleColor1), needleWidth)) - { - e.Graphics.DrawLine(pnLine, center.X, center.Y, endPoint.X, endPoint.Y); - e.Graphics.DrawLine(pnLine, center.X, center.Y, startPoint.X, startPoint.Y); - } - break; - } - #endregion - - #region DisplayValue - var PenString = new Pen(Color.Black); - Font PenFontV1 = new Font("Microsoft Sans Serif", 8, FontStyle.Bold); - Font PenFontV2 = new Font("Microsoft Sans Serif", 7, FontStyle.Bold); - SolidBrush StringPen = new SolidBrush(Color.Black); - int LineHeight = 15; - PointF StrPos = Center; - StrPos.Y = StrPos.Y + 5; - if (UnitValue1 != UnitValue.None) - { - string StringToDraw = ""; - switch (UnitValue1) - { - case UnitValue.Hertz: - StringToDraw = $"{Value1.ToString()} Hz"; - break; - case UnitValue.Percent: - StringToDraw = $"{Value1.ToString()} %"; - break; - case UnitValue.Volts: - StringToDraw = $"{Value1.ToString()} V"; - break; - case UnitValue.Watts: - StringToDraw = $"{Value1.ToString()} W"; - break; - } - Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV1); - StrPos.Y = StrPos.Y + LineHeight; - e.Graphics.DrawString(StringToDraw, PenFontV1, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 5), StrPos.Y)); - } - if (UnitValue2 != UnitValue.None) - { - string StringToDraw = ""; - switch (UnitValue2) - { - case UnitValue.Hertz: - StringToDraw = $"{Value2.ToString()} Hz"; - break; - case UnitValue.Percent: - StringToDraw = $"{Value2.ToString()} %"; - break; - case UnitValue.Volts: - StringToDraw = $"{Value2.ToString()} V"; - break; - case UnitValue.Watts: - StringToDraw = $"{Value2.ToString()} W"; - break; - } - Size StringSize = TextRenderer.MeasureText(StringToDraw, PenFontV2); - StrPos.Y = StrPos.Y + LineHeight; - e.Graphics.DrawString(StringToDraw, PenFontV2, StringPen, new PointF((StrPos.X - (StringSize.Width / 2) + 7), StrPos.Y)); - } - - #endregion - } - - private Color GetColor(AGaugeNeedleColor clr) - { - switch (clr) - { - case AGaugeNeedleColor.Gray: - return Color.DarkGray; - case AGaugeNeedleColor.Red: - return Color.Red; - case AGaugeNeedleColor.Green: - return Color.Green; - case AGaugeNeedleColor.Blue: - return Color.Blue; - case AGaugeNeedleColor.Yellow: - return Color.Yellow; - case AGaugeNeedleColor.Violet: - return Color.Violet; - case AGaugeNeedleColor.Magenta: - return Color.Magenta; - default: - Debug.Fail("Missing enumeration"); - return Color.DarkGray; - } - } - - protected override void OnResize(EventArgs e) - { - drawGaugeBackground = true; - Refresh(); - } - #endregion - } - - #region [ Gauge Enum ] - - /// - /// First needle color - /// - public enum AGaugeNeedleColor - { - Gray = 0, - Red = 1, - Green = 2, - Blue = 3, - Yellow = 4, - Violet = 5, - Magenta = 6 - }; - - public enum NeedleType - { - Advance, - Simple - } - - #endregion - - #region [ EventArgs ] - /// - /// Event argument for event. - /// - public class ValueInRangeChangedEventArgs : EventArgs - { - /// - /// Affected GaugeRange - /// - public AGaugeRange Range { get; private set; } - /// - /// Gauge Value - /// - public float Value { get; private set; } - /// - /// True if value is within current range. - /// - public bool InRange { get; private set; } - public ValueInRangeChangedEventArgs(AGaugeRange range, float value, bool inRange) - { - this.Range = range; - this.Value = value; - this.InRange = inRange; - } - } - #endregion - - [Runtime.CompilerServices.CompilerGenerated] - class NamespaceDoc { } //Namespace Documentation -} diff --git a/WinNUT_V2/AGauge_mod/AGauge.csproj b/WinNUT_V2/AGauge_mod/AGauge.csproj deleted file mode 100644 index afa3072..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge.csproj +++ /dev/null @@ -1,74 +0,0 @@ - - - - Debug - AnyCPU - 8.0.30703 - 2.0 - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F} - Library - Properties - System.Windows.Forms - AGauge - v4.8 - 512 - - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - false - false - - - none - true - bin\Release\ - - - prompt - 4 - false - - - - - - - - - - - - - - - Component - - - AGauge.cs - - - - - - - - - - - - - - \ No newline at end of file diff --git a/WinNUT_V2/AGauge_mod/AGauge.csproj.user b/WinNUT_V2/AGauge_mod/AGauge.csproj.user deleted file mode 100644 index c10e84b..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge.csproj.user +++ /dev/null @@ -1,6 +0,0 @@ - - - - ProjectFiles - - \ No newline at end of file diff --git a/WinNUT_V2/AGauge_mod/AGauge.sln b/WinNUT_V2/AGauge_mod/AGauge.sln deleted file mode 100644 index c6b9885..0000000 --- a/WinNUT_V2/AGauge_mod/AGauge.sln +++ /dev/null @@ -1,25 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.30204.135 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AGauge", "AGauge.csproj", "{CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Debug|Any CPU.Build.0 = Debug|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|Any CPU.ActiveCfg = Release|Any CPU - {CBDB1D25-5A95-43D4-A958-BF6AE65C6C3F}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {1586E473-36E5-4EDA-8ADA-4217772EEF1F} - EndGlobalSection -EndGlobal diff --git a/WinNUT_V2/AGauge_mod/AGaugeLabel.cs b/WinNUT_V2/AGauge_mod/AGaugeLabel.cs deleted file mode 100644 index d16b7b2..0000000 --- a/WinNUT_V2/AGauge_mod/AGaugeLabel.cs +++ /dev/null @@ -1,128 +0,0 @@ -// WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. -// Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) -// -// This program is free software: you can redistribute it and/or modify it under the terms of the -// GNU General Public License as published by the Free Software Foundation, either version 3 of the -// License, or any later version. -// -// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY - -using System.Collections; -using System.ComponentModel; -using System.Drawing; - -namespace System.Windows.Forms -{ - public class AGaugeLabel - { - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the caption text.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color = Color.FromKnownColor(KnownColor.WindowText); - - [Browsable(true), - Category("Appearance"), - Description("The text of the caption.")] - public string Text { get { return _Text; } set { _Text = value; NotifyOwner(); } } - private string _Text; - - [Browsable(true), - Category("Appearance"), - Description("The position of the caption.")] - public Point Position { get { return _Position; } set { _Position = value; NotifyOwner(); } } - private Point _Position; - - [Browsable(true), - Category("Appearance"), - Description("Font of Text.")] - public Font Font { get { return _Font; } set { _Font = value; NotifyOwner(); } } - private Font _Font = DefaultFont; - - public void ResetFont() { _Font = DefaultFont; } - private bool ShouldSerializeFont() { return (_Font != DefaultFont); } - private static Font DefaultFont = System.Windows.Forms.Control.DefaultFont; - } - - public class AGaugeLabelCollection : CollectionBase - { - private AGauge Owner; - public AGaugeLabelCollection(AGauge sender) { Owner = sender; } - - public AGaugeLabel this[int index] { get { return (AGaugeLabel)List[index]; } } - public bool Contains(AGaugeLabel itemType) { return List.Contains(itemType); } - public int Add(AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeLabel itemType) - { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeLabel itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeLabel itemType) { return List.IndexOf(itemType); } - public AGaugeLabel FindByName(string name) - { - foreach (AGaugeLabel ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } - - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeLabel)value).Name)) ((AGaugeLabel)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeLabel)value).SetOwner(Owner); - } - protected override void OnRemove(int index, object value) - { - if (Owner != null) Owner.RepaintControl(); - } - protected override void OnClear() - { - if (Owner != null) Owner.RepaintControl(); - } - - private string GetUniqueName() - { - const string Prefix = "GaugeLabel"; - int index = 1; - while (this.Count != 0) - { - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - continue; - else - return Prefix + index.ToString(); - } - index++; - }; - return Prefix + index.ToString(); - } - } -} diff --git a/WinNUT_V2/AGauge_mod/AGaugeRange.cs b/WinNUT_V2/AGauge_mod/AGaugeRange.cs deleted file mode 100644 index 9a6cfb4..0000000 --- a/WinNUT_V2/AGauge_mod/AGaugeRange.cs +++ /dev/null @@ -1,187 +0,0 @@ -// WinNUT-Client is a NUT windows client for monitoring your ups hooked up to your favorite linux server. -// Copyright (C) 2019-2021 Gawindx (Decaux Nicolas) -// -// This program is free software: you can redistribute it and/or modify it under the terms of the -// GNU General Public License as published by the Free Software Foundation, either version 3 of the -// License, or any later version. -// -// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY - -using System.Collections; -using System.ComponentModel; -using System.Drawing; - -namespace System.Windows.Forms -{ - public class AGaugeRange - { - public AGaugeRange() { } - - public AGaugeRange(Color color, float startValue, float endValue) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - } - - public AGaugeRange(Color color, float startValue, float endValue, int innerRadius, int outerRadius) - { - Color = color; - _StartValue = startValue; - _EndValue = endValue; - InnerRadius = innerRadius; - OuterRadius = outerRadius; - } - - [Browsable(true), - Category("Design"), - DisplayName("(Name)"), - Description("Instance Name.")] - public string Name { get; set; } - - [Browsable(false)] - public bool InRange { get; set; } - - private AGauge Owner; - [Browsable(false)] - public void SetOwner(AGauge value) { Owner = value; } - private void NotifyOwner() { if (Owner != null) Owner.RepaintControl(); } - - [Browsable(true), - Category("Appearance"), - Description("The color of the range.")] - public Color Color { get { return _Color; } set { _Color = value; NotifyOwner(); } } - private Color _Color; - - [Browsable(true), - Category("Limits"), - Description("The start value of the range, must be less than RangeEndValue.")] - public float StartValue - { - get { return _StartValue; } - set - { - if (Owner != null) - { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; - } - _StartValue = value; NotifyOwner(); - } - } - private float _StartValue; - - [Browsable(true), - Category("Limits"), - Description("The end value of the range. Must be greater than RangeStartValue.")] - public float EndValue - { - get { return _EndValue; } - set - { - if (Owner != null) - { - if (value < Owner.MinValue) value = Owner.MinValue; - if (value > Owner.MaxValue) value = Owner.MaxValue; - } - _EndValue = value; NotifyOwner(); - } - } - private float _EndValue; - - [Browsable(true), - Category("Appearance"), - Description("The inner radius of the range.")] - public int InnerRadius - { - get { return _InnerRadius; } - set { if (value > 0) { _InnerRadius = value; NotifyOwner(); } } - } - private int _InnerRadius = 70; - - [Browsable(true), - Category("Appearance"), - Description("The outer radius of the range.")] - public int OuterRadius - { - get { return _OuterRadius; } - set { if (value > 0) { _OuterRadius = value; NotifyOwner(); } } - } - private int _OuterRadius = 80; - } - - public class AGaugeRangeCollection : CollectionBase - { - private AGauge Owner; - public AGaugeRangeCollection(AGauge sender) { Owner = sender; } - - public AGaugeRange this[int index] { get { return (AGaugeRange)List[index]; } } - public bool Contains(AGaugeRange itemType) { return List.Contains(itemType); } - public int Add(AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - var ret = List.Add(itemType); - if (Owner != null) Owner.RepaintControl(); - return ret; - } - public void Remove(AGaugeRange itemType) - { - List.Remove(itemType); - if (Owner != null) Owner.RepaintControl(); - } - public void Insert(int index, AGaugeRange itemType) - { - itemType.SetOwner(Owner); - if (string.IsNullOrEmpty(itemType.Name)) itemType.Name = GetUniqueName(); - List.Insert(index, itemType); - if (Owner != null) Owner.RepaintControl(); - } - public int IndexOf(AGaugeRange itemType) { return List.IndexOf(itemType); } - public AGaugeRange FindByName(string name) - { - foreach (AGaugeRange ptrRange in List) - { - if (ptrRange.Name == name) return ptrRange; - } - return null; - } - - protected override void OnInsert(int index, object value) - { - if (string.IsNullOrEmpty(((AGaugeRange)value).Name)) ((AGaugeRange)value).Name = GetUniqueName(); - base.OnInsert(index, value); - ((AGaugeRange)value).SetOwner(Owner); - } - protected override void OnRemove(int index, object value) - { - if (Owner != null) Owner.RepaintControl(); - } - protected override void OnClear() - { - if (Owner != null) Owner.RepaintControl(); - } - - private string GetUniqueName() - { - const string Prefix = "GaugeRange"; - int index = 1; - bool valid; - while (this.Count != 0) - { - valid = true; - for (int x = 0; x < this.Count; x++) - { - if (this[x].Name == (Prefix + index.ToString())) - { - valid = false; - break; - } - } - if (valid) break; - index++; - }; - return Prefix + index.ToString(); - } - } -} diff --git a/WinNUT_V2/AGauge_mod/Properties/AssemblyInfo.cs b/WinNUT_V2/AGauge_mod/Properties/AssemblyInfo.cs deleted file mode 100644 index 35fe8e4..0000000 --- a/WinNUT_V2/AGauge_mod/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,35 +0,0 @@ -using System.Reflection; -using System.Runtime.CompilerServices; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("AGauge")] -[assembly: AssemblyDescription("AGauge Component by A.J.Bauer - Modified for WinNUT")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCulture("")] -[assembly: AssemblyCompany("Gawindx")] -[assembly: AssemblyProduct("WinNUT-Client")] -[assembly: AssemblyCopyright("Copyright Gawinx (Decaux Nicolas) © 2019-2021")] -[assembly: AssemblyTrademark("https://github.com/gawindx/WinNUT-Client")] - -// Setting ComVisible to false makes the types in this assembly not visible -// to COM components. If you need to access a type in this assembly from -// COM, set the ComVisible attribute to true on that type. - [assembly: ComVisible(false)] - -// The following GUID is for the ID of the typelib if this project is exposed to COM -[assembly: Guid("cddfb4ae-46c7-4151-98dd-cbd9e7c1d04d")] - -// Version information for an assembly consists of the following four values: -// -// Major Version -// Minor Version -// Build Number -// Revision -// -// You can specify all the values or you can default the Build and Revision Numbers -// by using the '*' as shown below: -// [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("2.1.*")] diff --git a/WinNUT_V2/WinNUT-Client/lib/AGauge.dll b/WinNUT_V2/WinNUT-Client/lib/AGauge.dll deleted file mode 100644 index 16904e551019b2d80cb4602a1078954006f3b26f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40960 zcmeIb3w%_^l_z}e?RQIR>8kYv85#q23kmTw28;nA@sQ2SNMH$Ya3eL)rqwNXOFS$q z7LH%U@e;>QVkg8gwiAae$t1Cp*jbaojx%G%PJZzw-Y?l?GdPn;%x5Pv-b|j8f$x7# z)$NyBKz26S-#5Q)=yU7*tLoILQ>UKy-qyOUA0!76Iq^Mzp6EGT`LkT;g~=$Q1CzfN zpl5yGn(~~n_FGfB_QcYmfmCvLD$*b7jU*Du!O+fVC^eJ_#S)?R4V|I>WM8zUtjs@6 zi{7}BXszL(Z*94|*Dmc0T^=eiW)nRE#I4XPzJhBA-&6P!RY=%WdNZJtA!HB%=Z}MK zzMGTs|Lj$>4B_*=FB5Ixz$v01u^|dSXNXFH9etLlp)l@3e2B=K6YmATCWmhsj2;*S z-~15}#7SMX-r(dDBD%RHl}@o?M7L82a6^3z-<;2KG*?S18c!l2>q=+vWm%8moAX&t zv?7ON{DUopY3Untg7wDmexD2?f~l(ZtXT zX2{hGnoNXVj6yGn8mm`fKGExf`CN1b^g?s7UaCN)SGC)8I33A{;k4nFIq6I07GYnspYNgF6E)VX7(vBsu}~I?R*gU>NsO|%;F-ei7@5mgrNBH6 zz84Yxk@*~~9l1(f7VxEJgKO7bbiM<14&Cfi{3$TaJ>;0YK9%6 zZ5Z|UmwKB$y7iHVl}*AP{<4K1LVk8$NYwtkFUKtC;yM}T7bF`h4vk&DaYVWgNm z#`EPda&dV)9u-%gBNKyTenyjm*eM~vs&LDp4yqfIeC=T%oRd5q`FW8~uc@$#*h zJjV0oF>-NvybLTRkMVqYj9fsTZVz5d7L&(#etXEObA0<@iNf67zz;I*j$SKe>{lJe8jCDgLbhNlVMhfPOTFs*B}QHc~qmdJr^sn%qr6*vV!B67_b6dVvnC{+*v)!t@4>q(2vV3ANEW>y=MZOyM^Lt zH=^CyXct(QW;xmk-f2gd_?kVos2Q!;_Q8m>3*W2Iq94b%j7^IV<2T{E4%lZ4a7;6F z1lZRKaBhpIft@bE>wv!q><0ySDexZwdkfzZg!!|g=)TTDXn3lUewkd47MVWNc|}!I z`FAk$8)2M7`jZ<$2ATD{)o~F<%Bbn&c(~OWme7*@*z@dC^61k3UiFpSFYz}zux*70f|J+hDyhTFioJ~fpY_;9Aa0}AGZllZmW*9+tiJ9cR zE^n_FeT)q_(mkz8sBDyyE$!1Wl6XPf%w*-w`lUMW0G%E$$b_) zE4&@dUVo)gP(a-BZjI$&EG2IFw#LF(x1bje^9&S3k65&cy#}W;G9|G%9Ip&J5sQ`x zawovHN%$mO3OTDrI1<|?v5m5eBl#Z0rFVcxtjeIqjX?Tlz`=4dlc=8>rGm9&1*}># z908Kt2}11cwea>@?d>KX?D|=UI;(EcK6n`fz(xGQ2CE@B(VDmt3KNDex(#0r!;19x z_%2+7#8yBFP+Hb)Q=AMIb=!KB))|zC382Y7R%D?sCwone2LA#+sn@;1auoIIWqWR5|AiUS?f3^EInJN73$JJpm9q zBf%tV(#%gaC2|s|sBL?5geq~{_9FdcYjSfaqXa9>F080hnwlo%#j~?3nRYx^x-N+^ z27@~SyEy=NXoCmH=~Xbau#e3Z$~nK9Le>;Hs>0nPs+y~F$Os>WXsYAIdtSgY}3Y`ibs=8EyWthVauxkzMf2DP0 z^MK~XJYjXhWe!hf%fn!M(@A6r;)pO{HQIWHGxZLm-eJ@`tmQ<%S43usT&&=0hhB?e@d1bgJTDZys0m@aZs_x+I z%GqieA5O8xl~y2`W@%8oa_p)mXgh~F%o`%9d~>#Cn=>_RMh%-$!)8^(onqtC}lDcP-x*9zy=D-L}MkkEDG{QgXkpymTvbn7905xt46@TQZezLFHRe`Icgp zH;1v#RGDXGGtbIoo`uY_ka_8Tl3ZN`c>9di%Lw$&pHr1S=D4gwk8WQ zHCcd~EI>^b6sw6jJjKp@bvE*lLZ)-5sp5s?lWCg5-{(d@C`y#9FfW6TeeU*Mzoe z$~N5$uroB9oo4fw70_(c1Rs=9tyE9uWG``(OyL01s z1*qaA)Sa;te6$r6ZMA)r^^%p=cE0;rV=XPV(qcz1N3Qa$wE|!Rwh*-=Qu`o#6QQsP zYB{YKy`;{pr`*!!UT*VomH@HP9t=e{?Jf1PI}m2V71oMoFLTefb(eaJ4%=ns@N&qM zIUGK9tsQom!%GkjuCvw!*IH|v%bUnrTYF6>`qaXM*wxoRfFn&K*v8T$ZR~*a+in7V zWyMwrZ;J)nInGl&ZlyWQr(tR(x1Lm$t@XNjENA`J%mm0`%h|A%zsWn$RI&nI50kFf zCJmzo{@^NgS*)TP55Udq+jXl)E`ur{oO{bWb@DO~5lT6}(S1l{SMOg#65Z!{Uf~sJe#_p@554|4y#{ z!e2q*(1WM}RJ7Wyc3Zh$3)C~Y4;l*5YN@mlCRDCE?t`_w6WT= z`eEh0c1zuT z>DqLNHnuMIHCHFwLiRPImTe^anyZ{`D*KwR-#wSE-*LFVt<@Nt*(wz?o2}Itn_Il^DZ=WX@i-a!r&SYM*VpDLxfNVD85*Z*M$&A55wMV3;6pux@A$khLnf$yyy; zWo-(smfUJEzG&`FtFsxm1J(pPAVLk%UDj$9*lev)fh|^t3fxFmTg?%k4eX_s<%;|4 zt!MZ!RLf1lQ*2yP=p|72{VGLmfsDyj+iWpCdu=h9L|TkWB$ALwOR6i7G%+j4a@K8) z`}AJ<_shBq)y!no@+GShKPGFQ{(1)Mvf7gOtNLU_$tK=%jju(||GE}E;bK~B&T3KE zGB8+e&se)=l4b2G$qFo+G5V+4lRfzo)|)+0xksyv=fZeV8Q#ge45vO-+G-26_ZV9D%Il>F zT)0h=4}gr9@;a6Bx}213>a8ext1h|;ceq-AibqQ^&ToU^s&Gx>T81ls7{4CNR~(bl zdvVRhr(vPCA89`hyoM9w!|8to9_xOZ?aEL822NLRMxLv%+|QMB68OEq+Y9i!kUx&N ze=f~WzaRL0z|R-pAA-;=DEBQ~bLDRZ^Phpca6>#-PrhgQI%G@&o|}FZ@Sg*pS%9xE zC&HeeMsdwe|A9Ip>R<7N+a1K*3QttUUDaVId;-y%G{?{~}Ag`3NdZzaA+&9@lkmM4o{jBnHO@P9&z z(x&UfN95WT{-9j131hzid|voNa%~DfB-g3ohvhmkyj-rq)FK?shd&I4v?%hf7n z2-=75sk)`*S?(pI-;qtPo|#5&e&%TnBuX7_%c%o{X1JfT*j33q3#aRjW2CY97#uGj z{F=+Vu2?<>$IItY`K~XPkHLa`iA*)#yB4t{Dv4?iu`Q1$+O`}gspR>5vBI6^fPTS$d2I!CBgP%XZ z4OG7)`3cZLIJ+qokUH|J2ks~&Anlf}c zj3jQp`N?je3i~7rQkhUQ)rCZYc(1#xiF`AZucMFV>+m?T!U3|CgyUzk%DA!#c`#I4 zXw@9OoLRllUCPknWAt(+kL5{Mojymp(uwU7$hF-QS-VU`Kf+3Y`=|wDN_~@0O8n*S z>{%q9D-v}a;inJ>12{cpKb{6NEd)FBzx}w{txg1;d5`B*DZ{9DAp+F0gdZVMI$eWn zgVJe)E$vio>CRRfl_}@ZHCtu=i14|%nc=?UKf?Zg79gBa~9Df}sz zH~eWP+U{mk)tI=lrX~F7m&Xi0jg&b4L@Uhvf;{o1AikY|=iO$0l#1kq>+a&0m|z5X z_XtBQd`-GN&G`CwF_<+l2%v{JN49YW*T{BURGaWT$)7(huNiQL;m!~laE0N4JS%Wp zsBv45zi`#;+yfnv+A+eQ$-@`2OfrYNS&_?uO8|}T80pFA20yp`g~7~R#LPHzQ8pdV zMa-qJ#u$Gt8ZUj$c$PO8ZH2_lTx8dYK{NbOsiCe~#um6=!E*}RUGlO2VYpK30BJgy zMHE%lTh0TXRPYMOJLlwKE(fSE>}U*LYPDfUGr;e2IaDKGSRZzPznDH;*m(9)W8E-2 zbVi@dxQrV-{5s4ej0Lu>#q;y(Mi`e>8);eGDK1Ht>OHybMtKt^oPd`_G9TrvUl`8L znao|-$Hq$!Ji9)sMLCnz7<&{0gPt?7viM(|Gr7mOJ$JFX`EwWM2pKSWEVu^kK1H>=WO2$%lzw;CIQHC{wGPj% zSv!uITeY!ZRGwS2)`C{5^48*RVBRcw$|En0Vpc7fF7f8*%%e0$V9NF+4JTsV#GyQ zu2LTiFcr(0@8J3r7PC`32UD@cZanUVz5TUBr*NIRxs&EERljdAb@k?sc3|z`zlYV= z)D>}lxKutSj;?Q<{1u-M6AJyon8%xLF1-ui5`1}1If?Hfd>M!S@*e41xT1K$AOm$F zT7vHZjd5D14s$%8j4;M2w|YF4ZmRP#o#6f(tDLSxS98-%ZX@8Pau3sgmhj6GzD?*u zLO&^Zhx;wdO{GG=E6CT}H~HN(#}zE|Q?utue}F#kd95@+wV;(`mK_NO$mM^n)J==Z zgJo`|JI1?!ovvz~;6cU`R2A=lqPehYL9(5mv+O8wM@G?n!K)*r#U0z0fP zfqov30sHAYe$IOmdHwVXak={@aJl~^rN7tQQ5K+2TdadGcqE9Xm-J`+e+4&~UdOp^ zC}a9<sS7(}iGZkF>uM9yJ^-859k_@IQ_#2O1+tjXFkuF(P1-A%tV8X@6B z{$N=p?WkmJe~55^zF)_+nCf5+zwcscFG7DeRl^zqx(6BtXjy>ihY|MEzab@RXR@B} z3jI2?b(6=*wf=qG`FcOiEa%v#f-LhTKig`x*lJn@r+lWKb$i0Wv=`Rqw#PVu5Bs-) zAL6*faU^(ygxODL8ApO|&?>wy&2gtn6?cnpje#Se{v)lYBNBHl zq`ZOsi{gTkatA#{qu6q+f(727o9U~P?{XLC+r=D8cn5LcL}|=@$-m9TI=u%pCUjpQ zf^fIV_)|W{6Xj9RJG>n32Xe#cQwZNM`XLFISH%#1xSr`V0jA*+rf&)UU=4@=PLN2D z!#}HLdZd==Bc)7BM9yx(D+Hed+@MdD$3cIHTn6<*KF-D<-=N?6na--<*auLGK?_id zL5EO^L3NV;MTxy1G7Xv!nFehTnO~7w9FW*jiT$$VeM>Yn>sX&xDw+O68Pn&TocFIq zg5Tm2=hmHJdkNl;lm>lFQr5c$kp4!g^*S0vI4=79(m8-MSBRbszzrHAma|l1PZY@I=vsqmPZ`t2UZ#zL-&4oobI@eV=-V#VN0l;FT0FO`b<+BAvDm2S-zc`? zvbKyKGtbbL(ffi-PYeB;gTqIK{+iB^tRlo=lS zq~^{Cs`2|CPigM0@-oAliTh1?HGZe&IUV<`S!Vb$ai`2`^3iJ&_cvZ=#nb5dKh<1i z#R+gS9njx+>+8RYnWK&;2XL3yzW{E&=3c6Q1;1FZR&zh9|2DWi!rfDM5F;)IiD{}v z%e;>mWmKoR4)0ZnyLq~bd(&5D1n7X~e&wsi$;QK)TTuCotDH_~?vCJd;9l0;{_>OH zex$iO%U=Rlb%m1oZ28j|6Ph*m&GHlA`ZV`;@T6hU?V9_ypn>JbvzklQpEN4zHO;-R z-oWv+^GYT2!N5r)NDZ2M0>4WVq%O_5OHLY96xUpBiGjNrPigM`sCzZNpt+Bt?$xw} zH!o=E1HMO$8tT&A-M*_ZVSi6^tI#U7^p56spjB#VTBFMM*{YL99WBw^=_-s6G^n}G znv+I7eL!=m8Uv?nFKg}*=sAIYq`5Cb&k0mDL&=;4yG*2J&8>l5CQ_f~z7Jg*=yuJ$ z3tbxMS`lN9gy{5Uptu}B9;%rhfZ>T+KOri$O4b&PmiMlkmtMsHXnc|we1M7*& z^pxgahs{Ftg64h+n}w*fS;;&CU8c}9&3y*COrh@t;J z*4(?W%T)TK=FY<|)2M2uDxnU#Ory1$`yT2ro%%HQHtH~)j%sd_^)!A9=vmFpw@!e2 zM{}#|0&pE?i<0@Cx(d3ImS}F+dC~||m*zg^G$>3T)ZF_kPa2K%8OV$!{?bg}(_9mM*EN&g z(cBWOCuY*L*-GYJ^fa~563u;>PJkQK+*;Ud7JWc-+u=*I=w;y!(GSr3XHz%dx}$sO zU$H)!O>yDgN9+9+;9l0;8O-Z*^tkjg#myhP=2F9a&i68v)c@EukM7&Z+#$No`bXD% zE%Rln^S|RlZ@Gcver9~S&P@v_q`Ak08xZag-BtE0*8+N0xR+_AtD3GR$0jB7+eo>P zEaB9cwU8PV=bhvXI2Y1<&0XoNK+3g>qn`5LxfW5kaEEATxf{2vMm4t{tEI*C1&(QJp~W`S5*>Hk#avvtLo^%hzM1|_ zIOP-AnRc@j=33mFX-$S(;O?eJ6es?26MaE*>@PRbE1K(Ylo{`#?`Uo_Zo|HZexNw< zr5*HB;gm1kOr<#6W1nZs-%Lw1$CkgD;=y8`29A8l8h z_)C-qgi~7YqQ^DITJNIo=zRXNpj{pEHV&~fZ9x6|XoDSx@0T5vwXR%&!a-M7;M;SPD{IW~b? zrsH@OG(xL&9It{#Xrqo}4|y+j>p1q1_fkZ~!MeA&?|^iJKJ6<`4?1uPF>dU5x&9;J z9Zt54qQ9);@MJ&J2gJY0#9?Bj_R&F$SM9vVs0a09g>=y3bp+EzLR*D)2)#jQkI)EcHBJRM<*h;w3Ox)u zfgY6bqe6cG>ZY@xVOnHhQ_LGG|K4acJI$XNt;S;i zFG0U${06#lu4BZxPSYF2;V=81HhWMaBX0ufLAfWTzMnGb3)lR$3e*H1AT)YF%BAUg1%{dWWp^-)9p$+UMIJ4o8wk< z@q{~p^ttXsc#Ux<=;kt}3%pGKKuqtfyAx&gSnZJZLp+&u(D*qh+M?_s(H8qA=x`ro zwuwirL8{kja~abGUZ&Fpzq5|Rf1n@ILG$g>rya*+4SfhUano_J=j#-zcn)|+{VB(b zg1l%vU;lTG2Tgz3cR-H^-vDhl-UR);?`NPVFb_XyPVv9#c+_NXeACztA3Fw%1)Ogh zlj#)Xn7<8@iDCkDxG0-mKNziWNGtL0cFh2)+m+=zlea6p0KVbOrXy6BpS)dOa zn_ONxDl#93%n&_<(r3{9)LGqvQ8ukXNBkqu`CezvOKMeqBkU z`CZyy(jj<<;2pq6fqa)fR}vFE2K*JuLWPk$)KYCxE<4b!Eo|KQ8!j z;8TEz{(_$t{50^RWv78x1kMV6R`9dH>w&zAvwojL^mlN%KF9sE1_;}yQSe6K_al5i z-5O|gyh_Ic9fEfV-U0lxK)BqP;4#5t!2f$72D~D0Sn$Jw9|rCyKkWD}%_%=F_;KJr z@f`=g7zo$*wBV;D{b}I6<)dgQ|vEzBk*6B zHv%uKXaqj5qC@Zw;6L$o0AB)x%Z&*hlk_p*k&2k}hw#J0f*%(AFz|aT4ns~w;JDz& z1wRh_)r#YSpBDVI;HQB*t<%7N;yEk$S>TUaXMuka^c%FT(&rNWU5xu&_tSkqxL%Ed zHv<2OuMzmum5r`%(5salf_Dhs0sN0ZzClxP&d+jUA}0p?BS6>=hXp?j{Mq1P*FVrH zP*^E=T=3(-zwJE^R*v4naDAJR9tA zv-}R=uLWbkVLgdGEa?vezp?7LAjg3WA`JhpIxWa)K~4jCx$3MSXC>EJASKm4kCf|? zay{tX)lQB&@=q37}^c$LJgpBFNVq>Y%W^@|e z#!Xl~k@=Y8gyTz&Z#w?F<6Xyjhs$|}>YSH3o1Al;Cf44#V{7on`)=%enRjB|a$#-i z!4uP7tWHaC=7V*7dCHAjv_fAtIb2h*545YEf2sLQ{V3>TzI#A_>*LtPmG1|AU+@U% zJ>?IBo-XI~bybgoexjb~3jwBcN|=7m%XvR85_(1QyOQ!_H5~h0Npnk(!@ri;f2!v2 zBehJAl`^f8yeA}fKw|49cCo~k)Nz`H7VEIH?h~LdIT?AqlIc5TOfPpG1HDmi%8S! z_$sKf8|U)E{wB`;P5I}+?#VzKIPi7iUj^C)zww0qgbTPI)I{re5XLXBAzX$S19v0v zL%VpIvjpJ^P!l_kGK4EZO`P+WBU}w?;_Ti+7{B_2a2?^%GVD(9yg1I-Yk^M$HF0iU zkML!nCeFeqB0L$?#QFAR2u}g!r=TYzJQb9mLY#u|bWoG70A}D6c`CwTV09pM?k z3~B;3;cJZu&jdAbR@;Q|EKn1xrkM!O0X5-=vk;yKYGNHV2jQzgO`M?4L-=Y?6DzB$ z5MBgo!e6gO_!>|XYpq2HUkhsDWbqn=mw}pCeO-%iE2xQINLz+*8>or(SS!LSK~3BZ zZbNuAsENNyuoB@8P?N3$X3+JZCe~~n2(JS*aZmVqgg1biSjDYF_y$muHUYy97}UhN zj_)~d1~u^pMkm5If|_^>VKc%#peAhvX3#cJlWqZK&|XlJ27npZ1#Uw)h0{8N(x4{Z zsMvw<5U5G}Fe(_dAJn8fa2jUPhbRi}9|tw*C`vHs6QCx> zlYWFh32M^g7-6te1T`_r+=}p%pe9b))1Y5PnFjt&#}LBLqfCRo25QoOp@Rs&06K-7 zqkIyep2olhpF42&gM)|6XNj|%2cbM{rSnOgdgNnEaPNOCb|lCce^|)t0YWQo$M-J5 zXjd{ZxFR`}=$ zyDhqkHYQ_y~XvJUrXzlBh^qZo66zS{R zv4xB2NNkEEc1PRxFzusMv_H8oS~O}yqF9EEpkfkiOlQrqZOQ(DWCC@vq4mkZ*sg;% zho*?8@V7_yLL=6`qaOy?oJjXZ;y{*&#!L6^*s&tgyBGFd6^q6J>#B^65WUC1t73^h z>Vx#vk)hpD7PULY4n`Xi8zX3+9HgT_-_B@iU#vGutD}Q$BdG@F zwv-~pQq(FnRAEs{wYgGChhzH6HI1aAD-ZOFM-Zw6SxN$X(8gGlR>k6RzIG(`CHF?D zlbeM)Rwjn}qp8SF4!6hB1Ie_6RUe~GLy5sye-us{RXvxD#~k~#Mp*8qXzw73gb>!W zEgplDWU)?I3{jo2{sF$g{DTK|Qg(T%kpv)ob0T)@P*gZ>>J^mr5=xH?MDrkUf#}RwbAdG6dQudOzmto!M>MvN*g+Xl z*zBMqY({=gk{HGwiNuH)hdpD-#EM8dN~%@ZLHkz5>S#?JDOUNO7542g_QtrNNkc3gWV<`6`(DSj*!Enm2$X_L>jiw03DrBR;ri@ z+_;A!P7%ZSE`u9N>T4au(}_EW5Vd+JmcuE<*wwNr#weSOg4`{!bSy7K&RI5wg!IdCu)+r1|zN*5*bbg>K=ViE_l5p8JS-N{rAq6Wig z3ZrW*5|7;`N=duL;<3S;gnC%vN+8Y7f><6xR$!772a_g~5kiHM@jeycR4Wsj;qH}T zqBh#UV_i&5e54f>W*AAYi`@6&VY9(RbiYc1+C~m!GiMm7tsRq5BNN@fV;`?5GGl`7*0-r)nO8o7v zg<)|Sh8sbqsSLu=`AA3S(7-@4HQ14e4T@W+veGQMBheQ9M=RccYAFkv{uiYtLBIguVrK^L_EOvVrHP9_T0PEs_cDv>QV){Cl4M8=eb5&5Pp zjJ5k{beCSyzrIe=b-kI&z>)nSfJQTBT;o@GL10>db4^NX1DANWFF0S#m@cF z=zwI>eM|wIF%QVpClBq!Y6wd&+u}E3Wr_t=%PO>6xnEb7pk57cg7tS_2EGK_*L9#K-U0~=Bt&fO~$_A%H-VuhJPbvEqhEA&wTH72TX z|Bg0HABbgV(?PDE4)(@%3~#taH&_#)%xI-p@qRU0DImv03Q+Y`!%Q|0Y@zn@B09?{ zdA)mch1neMBCby)_hYbEnq>R8j8<9cMI%_Vq7iy$z^ijLgBKGd14~w`te~8TJV87{ z6cv<>$kzy6(9V&+S1FL9drg5ZdFX0hj zLYN(SDVYO|?PlUZ_T*+eeS0jjJCRHe#(L8jN)mmm?6aM;ox+}qrR|af+Rw*C^LWLZ zgiO3z_+z@|F*U6U=RPcZ-!$okW(-lNrPh`?J-EtlGF>pF@tQ5$q#{#TZPkM4OuH42 z&I}3{5FsnC{Bs$#l1}YTlN?QC*)eX_73)grX<|7I!?xalBZ1t8%H?w{C8o}eEYeW9 z(fO*5$z4R%B586g#oNDJ`T50*m2;!>iysqRr1&Cfa*Ag&=E^T9zA(C=_`>L7#TTYY z<}{3M2t6j|bWhPRAI=n=59b$|ABW+)H!?_SOU6qnF!@DlFjH%tU&Dn(YIwuWTX1@Y z9b{*8P{#c&u_O+;up&nW0oFwM;Dc~rzt7*KsYt!^SnHl9EAT8RtWlN^fo*(WDai4=_` z#1_!UGa0@O$KGr(J($Y*rwGmixJr3IrbY754KP3&M|{+=HkMXa$^;4yu-8To!bwE) z;xX%RFJe9aQS*ZPDQpx`Py(!22I-0Nq8Urz1B8`D^nfJ80_30s+Ho|OWn%pjP7dr? zdFv34nFbFM!X1gI&0%SSCLH$|iaOHkhvM-Ksg?Z$$V=6;aW``=?qbfz-OB~IYq=12 zD`|2X_w`b^kC?*Uw*lO}OMyR#dyEm>nTzu6t}EB!-d!61VuXzo?#M=Q9g^4-QVjx6 z0-@T~;D(SQio2B&JUt)9d)#T1TMW-ly$PvVGEQRhQfG0#$@ad}mu>D^zozY(zYcx# zqk&szk~3r&UPp)w7Xp^WY=DXB4w*(}YrtJyd6QAuEU~w`InC&!9AE17I4XPiA8uM# zj-FNjOY!3%lc-`6?mkb#FJKszJuZ(~*<*Sjtf6xBn^hi%l9x-penYW7kEsGuctemJ z9>a8c3@e7`)vTE45CdO10={yDc~HcU9&#bU=pm&a7}M~2aof_0neG6WZH@jKGFkc0 zL1t-%$A`aTTRD1nWrJJ~cQV@vZDGLvtp3rb$XB; zfdKNG0j6G*i_~Ezb(1_5UN4Gyfd5A-M<29CKP*?|!UxX}0INJ?xbQ=DqhBr!IT0VI z9PxsI0;T?t3khC?Vx@r)-dwL75e~6v8!P7JX7l>c40yA&a`aQI`5~7FLR+mvJ{YH= zvegalP;~=LfCK^E42SA{Atz!F)i*SZe#*10)QXmtK~b};3>6&x99!nW%F!>PSSVD= z>YxIs8Z3V{aXO5g{>y!O^g+ z*DFTkfY&PyaA=CUO!vSBjB-k3D=lRlwJrg!Bq<1S+!d@?sfu|%lh``ch@KD#ILRn0 zQ;qdJH>S}&RS`pZ9BdZ&KcQQ? zJPxzeWNMlof=1S%l}@$o)Vl);HF!bH2Dirv^K;nS0Ae&quV^UqxVZJu7!_zb z?wu7T{#qcKDgajw5j$}Jb%IDcZG%~fzAI@POuq+7xn0eG_p7&U-%>yS%wg{rmhHI1 zdc(gM+Pv}-lQt*6SLeK!3EpMJZ|`uZg9+dHcj8?Ga$e7bXw3@eDh~1cC}2VG%z^yC zBspOma^j&Ia(Y0jS~0fr=o-QJ%A;K`!qbX@i!s3F4xg8gm#7V+ZXDm#_;S{xkSHGI zjf0LWrxUtFB#E~jfkAvtw`sad9q!7A!)--Pw-=WfzF~ap0QY$G*otrn-zt0$;)`^Z zBlx1h;E+8&P&F#bh}=-hV_%3#6^Iq(R92LOVF`vgSSP_c<Y4NBTs3FrqJ@2ZGkbUTEs9>t~h?m}TgNIZIsXjG zI%S1EMp4-|5{2NltY}J3j*4iC_TtHgXu3fmPMPN0op3okMN&LDPfIz;`K-1A6~MKSK}f%Y{iRt@i-;$diWwWE>ckO8W%~3Um2;) zof7nce`Wy9A8OSwp!|R*WLQ969j9q{ynIZX7pAuT2ty4{?Cf!~FjX6V-HAnIy={Wu%CNpag?qSIVQGCr2^CjL*+Q)fQa*N*9v?YWyEQV)` z8VMbb`_Un26>Zs_Nw8=(lqzf^b@Kwseg?`u!O9NeMxCt_7Nr>5n?t?op`iFdOgJEt zWHzeR7n&pUKw3Rq6YXmW@qIq%f?I=o)1d^ObWNp0c=V1}XgIM8MGxTlNj#X@8x0{K ztta7B605WRw4~|hgHcREi8SAtM!mUVq|7;}0j9ReMc13EDqOzDevFov@bz4&eAiRe zf~=|dZ6A)_6-%YL#GExtCJlap^@^h9sTHj%Rn{2 zU51}r;_Bv&U73pVHb$LVsx3{JA9`)X?~vkk5}eDzUD0TayHiMpwjO6 zs&ngogxU*8^5#(g5L$dEhJk20jqZr$imcRe94|W)$XkV1L%1-Upy!X@s=&}XEnzp- z;k-o33hB%|7zZ)7j};rIZPo2G#U>#;%{+rzy7pik&^w+qoEn>;J}k$u$dZkRR#QEG z-G{Q*;?0$!dGhv4ERz>`+|4j%;Q5e!9F$EHRN0PxyP62;qx=3^8wi_H*F3cbwmU2d*H0;OpV@ z`#+1z`QPu~|5tqd?MKi5)%o8YIe-3>=kL4kJ}<8O?-l;u^LBpxQO)z`e|P@3BIn+F z&!0cAfB%6yfbHLZuaf=SJATXj`SVPnj{baW%iX;kTK`4E}ooC zzn`@Hxt~AwWYzn&V3!U*T)cfV?r5a9uZ~9(+wnLSdwUWCV0wFEXs|Cin1~K;R|AQC zN$$L5yF81aftG>3om}MqZ$E$ha#r=4uOJ-C^0^@|$7Mb{+LEdEczhi{GbXRBM5FRZ z8z(qF9WvOt{_p2Mv<3LxMfpAX(fn%4feqdclz}8CihCSZ(fD?sLZpK^^%-@{M}Xh8 z+X1=~Z{u}hBenr|(stmw9&h<=kc20l|8!2hMaDhciLbgYlh`bxS-G@>8j#AT$Nbx| ze4yKbQ{-JZ|K-m#k<+EmmeYvOxi2RvzTiBAVhrfScl*?xys?sAkTkPVZ}o3J?&84) zs0+V^$tTYJa^EijDVPHB_G0$lUP#9eAQj&s97G4&i93lQq-w#tj4gQok?#-k9Y+3K zhj&12nFEMP_c{Ws`x*^;ckZ8zrRp6|HzXc0TBd&PZd%U)=nxl@cH3hg^z?3