개정판 b643fcca
- angle event 수정
- select에서 shift키 이벤트 안됨
Change-Id: I17decc4b6ab1f91e7b6ae18751acf74811e5d7a7
KCOM/Common/ViewerDataModel.cs | ||
---|---|---|
1 |
using KCOM.Messenger; |
|
1 |
using KCOM.Events; |
|
2 |
using KCOM.Messenger; |
|
2 | 3 |
using KCOMDataModel.DataModel; |
3 | 4 |
//using Leadtools; |
4 | 5 |
using MarkupToPDF.Common; |
... | ... | |
434 | 435 |
} |
435 | 436 |
|
436 | 437 |
} |
437 |
private string _AngleValue { get; set; } |
|
438 |
public string AngleValue |
|
439 |
{ |
|
440 |
get |
|
441 |
{ |
|
442 |
return _AngleValue; |
|
443 |
} |
|
444 |
set |
|
445 |
{ |
|
446 |
_AngleValue = value; |
|
447 |
OnPropertyChanged("AngleValue"); |
|
448 |
} |
|
449 |
} |
|
450 | 438 |
|
451 | 439 |
public double Angle |
452 | 440 |
{ |
... | ... | |
518 | 506 |
} |
519 | 507 |
} |
520 | 508 |
|
509 |
public void SetAngleVisible(Visibility visibility) |
|
510 |
{ |
|
511 |
this.AngleVisibility = visibility; |
|
512 |
} |
|
513 |
|
|
521 | 514 |
|
522 | 515 |
public ObservableCollection<CommentUserInfo> MarkupControls |
523 | 516 |
{ |
KCOM/Controls/AdornerFinal.xaml.cs | ||
---|---|---|
164 | 164 |
#region 공용 인스턴스 |
165 | 165 |
public List<AdornerMember> Members { get; } = new List<AdornerMember>(); |
166 | 166 |
public Dictionary<Thumb, DragData> _dragData = new Dictionary<Thumb, DragData>(); |
167 |
public double AngleValue = 0; |
|
167 |
|
|
168 |
private double angleValue; |
|
169 |
|
|
170 |
public double AngleValue { get => angleValue; |
|
171 |
set |
|
172 |
{ |
|
173 |
if(angleValue != value) |
|
174 |
{ |
|
175 |
angleValue = value; |
|
176 |
} |
|
177 |
} |
|
178 |
} |
|
179 |
|
|
180 |
|
|
168 | 181 |
public bool IsTextAngle = false; |
169 | 182 |
public Rect BorderSize { get; set; } |
170 | 183 |
public bool TextCompensation = false; |
... | ... | |
321 | 334 |
} |
322 | 335 |
} |
323 | 336 |
|
324 |
#endregion |
|
325 |
#region 메서드 |
|
326 |
public Rect getAdornerSize() |
|
337 |
#endregion
|
|
338 |
#region 메서드
|
|
339 |
public Rect getAdornerSize()
|
|
327 | 340 |
{ |
328 | 341 |
return BorderSize; |
329 | 342 |
} |
... | ... | |
632 | 645 |
foreach (var item in this.Members) |
633 | 646 |
{ |
634 | 647 |
UIElement currentControl = (item as AdornerMember).DrawingData; |
648 |
|
|
649 |
Point startP = (currentControl as IPath).StartPoint; |
|
650 |
Point endP = (currentControl as IPath).EndPoint; |
|
651 |
|
|
652 |
ViewerDataModel.Instance.Angle = MathSet.returnAngle(startP, ref endP, ViewerDataModel.Instance.IsPressShift); |
|
653 |
|
|
635 | 654 |
if (item.DrawingData.GetType().Name == "TextControl") |
636 | 655 |
{ |
637 | 656 |
double textControlWidth; |
KCOM/Controls/Sample.xaml | ||
---|---|---|
6 | 6 |
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:common="clr-namespace:KCOM.Common" |
7 | 7 |
xmlns:local="clr-namespace:KCOM.Controls" xmlns:System="clr-namespace:System;assembly=mscorlib" |
8 | 8 |
mc:Ignorable="d" Background="#f5f5f5" xmlns:converter="clr-namespace:KCOM.Common.Converter" |
9 |
d:DesignHeight="600" d:DesignWidth="200"> |
|
9 |
d:DesignHeight="600" d:DesignWidth="200" AllowDrop="False">
|
|
10 | 10 |
<UserControl.Resources> |
11 | 11 |
<converter:ColorListToBrushConverter x:Key="ColorListToBrushConverter"/> |
12 | 12 |
<Style x:Key="PathButtonStyle" TargetType="{x:Type Path}"> |
KCOM/Events/Event_KeyEvent.cs | ||
---|---|---|
199 | 199 |
} |
200 | 200 |
} |
201 | 201 |
dzMainMenu.isLeftMouseButtonDownOnWindow = false; |
202 |
//foreach (var item in toggleList2) |
|
203 |
//{ |
|
204 |
// item.IsChecked = false; |
|
205 |
//} |
|
202 |
//foreach (var item in toggleList2) |
|
203 |
//{ |
|
204 |
// item.IsChecked = false; |
|
205 |
//} |
|
206 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
|
206 | 207 |
} |
207 | 208 |
break; |
208 | 209 |
#endregion |
KCOM/Events/Implementation/TopMenuEvent.cs | ||
---|---|---|
1755 | 1755 |
// instanceMain.IsSwingMode = true; |
1756 | 1756 |
//} |
1757 | 1757 |
|
1758 |
#region 다른 컨트롤 버튼 선택 해제 |
|
1759 |
System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.SelectedControl).Subscribe(ControlState => |
|
1760 |
{ |
|
1761 |
if (ControlState == null) |
|
1762 |
{ |
|
1763 |
instanceToggle.IsChecked = false; |
|
1764 |
HiddenControlHide(); |
|
1765 |
} |
|
1766 |
}); |
|
1767 |
#endregion |
|
1758 |
//#region 다른 컨트롤 버튼 선택 해제
|
|
1759 |
//System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.SelectedControl).Subscribe(ControlState =>
|
|
1760 |
//{
|
|
1761 |
// if (ControlState == null)
|
|
1762 |
// {
|
|
1763 |
// instanceToggle.IsChecked = false;
|
|
1764 |
// HiddenControlHide();
|
|
1765 |
// }
|
|
1766 |
//});
|
|
1767 |
//#endregion
|
|
1768 | 1768 |
|
1769 | 1769 |
Release_ToggleButton(sender); //-> 해당 컨트롤을 제외한 모든 컨트롤에 대해 해제 처리 |
1770 | 1770 |
|
... | ... | |
1789 | 1789 |
} |
1790 | 1790 |
|
1791 | 1791 |
|
1792 |
System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.AngleVisibility).Subscribe(isSee => |
|
1793 |
{ |
|
1794 |
if (instanceToggle.CommandParameter.ToString() == "ChainLine") |
|
1795 |
{ |
|
1792 |
//System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.AngleVisibility).Subscribe(isSee =>
|
|
1793 |
//{
|
|
1794 |
// if (instanceToggle.CommandParameter.ToString() == "ChainLine")
|
|
1795 |
// {
|
|
1796 | 1796 |
|
1797 |
} |
|
1798 |
else |
|
1799 |
{ |
|
1800 |
System.Diagnostics.Debug.WriteLine(" instanceMain.dzMainMenu.MainAngle.Visibility " + isSee); |
|
1797 |
// } |
|
1798 |
// else |
|
1799 |
// { |
|
1800 |
// System.Diagnostics.Debug.WriteLine(" instanceMain.dzMainMenu.MainAngle.Visibility " + isSee); |
|
1801 |
|
|
1802 |
// if (instanceMain.dzMainMenu.MainAngle.Visibility != isSee) |
|
1803 |
// { |
|
1804 |
// instanceMain.dzMainMenu.MainAngle.Visibility = isSee; |
|
1805 |
// } |
|
1806 |
// } |
|
1807 |
// //System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.AngleValue).Subscribe(p => |
|
1808 |
// //{ |
|
1809 |
// // instanceMain.dzMainMenu.MainAngle.AngleValue = p; |
|
1810 |
// //}); |
|
1811 |
//}); |
|
1801 | 1812 |
|
1802 |
if (instanceMain.dzMainMenu.MainAngle.Visibility != isSee) |
|
1803 |
{ |
|
1804 |
instanceMain.dzMainMenu.MainAngle.Visibility = isSee; |
|
1805 |
} |
|
1806 |
} |
|
1807 |
//System.Reactive.Linq.Observable2.FromPropertyChangedPattern(Common.ViewerDataModel.Instance, temp => temp.AngleValue).Subscribe(p => |
|
1808 |
//{ |
|
1809 |
// instanceMain.dzMainMenu.MainAngle.AngleValue = p; |
|
1810 |
//}); |
|
1811 |
}); |
|
1812 | 1813 |
instanceMain.dzMainMenu.mouseHandlingMode = IKCOM.MouseHandlingMode.Drawing; |
1813 | 1814 |
|
1814 | 1815 |
instanceMain.dzMainMenu.inkDrawingCanvas.IsEnabled = false; |
KCOM/MainWindow.xaml | ||
---|---|---|
11 | 11 |
xmlns:cWin="clr-namespace:KCOM.Controls.CustomizedWindow" |
12 | 12 |
xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" |
13 | 13 |
Background="{DynamicResource KCOMColor_TopMenubackgroundBrush}" |
14 |
telerik:TabNavigationExtensions.IsTabStop="False" |
|
14 |
telerik:TabNavigationExtensions.IsTabStop="False" AllowDrop="True"
|
|
15 | 15 |
Title="MARKUS" > |
16 | 16 |
<Grid> |
17 | 17 |
<Grid.RowDefinitions> |
KCOM/Views/MainMenu.xaml | ||
---|---|---|
592 | 592 |
</telerik:RadPaneGroup> |
593 | 593 |
</telerik:RadSplitContainer> |
594 | 594 |
<telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedBottom"> |
595 |
<telerik:RadPaneGroup IsTabStop="False" telerik:StyleManager.Theme="Office2016" telerik:ProportionalStackPanel.RelativeSize="140, 100"> |
|
595 |
<telerik:RadPaneGroup IsTabStop="False" telerik:StyleManager.Theme="Office2016" telerik:ProportionalStackPanel.RelativeSize="140, 100" AllowDrop="False">
|
|
596 | 596 |
<telerik:RadPane Header="User information List" CanFloat="False" CanUserClose="False" ContextMenuTemplate="{x:Null}" telerik:StyleManager.Theme="Office2016" x:Name="infoListPane"> |
597 | 597 |
<telerik:RadPane.TitleTemplate> |
598 | 598 |
<DataTemplate> |
KCOM/Views/MainMenu.xaml.cs | ||
---|---|---|
1993 | 1993 |
{ |
1994 | 1994 |
ViewerDataModel.Instance.Angle = currentControl.CommentAngle; |
1995 | 1995 |
} |
1996 |
|
|
1996 | 1997 |
} |
1997 | 1998 |
} |
1998 | 1999 |
else if(mouseHandlingMode == MouseHandlingMode.Drawing && e.LeftButton == MouseButtonState.Pressed) |
... | ... | |
2149 | 2150 |
} |
2150 | 2151 |
else if (mouseHandlingMode == MouseHandlingMode.Selecting && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.Capture && e.ChangedButton == MouseButton.Left || mouseHandlingMode == MouseHandlingMode.DragZoom && e.ChangedButton == MouseButton.Left) |
2151 | 2152 |
{ |
2152 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed; |
|
2153 |
|
|
2153 |
|
|
2154 | 2154 |
if (isLeftMouseButtonDownOnWindow) |
2155 | 2155 |
{ |
2156 | 2156 |
bool wasDragSelectionApplied = false; |
... | ... | |
2771 | 2771 |
} |
2772 | 2772 |
|
2773 | 2773 |
var control = ViewerDataModel.Instance.MarkupControls_USER.Where(data => data.IsMouseOver).FirstOrDefault(); |
2774 |
if (control != null) |
|
2774 |
|
|
2775 |
if(control == null) |
|
2775 | 2776 |
{ |
2777 |
|
|
2778 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed); |
|
2779 |
} |
|
2780 |
else |
|
2781 |
{ |
|
2782 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible); |
|
2783 |
|
|
2776 | 2784 |
AdornerFinal final = null; |
2777 | 2785 |
|
2778 | 2786 |
if (!ViewerDataModel.Instance.IsPressCtrl) |
... | ... | |
2901 | 2909 |
{ |
2902 | 2910 |
this.SelectLayer.Children.Add(final); |
2903 | 2911 |
} |
2904 |
}
|
|
2912 |
} |
|
2905 | 2913 |
} |
2906 | 2914 |
else if (mouseHandlingMode == MouseHandlingMode.Drawing) |
2907 | 2915 |
{ |
... | ... | |
3257 | 3265 |
|
3258 | 3266 |
CreateCommand.Instance.Execute(currentControl); |
3259 | 3267 |
currentControl = null; |
3260 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3268 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3261 | 3269 |
} |
3262 | 3270 |
else |
3263 | 3271 |
{ |
... | ... | |
3272 | 3280 |
currentControl.CommentID = Commons.shortGuid(); |
3273 | 3281 |
currentControl.IsNew = true; |
3274 | 3282 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3275 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3283 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3276 | 3284 |
} |
3277 | 3285 |
} |
3278 | 3286 |
} |
... | ... | |
3353 | 3361 |
CreateCommand.Instance.Execute(currentControl); |
3354 | 3362 |
|
3355 | 3363 |
currentControl = null; |
3356 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3364 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3357 | 3365 |
return; |
3358 | 3366 |
} |
3359 | 3367 |
|
3360 | 3368 |
if (!control.IsCompleted) |
3361 | 3369 |
{ |
3362 | 3370 |
control.PointSet.Add(control.EndPoint); |
3363 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3371 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3364 | 3372 |
} |
3365 | 3373 |
} |
3366 | 3374 |
else |
... | ... | |
3410 | 3418 |
CreateCommand.Instance.Execute(currentControl); |
3411 | 3419 |
|
3412 | 3420 |
currentControl = null; |
3413 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3421 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3414 | 3422 |
} |
3415 | 3423 |
else |
3416 | 3424 |
{ |
... | ... | |
3423 | 3431 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3424 | 3432 |
currentControl.IsNew = true; |
3425 | 3433 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3426 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3434 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3427 | 3435 |
} |
3428 | 3436 |
} |
3429 | 3437 |
else if (e.RightButton == MouseButtonState.Pressed) |
... | ... | |
3453 | 3461 |
CreateCommand.Instance.Execute(currentControl); |
3454 | 3462 |
|
3455 | 3463 |
currentControl = null; |
3456 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3464 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3457 | 3465 |
} |
3458 | 3466 |
else |
3459 | 3467 |
{ |
... | ... | |
3466 | 3474 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3467 | 3475 |
currentControl.IsNew = true; |
3468 | 3476 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3469 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3477 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3470 | 3478 |
} |
3471 | 3479 |
//} |
3472 | 3480 |
} |
... | ... | |
3513 | 3521 |
CreateCommand.Instance.Execute(currentControl); |
3514 | 3522 |
|
3515 | 3523 |
currentControl = null; |
3516 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3524 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3517 | 3525 |
} |
3518 | 3526 |
} |
3519 | 3527 |
else |
... | ... | |
3527 | 3535 |
currentControl.MarkupInfoID = App.Custom_ViewInfoId; |
3528 | 3536 |
currentControl.IsNew = true; |
3529 | 3537 |
ViewerDataModel.Instance.MarkupControls_USER.Add(currentControl); |
3530 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3538 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3531 | 3539 |
} |
3532 | 3540 |
//} |
3533 | 3541 |
} |
... | ... | |
3849 | 3857 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
3850 | 3858 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
3851 | 3859 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
3852 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3860 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3853 | 3861 |
|
3854 | 3862 |
|
3855 | 3863 |
//} |
... | ... | |
3875 | 3883 |
|
3876 | 3884 |
currentControl.IsNew = false; |
3877 | 3885 |
currentControl = null; |
3878 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3886 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3879 | 3887 |
} |
3880 | 3888 |
else |
3881 | 3889 |
{ |
... | ... | |
3923 | 3931 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
3924 | 3932 |
currentControl.IsNew = false; |
3925 | 3933 |
currentControl = null; |
3926 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3934 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3927 | 3935 |
} |
3928 | 3936 |
else |
3929 | 3937 |
{ |
... | ... | |
3950 | 3958 |
(currentControl as ArrowTextControl).CommentAngle -= rotate.Angle; |
3951 | 3959 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
3952 | 3960 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
3953 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
3961 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
3954 | 3962 |
//} |
3955 | 3963 |
} |
3956 | 3964 |
} |
... | ... | |
3972 | 3980 |
currentControl.IsNew = false; |
3973 | 3981 |
currentControl = null; |
3974 | 3982 |
|
3975 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
3983 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
3976 | 3984 |
} |
3977 | 3985 |
else |
3978 | 3986 |
{ |
... | ... | |
4004 | 4012 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4005 | 4013 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4006 | 4014 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4007 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
4015 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
4008 | 4016 |
|
4009 | 4017 |
//20180911 LJY |
4010 | 4018 |
(currentControl as ArrowTextControl).isTrans = true; |
... | ... | |
4030 | 4038 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4031 | 4039 |
currentControl.IsNew = false; |
4032 | 4040 |
currentControl = null; |
4033 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
4041 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
4034 | 4042 |
} |
4035 | 4043 |
else |
4036 | 4044 |
{ |
... | ... | |
4056 | 4064 |
|
4057 | 4065 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4058 | 4066 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4059 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
4067 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
4060 | 4068 |
//} |
4061 | 4069 |
} |
4062 | 4070 |
} |
... | ... | |
4077 | 4085 |
(currentControl as ArrowTextControl).Base_TextBox.IsHitTestVisible = false; |
4078 | 4086 |
currentControl.IsNew = false; |
4079 | 4087 |
currentControl = null; |
4080 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Collapsed;
|
|
4088 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Collapsed);
|
|
4081 | 4089 |
} |
4082 | 4090 |
else |
4083 | 4091 |
{ |
... | ... | |
4106 | 4114 |
(currentControl as ArrowTextControl).SetFontFamily(new FontFamily(this.ParentOfType<MainWindow>().dzTopMenu.comboFontFamily.Text)); |
4107 | 4115 |
(currentControl as ArrowTextControl).ApplyTemplate(); |
4108 | 4116 |
(currentControl as ArrowTextControl).Base_TextBox.Focus(); |
4109 |
ViewerDataModel.Instance.AngleVisibility = Visibility.Visible;
|
|
4117 |
ViewerDataModel.Instance.SetAngleVisible(Visibility.Visible);
|
|
4110 | 4118 |
|
4111 | 4119 |
//20180911 LJY |
4112 | 4120 |
(currentControl as ArrowTextControl).isTrans = true; |
MARKUSSETUP/MARKUSSETUP.vdproj | ||
---|---|---|
64 | 64 |
"Entry" |
65 | 65 |
{ |
66 | 66 |
"MsmKey" = "8:_15332449F6E72BE2DB7474231C983458" |
67 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
67 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
68 | 68 |
"MsmSig" = "8:_UNDEFINED" |
69 | 69 |
} |
70 | 70 |
"Entry" |
71 | 71 |
{ |
72 | 72 |
"MsmKey" = "8:_15332449F6E72BE2DB7474231C983458" |
73 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
73 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
74 | 74 |
"MsmSig" = "8:_UNDEFINED" |
75 | 75 |
} |
76 | 76 |
"Entry" |
... | ... | |
202 | 202 |
"Entry" |
203 | 203 |
{ |
204 | 204 |
"MsmKey" = "8:_57CBCBC84253D407662279E78B32F325" |
205 |
"OwnerKey" = "8:_B13670482C297201D1A5417144B70912"
|
|
205 |
"OwnerKey" = "8:_CA9BBFD9563FF72DBBA51195C2B228E8"
|
|
206 | 206 |
"MsmSig" = "8:_UNDEFINED" |
207 | 207 |
} |
208 | 208 |
"Entry" |
209 | 209 |
{ |
210 | 210 |
"MsmKey" = "8:_57CBCBC84253D407662279E78B32F325" |
211 |
"OwnerKey" = "8:_CA9BBFD9563FF72DBBA51195C2B228E8"
|
|
211 |
"OwnerKey" = "8:_B13670482C297201D1A5417144B70912"
|
|
212 | 212 |
"MsmSig" = "8:_UNDEFINED" |
213 | 213 |
} |
214 | 214 |
"Entry" |
... | ... | |
250 | 250 |
"Entry" |
251 | 251 |
{ |
252 | 252 |
"MsmKey" = "8:_63A4EF2AD8BE84C2A57FBB2A3A91A67D" |
253 |
"OwnerKey" = "8:_7ADE337533691BCD43A62F2BF401C36A"
|
|
253 |
"OwnerKey" = "8:_888A6068098AA72778F482D950AEF283"
|
|
254 | 254 |
"MsmSig" = "8:_UNDEFINED" |
255 | 255 |
} |
256 | 256 |
"Entry" |
257 | 257 |
{ |
258 | 258 |
"MsmKey" = "8:_63A4EF2AD8BE84C2A57FBB2A3A91A67D" |
259 |
"OwnerKey" = "8:_888A6068098AA72778F482D950AEF283"
|
|
259 |
"OwnerKey" = "8:_7ADE337533691BCD43A62F2BF401C36A"
|
|
260 | 260 |
"MsmSig" = "8:_UNDEFINED" |
261 | 261 |
} |
262 | 262 |
"Entry" |
... | ... | |
268 | 268 |
"Entry" |
269 | 269 |
{ |
270 | 270 |
"MsmKey" = "8:_671B08C5F776D289014DCE27DB4CF4C1" |
271 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
271 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
272 | 272 |
"MsmSig" = "8:_UNDEFINED" |
273 | 273 |
} |
274 | 274 |
"Entry" |
275 | 275 |
{ |
276 | 276 |
"MsmKey" = "8:_671B08C5F776D289014DCE27DB4CF4C1" |
277 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
277 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
278 | 278 |
"MsmSig" = "8:_UNDEFINED" |
279 | 279 |
} |
280 | 280 |
"Entry" |
... | ... | |
388 | 388 |
"Entry" |
389 | 389 |
{ |
390 | 390 |
"MsmKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E" |
391 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
391 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
392 | 392 |
"MsmSig" = "8:_UNDEFINED" |
393 | 393 |
} |
394 | 394 |
"Entry" |
395 | 395 |
{ |
396 | 396 |
"MsmKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E" |
397 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
397 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
398 | 398 |
"MsmSig" = "8:_UNDEFINED" |
399 | 399 |
} |
400 | 400 |
"Entry" |
... | ... | |
460 | 460 |
"Entry" |
461 | 461 |
{ |
462 | 462 |
"MsmKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018" |
463 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
463 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
464 | 464 |
"MsmSig" = "8:_UNDEFINED" |
465 | 465 |
} |
466 | 466 |
"Entry" |
467 | 467 |
{ |
468 | 468 |
"MsmKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018" |
469 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
469 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
470 | 470 |
"MsmSig" = "8:_UNDEFINED" |
471 | 471 |
} |
472 | 472 |
"Entry" |
... | ... | |
490 | 490 |
"Entry" |
491 | 491 |
{ |
492 | 492 |
"MsmKey" = "8:_A4E956DE052EB706E59BF10995EAA040" |
493 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
493 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
494 | 494 |
"MsmSig" = "8:_UNDEFINED" |
495 | 495 |
} |
496 | 496 |
"Entry" |
497 | 497 |
{ |
498 | 498 |
"MsmKey" = "8:_A4E956DE052EB706E59BF10995EAA040" |
499 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
499 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
500 | 500 |
"MsmSig" = "8:_UNDEFINED" |
501 | 501 |
} |
502 | 502 |
"Entry" |
... | ... | |
580 | 580 |
"Entry" |
581 | 581 |
{ |
582 | 582 |
"MsmKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B" |
583 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
583 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
584 | 584 |
"MsmSig" = "8:_UNDEFINED" |
585 | 585 |
} |
586 | 586 |
"Entry" |
587 | 587 |
{ |
588 | 588 |
"MsmKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B" |
589 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
589 |
"OwnerKey" = "8:_F94B54978CDB4C7288FE8601AFC2A147"
|
|
590 | 590 |
"MsmSig" = "8:_UNDEFINED" |
591 | 591 |
} |
592 | 592 |
"Entry" |
... | ... | |
628 | 628 |
"Entry" |
629 | 629 |
{ |
630 | 630 |
"MsmKey" = "8:_D536BD1AD39BEAB61DE8C0DFF4E03B0C" |
631 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
631 |
"OwnerKey" = "8:_15332449F6E72BE2DB7474231C983458"
|
|
632 | 632 |
"MsmSig" = "8:_UNDEFINED" |
633 | 633 |
} |
634 | 634 |
"Entry" |
635 | 635 |
{ |
636 | 636 |
"MsmKey" = "8:_D536BD1AD39BEAB61DE8C0DFF4E03B0C" |
637 |
"OwnerKey" = "8:_15332449F6E72BE2DB7474231C983458"
|
|
637 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
638 | 638 |
"MsmSig" = "8:_UNDEFINED" |
639 | 639 |
} |
640 | 640 |
"Entry" |
... | ... | |
724 | 724 |
"Entry" |
725 | 725 |
{ |
726 | 726 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
727 |
"OwnerKey" = "8:_3A931127C64677CDA53DBEB968205038"
|
|
727 |
"OwnerKey" = "8:_9100322F88456ACA53F7FACAE20CC50D"
|
|
728 | 728 |
"MsmSig" = "8:_UNDEFINED" |
729 | 729 |
} |
730 | 730 |
"Entry" |
731 | 731 |
{ |
732 | 732 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
733 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
733 |
"OwnerKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018"
|
|
734 | 734 |
"MsmSig" = "8:_UNDEFINED" |
735 | 735 |
} |
736 | 736 |
"Entry" |
737 | 737 |
{ |
738 | 738 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
739 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
739 |
"OwnerKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B"
|
|
740 | 740 |
"MsmSig" = "8:_UNDEFINED" |
741 | 741 |
} |
742 | 742 |
"Entry" |
743 | 743 |
{ |
744 | 744 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
745 |
"OwnerKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E"
|
|
745 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
746 | 746 |
"MsmSig" = "8:_UNDEFINED" |
747 | 747 |
} |
748 | 748 |
"Entry" |
749 | 749 |
{ |
750 | 750 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
751 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
751 |
"OwnerKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E"
|
|
752 | 752 |
"MsmSig" = "8:_UNDEFINED" |
753 | 753 |
} |
754 | 754 |
"Entry" |
755 | 755 |
{ |
756 | 756 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
757 |
"OwnerKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B"
|
|
757 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
758 | 758 |
"MsmSig" = "8:_UNDEFINED" |
759 | 759 |
} |
760 | 760 |
"Entry" |
761 | 761 |
{ |
762 | 762 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
763 |
"OwnerKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018"
|
|
763 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
764 | 764 |
"MsmSig" = "8:_UNDEFINED" |
765 | 765 |
} |
766 | 766 |
"Entry" |
767 | 767 |
{ |
768 | 768 |
"MsmKey" = "8:_FEB022EDE0033D98762218D7F195A4C5" |
769 |
"OwnerKey" = "8:_9100322F88456ACA53F7FACAE20CC50D"
|
|
769 |
"OwnerKey" = "8:_3A931127C64677CDA53DBEB968205038"
|
|
770 | 770 |
"MsmSig" = "8:_UNDEFINED" |
771 | 771 |
} |
772 | 772 |
"Entry" |
... | ... | |
778 | 778 |
"Entry" |
779 | 779 |
{ |
780 | 780 |
"MsmKey" = "8:_UNDEFINED" |
781 |
"OwnerKey" = "8:_9D204F79E94398A76CBB672860F9C013"
|
|
781 |
"OwnerKey" = "8:_1FADD9CB7EE601B8344B47707D4A0940"
|
|
782 | 782 |
"MsmSig" = "8:_UNDEFINED" |
783 | 783 |
} |
784 | 784 |
"Entry" |
785 | 785 |
{ |
786 | 786 |
"MsmKey" = "8:_UNDEFINED" |
787 |
"OwnerKey" = "8:_BE57F957CCAFCB844A3D8FF821AD7CD1"
|
|
787 |
"OwnerKey" = "8:_25A121A091D788A443513467F75931DE"
|
|
788 | 788 |
"MsmSig" = "8:_UNDEFINED" |
789 | 789 |
} |
790 | 790 |
"Entry" |
791 | 791 |
{ |
792 | 792 |
"MsmKey" = "8:_UNDEFINED" |
793 |
"OwnerKey" = "8:_3A931127C64677CDA53DBEB968205038"
|
|
793 |
"OwnerKey" = "8:_A960BE324C15AFFB3F9C40212FAB57A4"
|
|
794 | 794 |
"MsmSig" = "8:_UNDEFINED" |
795 | 795 |
} |
796 | 796 |
"Entry" |
797 | 797 |
{ |
798 | 798 |
"MsmKey" = "8:_UNDEFINED" |
799 |
"OwnerKey" = "8:_1A27D73450F9D2F2B5C490D5813C884E"
|
|
799 |
"OwnerKey" = "8:_FAAC1FFB169FB8917B9CAC1F7D985493"
|
|
800 | 800 |
"MsmSig" = "8:_UNDEFINED" |
801 | 801 |
} |
802 | 802 |
"Entry" |
803 | 803 |
{ |
804 | 804 |
"MsmKey" = "8:_UNDEFINED" |
805 |
"OwnerKey" = "8:_92B44499EC44CEA35599DF4E250BC016"
|
|
805 |
"OwnerKey" = "8:_FAA3AF738FB3BE18114A8C803C8C6D19"
|
|
806 | 806 |
"MsmSig" = "8:_UNDEFINED" |
807 | 807 |
} |
808 | 808 |
"Entry" |
809 | 809 |
{ |
810 | 810 |
"MsmKey" = "8:_UNDEFINED" |
811 |
"OwnerKey" = "8:_B13670482C297201D1A5417144B70912"
|
|
811 |
"OwnerKey" = "8:_2AA77708F6785FB7D28F687520D8FC72"
|
|
812 | 812 |
"MsmSig" = "8:_UNDEFINED" |
813 | 813 |
} |
814 | 814 |
"Entry" |
815 | 815 |
{ |
816 | 816 |
"MsmKey" = "8:_UNDEFINED" |
817 |
"OwnerKey" = "8:_CA9BBFD9563FF72DBBA51195C2B228E8"
|
|
817 |
"OwnerKey" = "8:_D4035D0C630B49017D8DF2E968E8FBA4"
|
|
818 | 818 |
"MsmSig" = "8:_UNDEFINED" |
819 | 819 |
} |
820 | 820 |
"Entry" |
821 | 821 |
{ |
822 | 822 |
"MsmKey" = "8:_UNDEFINED" |
823 |
"OwnerKey" = "8:_57CBCBC84253D407662279E78B32F325"
|
|
823 |
"OwnerKey" = "8:_AD9D15C7127E25B06C33EF249CF37FE4"
|
|
824 | 824 |
"MsmSig" = "8:_UNDEFINED" |
825 | 825 |
} |
826 | 826 |
"Entry" |
827 | 827 |
{ |
828 | 828 |
"MsmKey" = "8:_UNDEFINED" |
829 |
"OwnerKey" = "8:_8124E635E076100DA1D2F9A485D38DEA"
|
|
829 |
"OwnerKey" = "8:_6B63367C8E28CD7D3BC23B2FB976ED34"
|
|
830 | 830 |
"MsmSig" = "8:_UNDEFINED" |
831 | 831 |
} |
832 | 832 |
"Entry" |
833 | 833 |
{ |
834 | 834 |
"MsmKey" = "8:_UNDEFINED" |
835 |
"OwnerKey" = "8:_D392D5A5CDB50128CF87E292CB48A40F"
|
|
835 |
"OwnerKey" = "8:_E9F1AC8F55C4D9AB1976622B511DCBFD"
|
|
836 | 836 |
"MsmSig" = "8:_UNDEFINED" |
837 | 837 |
} |
838 | 838 |
"Entry" |
839 | 839 |
{ |
840 | 840 |
"MsmKey" = "8:_UNDEFINED" |
841 |
"OwnerKey" = "8:_A30D39F9DF3FE686168DFD1468A9F585"
|
|
841 |
"OwnerKey" = "8:_4E5ED4BDB0D156A46D5EC59AC0011C8D"
|
|
842 | 842 |
"MsmSig" = "8:_UNDEFINED" |
843 | 843 |
} |
844 | 844 |
"Entry" |
845 | 845 |
{ |
846 | 846 |
"MsmKey" = "8:_UNDEFINED" |
847 |
"OwnerKey" = "8:_BA58F9F2777E8A46EE5A3BAAB8D0CC66"
|
|
847 |
"OwnerKey" = "8:_69DD9BA2CA427220EE6D8EE709E5C567"
|
|
848 | 848 |
"MsmSig" = "8:_UNDEFINED" |
849 | 849 |
} |
850 | 850 |
"Entry" |
851 | 851 |
{ |
852 | 852 |
"MsmKey" = "8:_UNDEFINED" |
853 |
"OwnerKey" = "8:_591269EE6203FFDCBFFAA2249614F7D4"
|
|
853 |
"OwnerKey" = "8:_5ED4CBE6DEDC8C732E6EDBC8C07AC216"
|
|
854 | 854 |
"MsmSig" = "8:_UNDEFINED" |
855 | 855 |
} |
856 | 856 |
"Entry" |
857 | 857 |
{ |
858 | 858 |
"MsmKey" = "8:_UNDEFINED" |
859 |
"OwnerKey" = "8:_AADF009EF9894E47EA157BD2B441FB50"
|
|
859 |
"OwnerKey" = "8:_08DBEA38FC48DB8B68D12E6D30C642B2"
|
|
860 | 860 |
"MsmSig" = "8:_UNDEFINED" |
861 | 861 |
} |
862 | 862 |
"Entry" |
863 | 863 |
{ |
864 | 864 |
"MsmKey" = "8:_UNDEFINED" |
865 |
"OwnerKey" = "8:_7ADE337533691BCD43A62F2BF401C36A"
|
|
865 |
"OwnerKey" = "8:_55C99728D08FBB4C71A6BC18ABB0AEB2"
|
|
866 | 866 |
"MsmSig" = "8:_UNDEFINED" |
867 | 867 |
} |
868 | 868 |
"Entry" |
869 | 869 |
{ |
870 | 870 |
"MsmKey" = "8:_UNDEFINED" |
871 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
871 |
"OwnerKey" = "8:_2F749EF3EBAF451EDCC3B9915313A65A"
|
|
872 | 872 |
"MsmSig" = "8:_UNDEFINED" |
873 | 873 |
} |
874 | 874 |
"Entry" |
875 | 875 |
{ |
876 | 876 |
"MsmKey" = "8:_UNDEFINED" |
877 |
"OwnerKey" = "8:_4F798614337B3148EB5B44B5BD76F7DC"
|
|
877 |
"OwnerKey" = "8:_0CD4E40A92599C2F85453EA0F0CD3599"
|
|
878 | 878 |
"MsmSig" = "8:_UNDEFINED" |
879 | 879 |
} |
880 | 880 |
"Entry" |
881 | 881 |
{ |
882 | 882 |
"MsmKey" = "8:_UNDEFINED" |
883 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
883 |
"OwnerKey" = "8:_FAE13061DB988068CE7482609DB22EBE"
|
|
884 | 884 |
"MsmSig" = "8:_UNDEFINED" |
885 | 885 |
} |
886 | 886 |
"Entry" |
887 | 887 |
{ |
888 | 888 |
"MsmKey" = "8:_UNDEFINED" |
889 |
"OwnerKey" = "8:_AC675114F5571BBFB725A1C9127AC61F"
|
|
889 |
"OwnerKey" = "8:_118D5FB463038F05FEFDEF81B9681A7C"
|
|
890 | 890 |
"MsmSig" = "8:_UNDEFINED" |
891 | 891 |
} |
892 | 892 |
"Entry" |
893 | 893 |
{ |
894 | 894 |
"MsmKey" = "8:_UNDEFINED" |
895 |
"OwnerKey" = "8:_0100D0968203C124D8E66DC3AB495522"
|
|
895 |
"OwnerKey" = "8:_561D653B64F953E562187D919C0FDAB6"
|
|
896 | 896 |
"MsmSig" = "8:_UNDEFINED" |
897 | 897 |
} |
898 | 898 |
"Entry" |
899 | 899 |
{ |
900 | 900 |
"MsmKey" = "8:_UNDEFINED" |
901 |
"OwnerKey" = "8:_57E71662519D3E9A69A248D55928D003"
|
|
901 |
"OwnerKey" = "8:_27E7F7BE3CD55A16A06D55B5D5B0ACB0"
|
|
902 | 902 |
"MsmSig" = "8:_UNDEFINED" |
903 | 903 |
} |
904 | 904 |
"Entry" |
905 | 905 |
{ |
906 | 906 |
"MsmKey" = "8:_UNDEFINED" |
907 |
"OwnerKey" = "8:_BE1ADF0D1332AE16AACE98E9EB6B7002"
|
|
907 |
"OwnerKey" = "8:_8F7680AA088FFA8D76BE6EBF97D200EF"
|
|
908 | 908 |
"MsmSig" = "8:_UNDEFINED" |
909 | 909 |
} |
910 | 910 |
"Entry" |
911 | 911 |
{ |
912 | 912 |
"MsmKey" = "8:_UNDEFINED" |
913 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
913 |
"OwnerKey" = "8:_307063A5D4BE7C67B8CFD844A26E667B"
|
|
914 | 914 |
"MsmSig" = "8:_UNDEFINED" |
915 | 915 |
} |
916 | 916 |
"Entry" |
917 | 917 |
{ |
918 | 918 |
"MsmKey" = "8:_UNDEFINED" |
919 |
"OwnerKey" = "8:_7059C44A67D41A05DF3FF4B70CBB41B4"
|
|
919 |
"OwnerKey" = "8:_5F437C9F463DA85BD95C7CCBE3AA3D78"
|
|
920 | 920 |
"MsmSig" = "8:_UNDEFINED" |
921 | 921 |
} |
922 | 922 |
"Entry" |
923 | 923 |
{ |
924 | 924 |
"MsmKey" = "8:_UNDEFINED" |
925 |
"OwnerKey" = "8:_DBD46F5F95E1EC5907492AC0064F96D2"
|
|
925 |
"OwnerKey" = "8:_87C4820F1FCCB0EF2195795A85E3CE00"
|
|
926 | 926 |
"MsmSig" = "8:_UNDEFINED" |
927 | 927 |
} |
928 | 928 |
"Entry" |
929 | 929 |
{ |
930 | 930 |
"MsmKey" = "8:_UNDEFINED" |
931 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
931 |
"OwnerKey" = "8:_F9657B884723C46F5FF383CF78A1CD7B"
|
|
932 | 932 |
"MsmSig" = "8:_UNDEFINED" |
933 | 933 |
} |
934 | 934 |
"Entry" |
935 | 935 |
{ |
936 | 936 |
"MsmKey" = "8:_UNDEFINED" |
937 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
937 |
"OwnerKey" = "8:_A77D3200A75948751BA230F51C416426"
|
|
938 | 938 |
"MsmSig" = "8:_UNDEFINED" |
939 | 939 |
} |
940 | 940 |
"Entry" |
941 | 941 |
{ |
942 | 942 |
"MsmKey" = "8:_UNDEFINED" |
943 |
"OwnerKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E"
|
|
943 |
"OwnerKey" = "8:_8019B29BE466F5F6BBE52717EEE284E7"
|
|
944 | 944 |
"MsmSig" = "8:_UNDEFINED" |
945 | 945 |
} |
946 | 946 |
"Entry" |
947 | 947 |
{ |
948 | 948 |
"MsmKey" = "8:_UNDEFINED" |
949 |
"OwnerKey" = "8:_9100322F88456ACA53F7FACAE20CC50D"
|
|
949 |
"OwnerKey" = "8:_A4E956DE052EB706E59BF10995EAA040"
|
|
950 | 950 |
"MsmSig" = "8:_UNDEFINED" |
951 | 951 |
} |
952 | 952 |
"Entry" |
953 | 953 |
{ |
954 | 954 |
"MsmKey" = "8:_UNDEFINED" |
955 |
"OwnerKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018"
|
|
955 |
"OwnerKey" = "8:_C51D003C828433EDFFF837BE9A3531F1"
|
|
956 | 956 |
"MsmSig" = "8:_UNDEFINED" |
957 | 957 |
} |
958 | 958 |
"Entry" |
959 | 959 |
{ |
960 | 960 |
"MsmKey" = "8:_UNDEFINED" |
961 |
"OwnerKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B"
|
|
961 |
"OwnerKey" = "8:_CB53FE9CAE8C0897637A5D7972E20458"
|
|
962 | 962 |
"MsmSig" = "8:_UNDEFINED" |
963 | 963 |
} |
964 | 964 |
"Entry" |
965 | 965 |
{ |
966 | 966 |
"MsmKey" = "8:_UNDEFINED" |
967 |
"OwnerKey" = "8:_FEB022EDE0033D98762218D7F195A4C5"
|
|
967 |
"OwnerKey" = "8:_97BC6F8F6D63B3676948470436586D47"
|
|
968 | 968 |
"MsmSig" = "8:_UNDEFINED" |
969 | 969 |
} |
970 | 970 |
"Entry" |
971 | 971 |
{ |
972 | 972 |
"MsmKey" = "8:_UNDEFINED" |
973 |
"OwnerKey" = "8:_3E4C723168B74B716CBDAE860EFB7914"
|
|
973 |
"OwnerKey" = "8:_A02F7E9DBFFD4035D955203E414B9B70"
|
|
974 | 974 |
"MsmSig" = "8:_UNDEFINED" |
975 | 975 |
} |
976 | 976 |
"Entry" |
977 | 977 |
{ |
978 | 978 |
"MsmKey" = "8:_UNDEFINED" |
979 |
"OwnerKey" = "8:_15332449F6E72BE2DB7474231C983458"
|
|
979 |
"OwnerKey" = "8:_F1DD665E8690CB693FE3D8622B414DCE"
|
|
980 | 980 |
"MsmSig" = "8:_UNDEFINED" |
981 | 981 |
} |
982 | 982 |
"Entry" |
983 | 983 |
{ |
984 | 984 |
"MsmKey" = "8:_UNDEFINED" |
985 |
"OwnerKey" = "8:_D536BD1AD39BEAB61DE8C0DFF4E03B0C"
|
|
985 |
"OwnerKey" = "8:_3DBA5A5BB051305210A6D307690FC896"
|
|
986 | 986 |
"MsmSig" = "8:_UNDEFINED" |
987 | 987 |
} |
988 | 988 |
"Entry" |
989 | 989 |
{ |
990 | 990 |
"MsmKey" = "8:_UNDEFINED" |
991 |
"OwnerKey" = "8:_888A6068098AA72778F482D950AEF283"
|
|
991 |
"OwnerKey" = "8:_3623E71BAE6DFE5EB9450C4F63E19DA5"
|
|
992 | 992 |
"MsmSig" = "8:_UNDEFINED" |
993 | 993 |
} |
994 | 994 |
"Entry" |
995 | 995 |
{ |
996 | 996 |
"MsmKey" = "8:_UNDEFINED" |
997 |
"OwnerKey" = "8:_63A4EF2AD8BE84C2A57FBB2A3A91A67D"
|
|
997 |
"OwnerKey" = "8:_778C0F2B8A1A744116ABB36669F6243D"
|
|
998 | 998 |
"MsmSig" = "8:_UNDEFINED" |
999 | 999 |
} |
1000 | 1000 |
"Entry" |
1001 | 1001 |
{ |
1002 | 1002 |
"MsmKey" = "8:_UNDEFINED" |
1003 |
"OwnerKey" = "8:_C5E80764EA218B5BCBC12DC78B08F349"
|
|
1003 |
"OwnerKey" = "8:_73E68FEF29E1AAF21F39F35EA48FCBEA"
|
|
1004 | 1004 |
"MsmSig" = "8:_UNDEFINED" |
1005 | 1005 |
} |
1006 | 1006 |
"Entry" |
1007 | 1007 |
{ |
1008 | 1008 |
"MsmKey" = "8:_UNDEFINED" |
1009 |
"OwnerKey" = "8:_82A4EB382A64EB2F3BEA46BEE7862D03"
|
|
1009 |
"OwnerKey" = "8:_4E7026AD678AE94D728D86DA2388AC9E"
|
|
1010 | 1010 |
"MsmSig" = "8:_UNDEFINED" |
1011 | 1011 |
} |
1012 | 1012 |
"Entry" |
1013 | 1013 |
{ |
1014 | 1014 |
"MsmKey" = "8:_UNDEFINED" |
1015 |
"OwnerKey" = "8:_8C51178CC000E286BD4B18382067A3DF"
|
|
1015 |
"OwnerKey" = "8:_514CDCB8ACD55A06BF7DA2CC9D0E054B"
|
|
1016 | 1016 |
"MsmSig" = "8:_UNDEFINED" |
1017 | 1017 |
} |
1018 | 1018 |
"Entry" |
1019 | 1019 |
{ |
1020 | 1020 |
"MsmKey" = "8:_UNDEFINED" |
1021 |
"OwnerKey" = "8:_CB44AC8BAB2348AFA2B02922B8292EF2"
|
|
1021 |
"OwnerKey" = "8:_E2A426C6146D208E56D4F253DC18EEE3"
|
|
1022 | 1022 |
"MsmSig" = "8:_UNDEFINED" |
1023 | 1023 |
} |
1024 | 1024 |
"Entry" |
1025 | 1025 |
{ |
1026 | 1026 |
"MsmKey" = "8:_UNDEFINED" |
1027 |
"OwnerKey" = "8:_F7BC674F3995D4DE2EB3CBB9B0E178F6"
|
|
1027 |
"OwnerKey" = "8:_48E9B880962B67FE24307D9F5868E58D"
|
|
1028 | 1028 |
"MsmSig" = "8:_UNDEFINED" |
1029 | 1029 |
} |
1030 | 1030 |
"Entry" |
1031 | 1031 |
{ |
1032 | 1032 |
"MsmKey" = "8:_UNDEFINED" |
1033 |
"OwnerKey" = "8:_671B08C5F776D289014DCE27DB4CF4C1"
|
|
1033 |
"OwnerKey" = "8:_80037AF542059B60E891CDDADE65BB49"
|
|
1034 | 1034 |
"MsmSig" = "8:_UNDEFINED" |
1035 | 1035 |
} |
1036 | 1036 |
"Entry" |
1037 | 1037 |
{ |
1038 | 1038 |
"MsmKey" = "8:_UNDEFINED" |
1039 |
"OwnerKey" = "8:_EC76406E613839D68147714EAC1621E9"
|
|
1039 |
"OwnerKey" = "8:_3864A07F7EDE82137FF55A1C994A26A9"
|
|
1040 | 1040 |
"MsmSig" = "8:_UNDEFINED" |
1041 | 1041 |
} |
1042 | 1042 |
"Entry" |
1043 | 1043 |
{ |
1044 | 1044 |
"MsmKey" = "8:_UNDEFINED" |
1045 |
"OwnerKey" = "8:_7BA55B3687FFBE42C4B87971275C7B4A"
|
|
1045 |
"OwnerKey" = "8:_6B220573F568975B1C9D0885100D1CA0"
|
|
1046 | 1046 |
"MsmSig" = "8:_UNDEFINED" |
1047 | 1047 |
} |
1048 | 1048 |
"Entry" |
1049 | 1049 |
{ |
1050 | 1050 |
"MsmKey" = "8:_UNDEFINED" |
1051 |
"OwnerKey" = "8:_6B220573F568975B1C9D0885100D1CA0"
|
|
1051 |
"OwnerKey" = "8:_7BA55B3687FFBE42C4B87971275C7B4A"
|
|
1052 | 1052 |
"MsmSig" = "8:_UNDEFINED" |
1053 | 1053 |
} |
1054 | 1054 |
"Entry" |
1055 | 1055 |
{ |
1056 | 1056 |
"MsmKey" = "8:_UNDEFINED" |
1057 |
"OwnerKey" = "8:_3864A07F7EDE82137FF55A1C994A26A9"
|
|
1057 |
"OwnerKey" = "8:_EC76406E613839D68147714EAC1621E9"
|
|
1058 | 1058 |
"MsmSig" = "8:_UNDEFINED" |
1059 | 1059 |
} |
1060 | 1060 |
"Entry" |
1061 | 1061 |
{ |
1062 | 1062 |
"MsmKey" = "8:_UNDEFINED" |
1063 |
"OwnerKey" = "8:_80037AF542059B60E891CDDADE65BB49"
|
|
1063 |
"OwnerKey" = "8:_671B08C5F776D289014DCE27DB4CF4C1"
|
|
1064 | 1064 |
"MsmSig" = "8:_UNDEFINED" |
1065 | 1065 |
} |
1066 | 1066 |
"Entry" |
1067 | 1067 |
{ |
1068 | 1068 |
"MsmKey" = "8:_UNDEFINED" |
1069 |
"OwnerKey" = "8:_48E9B880962B67FE24307D9F5868E58D"
|
|
1069 |
"OwnerKey" = "8:_F7BC674F3995D4DE2EB3CBB9B0E178F6"
|
|
1070 | 1070 |
"MsmSig" = "8:_UNDEFINED" |
1071 | 1071 |
} |
1072 | 1072 |
"Entry" |
1073 | 1073 |
{ |
1074 | 1074 |
"MsmKey" = "8:_UNDEFINED" |
1075 |
"OwnerKey" = "8:_E2A426C6146D208E56D4F253DC18EEE3"
|
|
1075 |
"OwnerKey" = "8:_CB44AC8BAB2348AFA2B02922B8292EF2"
|
|
1076 | 1076 |
"MsmSig" = "8:_UNDEFINED" |
1077 | 1077 |
} |
1078 | 1078 |
"Entry" |
1079 | 1079 |
{ |
1080 | 1080 |
"MsmKey" = "8:_UNDEFINED" |
1081 |
"OwnerKey" = "8:_514CDCB8ACD55A06BF7DA2CC9D0E054B"
|
|
1081 |
"OwnerKey" = "8:_8C51178CC000E286BD4B18382067A3DF"
|
|
1082 | 1082 |
"MsmSig" = "8:_UNDEFINED" |
1083 | 1083 |
} |
1084 | 1084 |
"Entry" |
1085 | 1085 |
{ |
1086 | 1086 |
"MsmKey" = "8:_UNDEFINED" |
1087 |
"OwnerKey" = "8:_4E7026AD678AE94D728D86DA2388AC9E"
|
|
1087 |
"OwnerKey" = "8:_82A4EB382A64EB2F3BEA46BEE7862D03"
|
|
1088 | 1088 |
"MsmSig" = "8:_UNDEFINED" |
1089 | 1089 |
} |
1090 | 1090 |
"Entry" |
1091 | 1091 |
{ |
1092 | 1092 |
"MsmKey" = "8:_UNDEFINED" |
1093 |
"OwnerKey" = "8:_73E68FEF29E1AAF21F39F35EA48FCBEA"
|
|
1093 |
"OwnerKey" = "8:_C5E80764EA218B5BCBC12DC78B08F349"
|
|
1094 | 1094 |
"MsmSig" = "8:_UNDEFINED" |
1095 | 1095 |
} |
1096 | 1096 |
"Entry" |
1097 | 1097 |
{ |
1098 | 1098 |
"MsmKey" = "8:_UNDEFINED" |
1099 |
"OwnerKey" = "8:_778C0F2B8A1A744116ABB36669F6243D"
|
|
1099 |
"OwnerKey" = "8:_63A4EF2AD8BE84C2A57FBB2A3A91A67D"
|
|
1100 | 1100 |
"MsmSig" = "8:_UNDEFINED" |
1101 | 1101 |
} |
1102 | 1102 |
"Entry" |
1103 | 1103 |
{ |
1104 | 1104 |
"MsmKey" = "8:_UNDEFINED" |
1105 |
"OwnerKey" = "8:_3623E71BAE6DFE5EB9450C4F63E19DA5"
|
|
1105 |
"OwnerKey" = "8:_888A6068098AA72778F482D950AEF283"
|
|
1106 | 1106 |
"MsmSig" = "8:_UNDEFINED" |
1107 | 1107 |
} |
1108 | 1108 |
"Entry" |
1109 | 1109 |
{ |
1110 | 1110 |
"MsmKey" = "8:_UNDEFINED" |
1111 |
"OwnerKey" = "8:_3DBA5A5BB051305210A6D307690FC896"
|
|
1111 |
"OwnerKey" = "8:_D536BD1AD39BEAB61DE8C0DFF4E03B0C"
|
|
1112 | 1112 |
"MsmSig" = "8:_UNDEFINED" |
1113 | 1113 |
} |
1114 | 1114 |
"Entry" |
1115 | 1115 |
{ |
1116 | 1116 |
"MsmKey" = "8:_UNDEFINED" |
1117 |
"OwnerKey" = "8:_F1DD665E8690CB693FE3D8622B414DCE"
|
|
1117 |
"OwnerKey" = "8:_15332449F6E72BE2DB7474231C983458"
|
|
1118 | 1118 |
"MsmSig" = "8:_UNDEFINED" |
1119 | 1119 |
} |
1120 | 1120 |
"Entry" |
1121 | 1121 |
{ |
1122 | 1122 |
"MsmKey" = "8:_UNDEFINED" |
1123 |
"OwnerKey" = "8:_A02F7E9DBFFD4035D955203E414B9B70"
|
|
1123 |
"OwnerKey" = "8:_3E4C723168B74B716CBDAE860EFB7914"
|
|
1124 | 1124 |
"MsmSig" = "8:_UNDEFINED" |
1125 | 1125 |
} |
1126 | 1126 |
"Entry" |
1127 | 1127 |
{ |
1128 | 1128 |
"MsmKey" = "8:_UNDEFINED" |
1129 |
"OwnerKey" = "8:_97BC6F8F6D63B3676948470436586D47"
|
|
1129 |
"OwnerKey" = "8:_FEB022EDE0033D98762218D7F195A4C5"
|
|
1130 | 1130 |
"MsmSig" = "8:_UNDEFINED" |
1131 | 1131 |
} |
1132 | 1132 |
"Entry" |
1133 | 1133 |
{ |
1134 | 1134 |
"MsmKey" = "8:_UNDEFINED" |
1135 |
"OwnerKey" = "8:_CB53FE9CAE8C0897637A5D7972E20458"
|
|
1135 |
"OwnerKey" = "8:_CAE13FF03966F92DB313700FBEF0FF8B"
|
|
1136 | 1136 |
"MsmSig" = "8:_UNDEFINED" |
1137 | 1137 |
} |
1138 | 1138 |
"Entry" |
1139 | 1139 |
{ |
1140 | 1140 |
"MsmKey" = "8:_UNDEFINED" |
1141 |
"OwnerKey" = "8:_C51D003C828433EDFFF837BE9A3531F1"
|
|
1141 |
"OwnerKey" = "8:_9F597371228CEE5E9C27B9C5A6D8D018"
|
|
1142 | 1142 |
"MsmSig" = "8:_UNDEFINED" |
1143 | 1143 |
} |
1144 | 1144 |
"Entry" |
1145 | 1145 |
{ |
1146 | 1146 |
"MsmKey" = "8:_UNDEFINED" |
1147 |
"OwnerKey" = "8:_A4E956DE052EB706E59BF10995EAA040"
|
|
1147 |
"OwnerKey" = "8:_9100322F88456ACA53F7FACAE20CC50D"
|
|
1148 | 1148 |
"MsmSig" = "8:_UNDEFINED" |
1149 | 1149 |
} |
1150 | 1150 |
"Entry" |
1151 | 1151 |
{ |
1152 | 1152 |
"MsmKey" = "8:_UNDEFINED" |
1153 |
"OwnerKey" = "8:_8019B29BE466F5F6BBE52717EEE284E7"
|
|
1153 |
"OwnerKey" = "8:_8C1E49BC3FE08BD5F2DFFAB2C616DD4E"
|
|
1154 | 1154 |
"MsmSig" = "8:_UNDEFINED" |
1155 | 1155 |
} |
1156 | 1156 |
"Entry" |
1157 | 1157 |
{ |
1158 | 1158 |
"MsmKey" = "8:_UNDEFINED" |
1159 |
"OwnerKey" = "8:_A77D3200A75948751BA230F51C416426"
|
|
1159 |
"OwnerKey" = "8:_91E7F9E5671A15E6467A51B76B52BA05"
|
|
1160 | 1160 |
"MsmSig" = "8:_UNDEFINED" |
1161 | 1161 |
} |
1162 | 1162 |
"Entry" |
1163 | 1163 |
{ |
1164 | 1164 |
"MsmKey" = "8:_UNDEFINED" |
1165 |
"OwnerKey" = "8:_F9657B884723C46F5FF383CF78A1CD7B"
|
|
1165 |
"OwnerKey" = "8:_2830E01E0AB774F21DD73B123B541E8A"
|
|
1166 | 1166 |
"MsmSig" = "8:_UNDEFINED" |
1167 | 1167 |
} |
1168 | 1168 |
"Entry" |
1169 | 1169 |
{ |
1170 | 1170 |
"MsmKey" = "8:_UNDEFINED" |
1171 |
"OwnerKey" = "8:_87C4820F1FCCB0EF2195795A85E3CE00"
|
|
1171 |
"OwnerKey" = "8:_DBD46F5F95E1EC5907492AC0064F96D2"
|
|
1172 | 1172 |
"MsmSig" = "8:_UNDEFINED" |
1173 | 1173 |
} |
1174 | 1174 |
"Entry" |
1175 | 1175 |
{ |
1176 | 1176 |
"MsmKey" = "8:_UNDEFINED" |
1177 |
"OwnerKey" = "8:_5F437C9F463DA85BD95C7CCBE3AA3D78"
|
|
1177 |
"OwnerKey" = "8:_7059C44A67D41A05DF3FF4B70CBB41B4"
|
|
1178 | 1178 |
"MsmSig" = "8:_UNDEFINED" |
1179 | 1179 |
} |
1180 | 1180 |
"Entry" |
1181 | 1181 |
{ |
1182 | 1182 |
"MsmKey" = "8:_UNDEFINED" |
1183 |
"OwnerKey" = "8:_307063A5D4BE7C67B8CFD844A26E667B"
|
|
1183 |
"OwnerKey" = "8:_E618F4D93FEA3896A4820F1FF77833E6"
|
|
1184 | 1184 |
"MsmSig" = "8:_UNDEFINED" |
1185 | 1185 |
} |
1186 | 1186 |
"Entry" |
1187 | 1187 |
{ |
1188 | 1188 |
"MsmKey" = "8:_UNDEFINED" |
1189 |
"OwnerKey" = "8:_8F7680AA088FFA8D76BE6EBF97D200EF"
|
|
1189 |
"OwnerKey" = "8:_BE1ADF0D1332AE16AACE98E9EB6B7002"
|
|
1190 | 1190 |
"MsmSig" = "8:_UNDEFINED" |
1191 | 1191 |
} |
1192 | 1192 |
"Entry" |
1193 | 1193 |
{ |
1194 | 1194 |
"MsmKey" = "8:_UNDEFINED" |
1195 |
"OwnerKey" = "8:_27E7F7BE3CD55A16A06D55B5D5B0ACB0"
|
|
1195 |
"OwnerKey" = "8:_57E71662519D3E9A69A248D55928D003"
|
|
1196 | 1196 |
"MsmSig" = "8:_UNDEFINED" |
1197 | 1197 |
} |
1198 | 1198 |
"Entry" |
1199 | 1199 |
{ |
1200 | 1200 |
"MsmKey" = "8:_UNDEFINED" |
1201 |
"OwnerKey" = "8:_561D653B64F953E562187D919C0FDAB6"
|
|
1201 |
"OwnerKey" = "8:_0100D0968203C124D8E66DC3AB495522"
|
|
1202 | 1202 |
"MsmSig" = "8:_UNDEFINED" |
1203 | 1203 |
} |
1204 | 1204 |
"Entry" |
1205 | 1205 |
{ |
1206 | 1206 |
"MsmKey" = "8:_UNDEFINED" |
1207 |
"OwnerKey" = "8:_118D5FB463038F05FEFDEF81B9681A7C"
|
|
1207 |
"OwnerKey" = "8:_AC675114F5571BBFB725A1C9127AC61F"
|
|
1208 | 1208 |
"MsmSig" = "8:_UNDEFINED" |
1209 | 1209 |
} |
1210 | 1210 |
"Entry" |
1211 | 1211 |
{ |
1212 | 1212 |
"MsmKey" = "8:_UNDEFINED" |
1213 |
"OwnerKey" = "8:_FAE13061DB988068CE7482609DB22EBE"
|
|
1213 |
"OwnerKey" = "8:_04A820487CBF1F6E5B0591E70D1E6A3A"
|
|
1214 | 1214 |
"MsmSig" = "8:_UNDEFINED" |
1215 | 1215 |
} |
1216 | 1216 |
"Entry" |
1217 | 1217 |
{ |
1218 | 1218 |
"MsmKey" = "8:_UNDEFINED" |
1219 |
"OwnerKey" = "8:_0CD4E40A92599C2F85453EA0F0CD3599"
|
|
1219 |
"OwnerKey" = "8:_4F798614337B3148EB5B44B5BD76F7DC"
|
|
1220 | 1220 |
"MsmSig" = "8:_UNDEFINED" |
1221 | 1221 |
} |
1222 | 1222 |
"Entry" |
1223 | 1223 |
{ |
1224 | 1224 |
"MsmKey" = "8:_UNDEFINED" |
1225 |
"OwnerKey" = "8:_2F749EF3EBAF451EDCC3B9915313A65A"
|
|
1225 |
"OwnerKey" = "8:_7EEF24CEE7B2436CDC574285E376342E"
|
|
1226 | 1226 |
"MsmSig" = "8:_UNDEFINED" |
1227 | 1227 |
} |
1228 | 1228 |
"Entry" |
1229 | 1229 |
{ |
1230 | 1230 |
"MsmKey" = "8:_UNDEFINED" |
1231 |
"OwnerKey" = "8:_55C99728D08FBB4C71A6BC18ABB0AEB2"
|
|
1231 |
"OwnerKey" = "8:_7ADE337533691BCD43A62F2BF401C36A"
|
|
1232 | 1232 |
"MsmSig" = "8:_UNDEFINED" |
1233 | 1233 |
} |
1234 | 1234 |
"Entry" |
1235 | 1235 |
{ |
1236 | 1236 |
"MsmKey" = "8:_UNDEFINED" |
1237 |
"OwnerKey" = "8:_08DBEA38FC48DB8B68D12E6D30C642B2"
|
|
1237 |
"OwnerKey" = "8:_AADF009EF9894E47EA157BD2B441FB50"
|
|
1238 | 1238 |
"MsmSig" = "8:_UNDEFINED" |
1239 | 1239 |
} |
1240 | 1240 |
"Entry" |
1241 | 1241 |
{ |
1242 | 1242 |
"MsmKey" = "8:_UNDEFINED" |
1243 |
"OwnerKey" = "8:_5ED4CBE6DEDC8C732E6EDBC8C07AC216"
|
|
1243 |
"OwnerKey" = "8:_591269EE6203FFDCBFFAA2249614F7D4"
|
|
1244 | 1244 |
"MsmSig" = "8:_UNDEFINED" |
1245 | 1245 |
} |
1246 | 1246 |
"Entry" |
1247 | 1247 |
{ |
1248 | 1248 |
"MsmKey" = "8:_UNDEFINED" |
1249 |
"OwnerKey" = "8:_69DD9BA2CA427220EE6D8EE709E5C567"
|
|
1249 |
"OwnerKey" = "8:_BA58F9F2777E8A46EE5A3BAAB8D0CC66"
|
|
1250 | 1250 |
"MsmSig" = "8:_UNDEFINED" |
1251 | 1251 |
} |
1252 | 1252 |
"Entry" |
1253 | 1253 |
{ |
1254 | 1254 |
"MsmKey" = "8:_UNDEFINED" |
1255 |
"OwnerKey" = "8:_4E5ED4BDB0D156A46D5EC59AC0011C8D"
|
|
1255 |
"OwnerKey" = "8:_A30D39F9DF3FE686168DFD1468A9F585"
|
|
1256 | 1256 |
"MsmSig" = "8:_UNDEFINED" |
1257 | 1257 |
} |
1258 | 1258 |
"Entry" |
1259 | 1259 |
{ |
1260 | 1260 |
"MsmKey" = "8:_UNDEFINED" |
1261 |
"OwnerKey" = "8:_E9F1AC8F55C4D9AB1976622B511DCBFD"
|
|
1261 |
"OwnerKey" = "8:_D392D5A5CDB50128CF87E292CB48A40F"
|
|
1262 | 1262 |
"MsmSig" = "8:_UNDEFINED" |
1263 | 1263 |
} |
1264 | 1264 |
"Entry" |
1265 | 1265 |
{ |
1266 | 1266 |
"MsmKey" = "8:_UNDEFINED" |
1267 |
"OwnerKey" = "8:_6B63367C8E28CD7D3BC23B2FB976ED34"
|
|
1267 |
"OwnerKey" = "8:_8124E635E076100DA1D2F9A485D38DEA"
|
|
1268 | 1268 |
"MsmSig" = "8:_UNDEFINED" |
1269 | 1269 |
} |
1270 | 1270 |
"Entry" |
1271 | 1271 |
{ |
1272 | 1272 |
"MsmKey" = "8:_UNDEFINED" |
1273 |
"OwnerKey" = "8:_AD9D15C7127E25B06C33EF249CF37FE4"
|
|
1273 |
"OwnerKey" = "8:_57CBCBC84253D407662279E78B32F325"
|
|
1274 | 1274 |
"MsmSig" = "8:_UNDEFINED" |
1275 | 1275 |
} |
1276 | 1276 |
"Entry" |
1277 | 1277 |
{ |
1278 | 1278 |
"MsmKey" = "8:_UNDEFINED" |
1279 |
"OwnerKey" = "8:_D4035D0C630B49017D8DF2E968E8FBA4"
|
|
1279 |
"OwnerKey" = "8:_CA9BBFD9563FF72DBBA51195C2B228E8"
|
|
1280 | 1280 |
"MsmSig" = "8:_UNDEFINED" |
1281 | 1281 |
} |
1282 | 1282 |
"Entry" |
1283 | 1283 |
{ |
1284 | 1284 |
"MsmKey" = "8:_UNDEFINED" |
1285 |
"OwnerKey" = "8:_2AA77708F6785FB7D28F687520D8FC72"
|
|
1285 |
"OwnerKey" = "8:_B13670482C297201D1A5417144B70912"
|
|
1286 | 1286 |
"MsmSig" = "8:_UNDEFINED" |
1287 | 1287 |
} |
1288 | 1288 |
"Entry" |
1289 | 1289 |
{ |
1290 | 1290 |
"MsmKey" = "8:_UNDEFINED" |
1291 |
"OwnerKey" = "8:_FAA3AF738FB3BE18114A8C803C8C6D19"
|
|
1291 |
"OwnerKey" = "8:_92B44499EC44CEA35599DF4E250BC016"
|
|
1292 | 1292 |
"MsmSig" = "8:_UNDEFINED" |
1293 | 1293 |
} |
1294 | 1294 |
"Entry" |
1295 | 1295 |
{ |
1296 | 1296 |
"MsmKey" = "8:_UNDEFINED" |
1297 |
"OwnerKey" = "8:_FAAC1FFB169FB8917B9CAC1F7D985493"
|
|
1297 |
"OwnerKey" = "8:_1A27D73450F9D2F2B5C490D5813C884E"
|
|
1298 | 1298 |
"MsmSig" = "8:_UNDEFINED" |
1299 | 1299 |
} |
1300 | 1300 |
"Entry" |
1301 | 1301 |
{ |
1302 | 1302 |
"MsmKey" = "8:_UNDEFINED" |
1303 |
"OwnerKey" = "8:_A960BE324C15AFFB3F9C40212FAB57A4"
|
|
1303 |
"OwnerKey" = "8:_3A931127C64677CDA53DBEB968205038"
|
|
1304 | 1304 |
"MsmSig" = "8:_UNDEFINED" |
1305 | 1305 |
} |
1306 | 1306 |
"Entry" |
1307 | 1307 |
{ |
1308 | 1308 |
"MsmKey" = "8:_UNDEFINED" |
1309 |
"OwnerKey" = "8:_25A121A091D788A443513467F75931DE"
|
|
1309 |
"OwnerKey" = "8:_BE57F957CCAFCB844A3D8FF821AD7CD1"
|
|
1310 | 1310 |
"MsmSig" = "8:_UNDEFINED" |
1311 | 1311 |
} |
1312 | 1312 |
"Entry" |
1313 | 1313 |
{ |
1314 | 1314 |
"MsmKey" = "8:_UNDEFINED" |
1315 |
"OwnerKey" = "8:_1FADD9CB7EE601B8344B47707D4A0940"
|
|
1315 |
"OwnerKey" = "8:_9D204F79E94398A76CBB672860F9C013"
|
|
1316 | 1316 |
"MsmSig" = "8:_UNDEFINED" |
1317 | 1317 |
} |
1318 | 1318 |
} |
... | ... | |
1547 | 1547 |
"AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL" |
1548 | 1548 |
"ScatterAssemblies" |
1549 | 1549 |
{ |
1550 |
"_0100D0968203C124D8E66DC3AB495522" |
|
1551 |
{ |
|
1552 |
"Name" = "8:Newtonsoft.Json.dll" |
|
1553 |
"Attributes" = "3:512" |
|
1554 |
} |
|
1555 | 1550 |
} |
1556 | 1551 |
"SourcePath" = "8:Newtonsoft.Json.dll" |
1557 | 1552 |
"TargetName" = "8:" |
... | ... | |
1578 | 1573 |
"AssemblyAsmDisplayName" = "8:Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" |
1579 | 1574 |
"ScatterAssemblies" |
1580 | 1575 |
{ |
1581 |
"_04A820487CBF1F6E5B0591E70D1E6A3A" |
|
1582 |
{ |
|
1583 |
"Name" = "8:Microsoft.Threading.Tasks.dll" |
|
1584 |
"Attributes" = "3:512" |
|
1585 |
} |
|
1586 | 1576 |
} |
1587 | 1577 |
"SourcePath" = "8:Microsoft.Threading.Tasks.dll" |
1588 | 1578 |
"TargetName" = "8:" |
... | ... | |
1609 | 1599 |
"AssemblyAsmDisplayName" = "8:System.Linq.Expressions, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1610 | 1600 |
"ScatterAssemblies" |
1611 | 1601 |
{ |
1612 |
"_08DBEA38FC48DB8B68D12E6D30C642B2" |
|
1613 |
{ |
|
1614 |
"Name" = "8:System.Linq.Expressions.dll" |
|
1615 |
"Attributes" = "3:512" |
|
1616 |
} |
|
1617 | 1602 |
} |
1618 | 1603 |
"SourcePath" = "8:System.Linq.Expressions.dll" |
1619 | 1604 |
"TargetName" = "8:" |
... | ... | |
1640 | 1625 |
"AssemblyAsmDisplayName" = "8:System.Net.NetworkInformation, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1641 | 1626 |
"ScatterAssemblies" |
1642 | 1627 |
{ |
1643 |
"_0CD4E40A92599C2F85453EA0F0CD3599" |
|
1644 |
{ |
|
1645 |
"Name" = "8:System.Net.NetworkInformation.dll" |
|
1646 |
"Attributes" = "3:512" |
|
1647 |
} |
|
1648 | 1628 |
} |
1649 | 1629 |
"SourcePath" = "8:System.Net.NetworkInformation.dll" |
1650 | 1630 |
"TargetName" = "8:" |
... | ... | |
1671 | 1651 |
"AssemblyAsmDisplayName" = "8:System.Net.Requests, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1672 | 1652 |
"ScatterAssemblies" |
1673 | 1653 |
{ |
1674 |
"_118D5FB463038F05FEFDEF81B9681A7C" |
|
1675 |
{ |
|
1676 |
"Name" = "8:System.Net.Requests.dll" |
|
1677 |
"Attributes" = "3:512" |
|
1678 |
} |
|
1679 | 1654 |
} |
1680 | 1655 |
"SourcePath" = "8:System.Net.Requests.dll" |
1681 | 1656 |
"TargetName" = "8:" |
... | ... | |
1702 | 1677 |
"AssemblyAsmDisplayName" = "8:KCOMDataModel, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" |
1703 | 1678 |
"ScatterAssemblies" |
1704 | 1679 |
{ |
1705 |
"_15332449F6E72BE2DB7474231C983458" |
|
1706 |
{ |
|
1707 |
"Name" = "8:KCOMDataModel.dll" |
|
1708 |
"Attributes" = "3:512" |
|
1709 |
} |
|
1710 | 1680 |
} |
1711 | 1681 |
"SourcePath" = "8:KCOMDataModel.dll" |
1712 | 1682 |
"TargetName" = "8:" |
... | ... | |
1733 | 1703 |
"AssemblyAsmDisplayName" = "8:Microsoft.Expression.Interactions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" |
1734 | 1704 |
"ScatterAssemblies" |
1735 | 1705 |
{ |
1736 |
"_1A27D73450F9D2F2B5C490D5813C884E" |
|
1737 |
{ |
|
1738 |
"Name" = "8:Microsoft.Expression.Interactions.dll" |
|
1739 |
"Attributes" = "3:512" |
|
1740 |
} |
|
1741 | 1706 |
} |
1742 | 1707 |
"SourcePath" = "8:Microsoft.Expression.Interactions.dll" |
1743 | 1708 |
"TargetName" = "8:" |
... | ... | |
1764 | 1729 |
"AssemblyAsmDisplayName" = "8:System.Collections.Concurrent, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1765 | 1730 |
"ScatterAssemblies" |
1766 | 1731 |
{ |
1767 |
"_1FADD9CB7EE601B8344B47707D4A0940" |
|
1768 |
{ |
|
1769 |
"Name" = "8:System.Collections.Concurrent.dll" |
|
1770 |
"Attributes" = "3:512" |
|
1771 |
} |
|
1772 | 1732 |
} |
1773 | 1733 |
"SourcePath" = "8:System.Collections.Concurrent.dll" |
1774 | 1734 |
"TargetName" = "8:" |
... | ... | |
1795 | 1755 |
"AssemblyAsmDisplayName" = "8:System.Collections, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1796 | 1756 |
"ScatterAssemblies" |
1797 | 1757 |
{ |
1798 |
"_25A121A091D788A443513467F75931DE" |
|
1799 |
{ |
|
1800 |
"Name" = "8:System.Collections.dll" |
|
1801 |
"Attributes" = "3:512" |
|
1802 |
} |
|
1803 | 1758 |
} |
1804 | 1759 |
"SourcePath" = "8:System.Collections.dll" |
1805 | 1760 |
"TargetName" = "8:" |
... | ... | |
1826 | 1781 |
"AssemblyAsmDisplayName" = "8:System.ObjectModel, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1827 | 1782 |
"ScatterAssemblies" |
1828 | 1783 |
{ |
1829 |
"_27E7F7BE3CD55A16A06D55B5D5B0ACB0" |
|
1830 |
{ |
|
1831 |
"Name" = "8:System.ObjectModel.dll" |
|
1832 |
"Attributes" = "3:512" |
|
1833 |
} |
|
1834 | 1784 |
} |
1835 | 1785 |
"SourcePath" = "8:System.ObjectModel.dll" |
1836 | 1786 |
"TargetName" = "8:" |
... | ... | |
1857 | 1807 |
"AssemblyAsmDisplayName" = "8:Telerik.Windows.Controls.RibbonView, Version=2019.1.220.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL" |
1858 | 1808 |
"ScatterAssemblies" |
1859 | 1809 |
{ |
1860 |
"_2830E01E0AB774F21DD73B123B541E8A" |
|
1861 |
{ |
|
1862 |
"Name" = "8:Telerik.Windows.Controls.RibbonView.dll" |
|
1863 |
"Attributes" = "3:512" |
|
1864 |
} |
|
1865 | 1810 |
} |
1866 | 1811 |
"SourcePath" = "8:Telerik.Windows.Controls.RibbonView.dll" |
1867 | 1812 |
"TargetName" = "8:" |
... | ... | |
1888 | 1833 |
"AssemblyAsmDisplayName" = "8:System.Diagnostics.Contracts, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1889 | 1834 |
"ScatterAssemblies" |
1890 | 1835 |
{ |
1891 |
"_2AA77708F6785FB7D28F687520D8FC72" |
|
1892 |
{ |
|
1893 |
"Name" = "8:System.Diagnostics.Contracts.dll" |
|
1894 |
"Attributes" = "3:512" |
|
1895 |
} |
|
1896 | 1836 |
} |
1897 | 1837 |
"SourcePath" = "8:System.Diagnostics.Contracts.dll" |
1898 | 1838 |
"TargetName" = "8:" |
... | ... | |
1919 | 1859 |
"AssemblyAsmDisplayName" = "8:System.Linq.Queryable, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1920 | 1860 |
"ScatterAssemblies" |
1921 | 1861 |
{ |
1922 |
"_2F749EF3EBAF451EDCC3B9915313A65A" |
|
1923 |
{ |
|
1924 |
"Name" = "8:System.Linq.Queryable.dll" |
|
1925 |
"Attributes" = "3:512" |
|
1926 |
} |
|
1927 | 1862 |
} |
1928 | 1863 |
"SourcePath" = "8:System.Linq.Queryable.dll" |
1929 | 1864 |
"TargetName" = "8:" |
... | ... | |
1950 | 1885 |
"AssemblyAsmDisplayName" = "8:System.Reflection.Emit, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1951 | 1886 |
"ScatterAssemblies" |
1952 | 1887 |
{ |
1953 |
"_307063A5D4BE7C67B8CFD844A26E667B" |
|
1954 |
{ |
|
1955 |
"Name" = "8:System.Reflection.Emit.dll" |
|
1956 |
"Attributes" = "3:512" |
|
1957 |
} |
|
1958 | 1888 |
} |
1959 | 1889 |
"SourcePath" = "8:System.Reflection.Emit.dll" |
1960 | 1890 |
"TargetName" = "8:" |
... | ... | |
1981 | 1911 |
"AssemblyAsmDisplayName" = "8:System.Runtime.Serialization.Primitives, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
1982 | 1912 |
"ScatterAssemblies" |
1983 | 1913 |
{ |
1984 |
"_3623E71BAE6DFE5EB9450C4F63E19DA5" |
|
1985 |
{ |
|
1986 |
"Name" = "8:System.Runtime.Serialization.Primitives.dll" |
|
1987 |
"Attributes" = "3:512" |
|
1988 |
} |
|
1989 | 1914 |
} |
1990 | 1915 |
"SourcePath" = "8:System.Runtime.Serialization.Primitives.dll" |
1991 | 1916 |
"TargetName" = "8:" |
... | ... | |
2012 | 1937 |
"AssemblyAsmDisplayName" = "8:System.Text.Encoding, Version=4.0.10.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" |
2013 | 1938 |
"ScatterAssemblies" |
2014 | 1939 |
{ |
2015 |
"_3864A07F7EDE82137FF55A1C994A26A9" |
|
2016 |
{ |
|
2017 |
"Name" = "8:System.Text.Encoding.dll" |
|
2018 |
"Attributes" = "3:512" |
|
2019 |
} |
|
2020 | 1940 |
} |
2021 | 1941 |
"SourcePath" = "8:System.Text.Encoding.dll" |
2022 | 1942 |
"TargetName" = "8:" |
... | ... | |
2043 | 1963 |
"AssemblyAsmDisplayName" = "8:Telerik.Windows.Themes.VisualStudio2013, Version=2018.1.122.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7, processorArchitecture=MSIL" |
2044 | 1964 |
"ScatterAssemblies" |
내보내기 Unified diff