aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Modules/Tango.PPC.Jobs/ViewModels/JobsViewVM.cs
blob: 64931cbe325c2410bb68fa1283d2dddbdb28f37c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using System.Windows.Data;
using Tango.BL;
using Tango.BL.Entities;
using Tango.BL.Enumerations;
using Tango.Core.Commands;
using Tango.Core.DI;
using Tango.DragAndDrop;
using Tango.PPC.Common;
using Tango.PPC.Common.Messages;
using Tango.PPC.Jobs.Dialogs;
using Tango.PPC.Jobs.Messages;
using Tango.PPC.Jobs.Views;
using System.Data.Entity;
using Tango.BL.Builders;
using Tango.PPC.Jobs.NavigationObjects;
using Tango.PPC.Storage;
using Tango.Explorer;
using System.IO;
using Google.Protobuf;
using Tango.PMR.Exports;
using Tango.Settings;
using Tango.Integration.ExternalBridge;
using System.Windows.Media;
using Tango.PMR.TCC;
using Tango.Pulse;
using System.Windows.Media.Imaging;
using Tango.Touch.Components;
using Tango.PPC.Jobs.ViewContracts;
using Tango.Core.ExtensionMethods;
using Tango.PPC.Common.Synchronization;
using Tango.PPC.Jobs.NotificationItems;
using Tango.PPC.Storage.Models;

namespace Tango.PPC.Jobs.ViewModels
{
    /// <summary>
    /// Represents the jobs list view model.
    /// </summary>
    /// <seealso cref="Tango.PPC.Common.PPCViewModel" />
    public class JobsViewVM : PPCViewModel<IJobsView>
    {
        private ObservablesContext _db; //Holds the db context for the job list.
        private ObservableCollection<ColorCatalog> _catalogs; //Holds the available color catalogs for the site.
        private ObservableCollection<Rml> _rmls; //Holds the available RML for the site.
        private List<ColorSpace> _colorSpaces; //Holds the available color spaces.
        private bool _isJobsSynchronizationNotificationActive;

        public enum JobsCategory
        {
            Draft,
            History
        }

        #region Properties

        private ObservableCollection<Job> _jobs;
        /// <summary>
        /// Gets or sets the collection of jobs.
        /// </summary>
        public ObservableCollection<Job> Jobs
        {
            get { return _jobs; }
            set { _jobs = value; RaisePropertyChangedAuto(); }
        }

        private ICollectionView _draftJobsCollectionView;
        /// <summary>
        /// Gets or sets the jobs collection view.
        /// </summary>
        public ICollectionView DraftJobsCollectionView
        {
            get { return _draftJobsCollectionView; }
            set
            {
                _draftJobsCollectionView = value;
                RaisePropertyChangedAuto();
            }
        }

        private ICollectionView _historyJobsCollectionView;
        /// <summary>
        /// Gets or sets the jobs collection view.
        /// </summary>
        public ICollectionView HistoryJobsCollectionView
        {
            get { return _historyJobsCollectionView; }
            set
            {
                _historyJobsCollectionView = value;
                RaisePropertyChangedAuto();
            }
        }

        private ObservableCollection<Job> _selectedJobs;
        /// <summary>
        /// Gets or sets the selected jobs.
        /// </summary>
        public ObservableCollection<Job> SelectedJobs
        {
            get { return _selectedJobs; }
            set { _selectedJobs = value; RaisePropertyChangedAuto(); }
        }

        private bool _isLoadingJobs;
        /// <summary>
        /// Gets or sets a value indicating whether this instance is loading jobs.
        /// </summary>
        public bool IsLoadingJobs
        {
            get { return _isLoadingJobs; }
            set { _isLoadingJobs = value; RaisePropertyChangedAuto(); }
        }

        private bool _isMultiSelecting;
        /// <summary>
        /// Gets or sets a value indicating whether this the jobs list is in multi select mode.
        /// </summary>
        public bool IsMultiSelecting
        {
            get { return _isMultiSelecting; }
            set { _isMultiSelecting = value; RaisePropertyChangedAuto(); }
        }

        private int _selectedCategoryIndex;
        /// <summary>
        /// Gets or sets the index of the selected category.
        /// </summary>
        public int SelectedCategoryIndex
        {
            get { return _selectedCategoryIndex; }
            set
            {
                _selectedCategoryIndex = value;
                RaisePropertyChangedAuto();
                RaisePropertyChanged(nameof(SelectedCategory));
            }
        }

        /// <summary>
        /// Gets or sets the selected category.
        /// </summary>
        public JobsCategory SelectedCategory
        {
            get { return (JobsCategory)SelectedCategoryIndex; }
            set
            {
                if (SelectedCategoryIndex != value.ToInt32())
                {
                    SelectedCategoryIndex = value.ToInt32();
                    Filter = null;
                }
            }
        }

        private String _filter;
        /// <summary>
        /// Gets or sets the search filter.
        /// </summary>
        public String Filter
        {
            get { return _filter; }
            set { _filter = value; RaisePropertyChangedAuto(); OnFilterChanged(); }
        }

        private ICollectionFilter _collectionFilter;
        public ICollectionFilter CollectionFilter
        {
            get { return _collectionFilter; }
            set { _collectionFilter = value; RaisePropertyChangedAuto(); }
        }


        #endregion

        #region Commands

        /// <summary>
        /// Gets or sets the job selected command.
        /// </summary>
        public RelayCommand<Object> JobSelectedCommand { get; set; }

        /// <summary>
        /// Gets or sets the job drag and drop command.
        /// </summary>
        public RelayCommand<DropEventArgs> JobDragedDroppedCommand { get; set; }

        /// <summary>
        /// Gets or sets the clear selection command.
        /// </summary>
        public RelayCommand ClearSelectionCommand { get; set; }

        /// <summary>
        /// Gets or sets the add job command.
        /// </summary>
        public RelayCommand AddJobCommand { get; set; }

        /// <summary>
        /// Gets or sets the delete jobs command.
        /// </summary>
        public RelayCommand DeleteJobsCommand { get; set; }

        /// <summary>
        /// Gets or sets the clone jobs command.
        /// </summary>
        public RelayCommand CloneJobsCommand { get; set; }

        /// <summary>
        /// Gets or sets the export job command.
        /// </summary>
        public RelayCommand ExportJobCommand { get; set; }

        #endregion

        #region Constructors

        /// <summary>
        /// Initializes a new instance of the <see cref="JobsViewVM"/> class.
        /// </summary>
        public JobsViewVM()
        {
            Jobs = new ObservableCollection<Job>();
            SelectedJobs = new ObservableCollection<Job>();

            JobSelectedCommand = new RelayCommand<Object>((x) => SelectJob(x as Job));
            JobDragedDroppedCommand = new RelayCommand<DropEventArgs>((e) =>
            {
                Job draggedJob = e.Draggable.DataContext as Job;
                Job droppedJob = e.Droppable.DataContext as Job;

                DragAndDropJob(draggedJob, droppedJob);
            });

            ClearSelectionCommand = new RelayCommand(ClearSelection);
            AddJobCommand = new RelayCommand(() => AddNewJob());
            DeleteJobsCommand = new RelayCommand(() => DeleteJobs(SelectedJobs));
            CloneJobsCommand = new RelayCommand(() => CloneJobs(SelectedJobs));
            ExportJobCommand = new RelayCommand(ExportJob);

            RegisterForMessage<JobRemovedMessage>(HandleJobRemovedMessage);
            RegisterForMessage<JobSavedMessage>(HandleJobSavedMessage);
            RegisterForMessage<NavigatedToJobsModuleMessage>((x) => Filter = null);

            CollectionFilter = new DefaultCollectionFilter();
            CollectionFilter.RegisterFilter(item =>
            {
                var job = item as Job;

                if (job != null)
                {
                    if (String.IsNullOrEmpty(Filter))
                    {
                        return true;
                    }
                    else
                    {
                        return (job.Name.ToLower().StartsWith(Filter) || (job.Customer != null && job.Customer.Name.ToLower().StartsWith(Filter)));
                    }
                }
                else
                {
                    return true;
                }
            });
        }

        #endregion

        #region Drag & Drop

        /// <summary>
        /// Called when a job has been dragged and dropped into another job.
        /// </summary>
        /// <param name="draggedJob">The dragged job.</param>
        /// <param name="droppedJob">The dropped job.</param>
        private void DragAndDropJob(Job draggedJob, Job droppedJob)
        {
            LogManager.Log($"Job Drag & Drop '{draggedJob.Name}' => '{droppedJob.Name}'.");

            if (draggedJob.JobIndex > droppedJob.JobIndex)
            {
                draggedJob.JobIndex = droppedJob.JobIndex - 1;
            }
            else
            {
                draggedJob.JobIndex = droppedJob.JobIndex + 1;
            }

            int index = 1;

            foreach (var job in Jobs.OrderBy(x => x.JobIndex))
            {
                job.JobIndex = index++;
            }

            DraftJobsCollectionView.Refresh();
        }

        #endregion

        #region Job Selection & Loading

        /// <summary>
        /// Selects the job.
        /// </summary>
        /// <param name="job">The job.</param>
        public async void SelectJob(Job job, bool directlyToEdit = false)
        {
            if (!ApplicationManager.IsInTechnicianMode && job.ColorSpace != null && job.ColorSpace.Code == ColorSpaces.Volume.ToInt32())
            {
                await NotificationProvider.ShowError("The selected job is supported only in technician mode.");
                return;
            }

            LogManager.Log($"Job '{job.Name}' selected.");

            RaiseMessage(new JobSelectedMessage() { Job = job, Context = _db });

            if (!directlyToEdit && MachineProvider.MachineOperator.CanPrint)
            {
                await NavigationManager.NavigateWithObject<JobsModule, JobSummeryView, JobSummeryNavigationObject>(new JobSummeryNavigationObject()
                {
                    Context = _db,
                    Job = job,
                });
            }
            else
            {
                await NavigationManager.NavigateTo<JobsModule>(nameof(JobView));
            }
        }

        /// <summary>
        /// Loads the jobs from database.
        /// </summary>
        public void LoadJobs(Action onCompleted = null)
        {
            try
            {
                LogManager.Log("Loading machine jobs...");

                Task.Factory.StartNew(() =>
                {
                    IsLoadingJobs = true;

                    Thread.Sleep(500);

                    _db = ObservablesContext.CreateDefault();

                    _colorSpaces = _db.ColorSpaces.ToList();

                    var jobs = new JobsCollectionBuilder(_db).Set(x => x.MachineGuid == MachineProvider.Machine.Guid).WithSegments().WithBrushStops().WithCustomer().WithColorSpace().Build();

                    InvokeUI(() =>
                    {
                        Jobs = jobs;
                        DraftJobsCollectionView = new ListCollectionView(Jobs);
                        DraftJobsCollectionView.SortDescriptions.Add(new SortDescription(nameof(Job.LastUpdated), ListSortDirection.Descending));
                        DraftJobsCollectionView.Filter = new Predicate<object>(x =>
                        {
                            var job = x as Job;
                            return job.JobStatus == JobStatuses.Draft;
                        });


                        HistoryJobsCollectionView = new ListCollectionView(Jobs);
                        HistoryJobsCollectionView.SortDescriptions.Add(new SortDescription(nameof(Job.LastUpdated), ListSortDirection.Descending));
                        HistoryJobsCollectionView.Filter = new Predicate<object>(x =>
                        {
                            var job = x as Job;
                            return job.JobStatus != JobStatuses.Draft;
                        });

                        IsLoadingJobs = false;
                        LogManager.Log("Machine jobs loaded!");
                        onCompleted?.Invoke();
                    });
                });
            }
            catch (Exception ex)
            {
                LogManager.Log(ex);
                NotificationProvider.ShowError("An error occurred while trying to load the machine jobs.");
            }
        }

        /// <summary>
        /// Clears the job selection.
        /// </summary>
        public void ClearSelection()
        {
            SelectedJobs.Clear();
            IsMultiSelecting = false;
        }

        /// <summary>
        /// Adds a new job.
        /// </summary>
        private async void AddNewJob(Color? colorProfile = null, TwnFile twnFile = null)
        {
            try
            {
                LogManager.Log("Adding new job...");

                var settings = SettingsManager.Default.GetOrCreate<JobsModuleSettings>();

                var machine = MachineProvider.Machine;

                JobCreationViewVM vm = new JobCreationViewVM(
                    Settings.SupportedJobTypes.Count > 0 ? Settings.SupportedJobTypes : Enum.GetValues(typeof(JobTypes)).Cast<JobTypes>().ToList(),
                    Settings.SupportedColorSpaces.Count > 0 ? Settings.SupportedColorSpaces : Enum.GetValues(typeof(ColorSpaces)).Cast<ColorSpaces>().Where(x => x.IsUserSpace() || (ApplicationManager.IsInTechnicianMode && x == ColorSpaces.Volume)).ToList()
                    );

                if (_catalogs.Count == 0)
                {
                    vm.SupportedColorSpaces.Remove(ColorSpaces.Catalog);
                }

                CatalogSelectionViewVM catalogVM = new CatalogSelectionViewVM(_catalogs.ToList(), _catalogs.ToList().SingleOrDefault(x => x.Guid == settings.LastSelectedCatalogGuid));

                if (settings.LastJobType != null)
                {
                    vm.SelectedJobType = settings.LastJobType.Value;
                }
                else
                {
                    vm.SelectedJobType = Settings.SupportedJobTypes.FirstOrDefault();
                }

                if (settings.LastJobColorSpace != null)
                {
                    vm.SelectedColorSpace = settings.LastJobColorSpace.Value.IsUserSpace() ? settings.LastJobColorSpace.Value : ColorSpaces.Catalog;
                }
                else
                {
                    var space = Settings.SupportedColorSpaces.FirstOrDefault();
                    vm.SelectedColorSpace = space.IsUserSpace() ? space : ColorSpaces.Catalog;
                }

                if (colorProfile != null || twnFile != null)
                {
                    vm.SupportedColorSpaces = new List<ColorSpaces>() { ColorSpaces.RGB };
                    vm.SelectedColorSpace = vm.SupportedColorSpaces.First();
                }

                if (twnFile != null)
                {
                    vm.SupportedJobTypes = new List<JobTypes>() { JobTypes.Embroidery };
                    vm.SelectedJobType = vm.SupportedJobTypes.First();
                }

                if (twnFile == null)
                {
                    if (Settings.SupportedJobTypes.Count != 1 || Settings.SupportedColorSpaces.Count != 1)
                    {
                        vm = await NotificationProvider.ShowDialog<JobCreationViewVM>(vm);
                        if (!vm.DialogResult) return;

                        if (vm.SelectedColorSpace == ColorSpaces.Catalog)
                        {
                            if (catalogVM.SelectedCatalog == null)
                            {
                                catalogVM.SelectedCatalog = _catalogs.FirstOrDefault();
                            }

                            if (_catalogs.Count == 0)
                            {
                                await NotificationProvider.ShowError("No color catalogs found. Please selected another color space.");
                                return;
                            }
                            else if (_catalogs.Count > 1)
                            {
                                catalogVM = await NotificationProvider.ShowDialog<CatalogSelectionViewVM>(catalogVM);

                                if (!catalogVM.DialogResult)
                                {
                                    return;
                                }
                            }
                        }
                    }
                    else
                    {
                        vm.SelectedJobType = Settings.SupportedJobTypes.First();
                        vm.SelectedColorSpace = Settings.SupportedColorSpaces.First();
                    }
                }

                settings.LastJobType = vm.SelectedJobType;
                settings.LastJobColorSpace = vm.SelectedColorSpace;

                if (vm.SelectedColorSpace == ColorSpaces.Catalog)
                {
                    settings.LastSelectedCatalogGuid = catalogVM.SelectedCatalog.Guid;
                }

                settings.Save();

                Job job = new Job();
                job.LastUpdated = DateTime.UtcNow;
                job.JobSource = JobSource.Local;
                job.Name = "untitled";
                job.NumberOfHeads = 1;
                job.NumberOfUnits = 1;
                job.SampleUnitsOrMeters = 1;
                job.CreationDate = DateTime.UtcNow;
                job.JobStatus = JobStatuses.Draft;
                job.JobType = vm.SelectedJobType;
                job.EnableLubrication = true;
                job.ColorSpaceGuid = Adapter.ColorSpaces.FirstOrDefault(x => x.Code == vm.SelectedColorSpace.ToInt32()).Guid;
                job.ColorSpace = _colorSpaces.SingleOrDefault(x => x.Guid == job.ColorSpaceGuid);
                job.MachineGuid = MachineProvider.Machine.Guid;
                job.UserGuid = null;
                job.RmlGuid = (Settings.DefaultRmlGuid != null && _rmls.Select(x => x.Guid).Contains(Settings.DefaultRmlGuid)) ? Settings.DefaultRmlGuid : _rmls.FirstOrDefault().Guid;
                job.WindingMethodGuid = Adapter.WindingMethods.FirstOrDefault().Guid;
                job.SpoolTypeGuid = Settings.DefaultSpoolTypeGuid != null ? Settings.DefaultSpoolTypeGuid : Adapter.SpoolTypes.FirstOrDefault().Guid;

                if (vm.SelectedColorSpace == ColorSpaces.Catalog)
                {
                    job.ColorCatalogGuid = catalogVM.SelectedCatalog.Guid;
                }

                if (Jobs.Count > 0)
                {
                    job.JobIndex = Jobs.Max(x => x.JobIndex) + 1;
                }

                if (colorProfile == null)
                {
                    job.AddSolidSegment(Settings.DefaultSegmentLength > 0 ? Settings.DefaultSegmentLength : 100);
                }
                else
                {
                    job.AddSolidSegment(colorProfile.Value, Settings.DefaultSegmentLength > 0 ? Settings.DefaultSegmentLength : 100);
                    job.Name = $"SnapMatch {colorProfile.Value.R}, {colorProfile.Value.G}, {colorProfile.Value.B}";
                }

                if (twnFile != null)
                {
                    job.Name = twnFile.Name;
                    job.NumberOfUnits = Math.Max(twnFile.NumberOfCopies, 1);
                    job.EmbroideryFileName = twnFile.Name + "." + twnFile.EmbroideryFileFormat;
                    job.EmbroideryFileData = twnFile.EmbroideryFile;
                    job.EmbroideryJpeg = twnFile.ThumbnailData;

                    job.Segments.Clear();

                    int index = 1;

                    foreach (var segment in twnFile.Segments)
                    {
                        Segment s = new Segment();
                        s.Job = job;
                        s.SegmentIndex = index++;
                        s.Name = "Embroidery Segment";
                        s.Length = segment.Length / 100d;

                        int sIndex = 1;

                        foreach (var stop in segment.BrushStops)
                        {
                            BrushStop st = new BrushStop();
                            st.Segment = s;
                            st.StopIndex = sIndex++;
                            st.OffsetPercent = stop.Offset * 100d;
                            st.Red = stop.R;
                            st.Green = stop.G;
                            st.Blue = stop.B;
                            st.ColorSpaceGuid = job.ColorSpaceGuid;
                            s.BrushStops.Add(st);
                        }

                        job.Segments.Add(s);
                    }
                }

                _db.Jobs.Add(job);

                await _db.SaveChangesAsync();

                Jobs.Add(job);

                LogManager.Log($"Job {job.Name} added successfully.");

                RaiseMessage(new JobSelectedMessage() { Job = job, Context = _db });

                await Task.Delay(200);
                await NavigationManager.NavigateWithObject<JobsModule, JobView, JobNavigationObject>(new JobNavigationObject()
                {
                    Job = job,
                    Intent = JobNavigationIntent.NewJob
                });
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error creating new job.");
                await NotificationProvider.ShowError("An error occurred while trying to add a new job.");
            }
        }

        /// <summary>
        /// Deletes the specified jobs from db.
        /// </summary>
        /// <param name="jobs">The jobs.</param>
        private async void DeleteJobs(ObservableCollection<Job> jobs)
        {
            try
            {
                LogManager.Log($"Removing selected jobs:\n{jobs.Select(x => x.Name).ToList().ToJsonString()}");

                if (await NotificationProvider.ShowQuestion("Are you sure you want to delete the selected jobs"))
                {
                    foreach (var job in jobs)
                    {
                        await job.DeleteCascadeAsync(_db);
                        Jobs.Remove(job);
                    }

                    await _db.SaveChangesAsync();
                    ClearSelection();
                }
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error removing selected jobs.");
                await NotificationProvider.ShowError("An error occurred while trying to remove the selected jobs.");
            }
        }

        /// <summary>
        /// Clones the specified jobs.
        /// </summary>
        /// <param name="jobs">The jobs.</param>
        private async void CloneJobs(ObservableCollection<Job> jobs)
        {
            try
            {
                LogManager.Log($"Cloning selected jobs:\n{jobs.Select(x => x.Name).ToList().ToJsonString()}");

                int index = Jobs.Max(x => x.JobIndex);

                List<Job> clonedJobs = new List<Job>();

                foreach (var job in SelectedJobs)
                {
                    var cloned = job.Clone();
                    cloned.JobIndex = ++index;
                    _db.Jobs.Add(cloned);
                    clonedJobs.Add(cloned);
                }

                await _db.SaveChangesAsync();

                foreach (var job in clonedJobs)
                {
                    Jobs.Add(job);
                }

                ClearSelection();
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Error cloning selected jobs.");
                await NotificationProvider.ShowError("An error occurred while trying to clone the selected jobs.");
            }
        }

        /// <summary>
        /// Called when the search filter has been changed
        /// </summary>
        private void OnFilterChanged()
        {
            if (DraftJobsCollectionView != null && HistoryJobsCollectionView != null)
            {
                CollectionFilter.RaiseFilterChanged();
                View.ScrollToTop();
            }
        }

        #endregion

        #region Message Handling

        /// <summary>
        /// Handles the job removed message.
        /// </summary>
        /// <param name="msg">The MSG.</param>
        private void HandleJobRemovedMessage(JobRemovedMessage msg)
        {
            try
            {
                LogManager.Log("JobRemovedMessage message received, removing job from list...");
                var job = Jobs.SingleOrDefault(x => x.Guid == msg.Job.Guid);
                Jobs.Remove(job);
                _db.Entry(job).State = System.Data.Entity.EntityState.Detached;
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, "Could not remove job");
            }
        }

        /// <summary>
        /// Handles the job saved message.
        /// </summary>
        /// <param name="msg">The MSG.</param>
        private void HandleJobSavedMessage(JobSavedMessage msg)
        {
            LogManager.Log("JobSavedMessage message received.");
            LoadJobs();
        }

        #endregion

        #region Override Methods

        /// <summary>
        /// Called when the application has been started.
        /// </summary>
        public override void OnApplicationStarted()
        {
            LoadJobs();

            ExternalBridgeService.ColorProfileRequest += ExternalBridgeService_ColorProfileRequest;
        }

        public async override void OnApplicationReady()
        {
            base.OnApplicationReady();
            StorageProvider.RegisterFileHandler(ExplorerFileDefinition.Job.Extension, HandleJobFileLoaded);
            StorageProvider.RegisterFileHandler(ExplorerFileDefinition.ColorProfile.Extension, HandleColorProfileFileLoaded);
            StorageProvider.RegisterFileHandler(ExplorerFileDefinition.Pulse.Extension, HandlePulseFileLoaded);

            //Load catalogs.
            using (ObservablesContext db = ObservablesContext.CreateDefault())
            {
                _catalogs = await new CatalogsCollectionBuilder(db).SetAll().ForSite(MachineProvider.Machine.SiteGuid).BuildAsync();
                _rmls = await new RmlsCollectionBuilder(db).SetAll().ForHeadType(MachineProvider.Machine.MachineHeadType).ForSite(MachineProvider.Machine.SiteGuid).BuildAsync();
            }

            MachineDataSynchronizer.SynchronizationEnded += MachineDataSynchronizer_SynchronizationEnded;
        }

        public override void OnNavigatedTo()
        {
            base.OnNavigatedTo();
            Filter = null;
        }

        #endregion

        #region Job Export

        private async void ExportJob()
        {
            var selected_job = SelectedJobs.FirstOrDefault();
            if (selected_job == null) return;

            var selectedJobs = SelectedJobs.ToList();

            ClearSelection();

            var result = await NavigationManager.
                NavigateForResult<StorageModule,
                Storage.Views.MainView, ExplorerFileItem,
                StorageNavigationRequest>(
                new StorageNavigationRequest()
                {
                    Intent = selectedJobs.Count == 1 ? StorageNavigationIntent.SaveFile : StorageNavigationIntent.SaveFiles,
                    DefaultFileName = selected_job.Name,
                    Filter = ExplorerFileDefinition.Job.Extension,
                    Title = selectedJobs.Count == 1 ? "Save Job File" : "Save Job Files",
                });

            if (result != null)
            {
                if (selectedJobs.Count == 1)
                {
                    try
                    {
                        var jobFile = await selected_job.ToJobFile();

                        using (FileStream fs = new FileStream(result.Path + ExplorerFileDefinition.Job.Extension, FileMode.Create))
                        {
                            jobFile.WriteTo(fs);
                        }

                        await NotificationProvider.ShowSuccess("Job saved successfully.");
                    }
                    catch (Exception ex)
                    {
                        LogManager.Log(ex, $"Error saving job {selected_job.Name} to file.");
                        await NotificationProvider.ShowError($"An error occurred while trying to save the job.\n{ex.Message}");
                    }
                }
                else
                {
                    foreach (var job in selectedJobs)
                    {
                        try
                        {
                            var jobFile = await job.ToJobFile();

                            using (FileStream fs = new FileStream(Path.Combine(result.Path, jobFile.Name.ToValidFileName()) + ExplorerFileDefinition.Job.Extension, FileMode.Create))
                            {
                                jobFile.WriteTo(fs);
                            }
                        }
                        catch (Exception ex)
                        {
                            LogManager.Log(ex, $"Error saving job {job.Name} to file.");
                            await NotificationProvider.ShowError($"An error occurred while trying to save the job.\n{ex.Message}");
                        }
                    }

                    await NotificationProvider.ShowSuccess("Jobs saved successfully.");
                }
            }
        }

        #endregion

        #region Handle Job File Loading From Storage

        private async void HandleJobFileLoaded(List<ExplorerFileItem> jobFiles)
        {
            var vm = await NotificationProvider.ShowDialog<ImportJobViewVM>();

            if (vm.DialogResult)
            {
                using (ObservablesContext jobContext = ObservablesContext.CreateDefault())
                {
                    foreach (var jobFile in jobFiles)
                    {
                        try
                        {
                            JobFile jFile = JobFile.Parser.ParseFrom(File.ReadAllBytes(jobFile.Path));
                            var job = await Job.FromJobFile(jFile, MachineProvider.Machine.Guid, null);
                            job.JobSource = JobSource.Local;
                            jobContext.Jobs.Add(job);
                            await jobContext.SaveChangesAsync();
                        }
                        catch (Exception ex)
                        {
                            LogManager.Log(ex, $"Error occurred while trying to import job from file {jobFile.Path}.");
                            await NotificationProvider.ShowError($"An error occurred while trying to import the selected job file.\n{ex.Message}");
                        }
                    }

                    LoadJobs(() =>
                    {
                        //Editing of a job is currently deprecated due to enabling multiple job imports.
                        //if (vm.ImportAndEdit)
                        //{
                        //    var postJob = Jobs.SingleOrDefault(x => x.Guid == job.Guid);
                        //    if (postJob != null)
                        //    {
                        //        SelectJob(postJob, true);
                        //    }
                        //}
                    });
                }
            }
        }

        #endregion

        #region Handle TCC File Loading From Storage

        private async void HandleColorProfileFileLoaded(List<ExplorerFileItem> tccFiles)
        {
            var tccFile = tccFiles.FirstOrDefault();

            try
            {
                DetectionColorFile tcc = DetectionColorFile.Parser.ParseFrom(File.ReadAllBytes(tccFile.Path));

                var vm = await NotificationProvider.ShowDialog<ImportColorProfileViewVM>(new ImportColorProfileViewVM()
                {
                    Color = Color.FromRgb(
                       (byte)tcc.ProcessedColor.R,
                       (byte)tcc.ProcessedColor.G,
                       (byte)tcc.ProcessedColor.B),
                });

                if (vm.DialogResult)
                {
                    AddNewJob(vm.Color);
                }
            }
            catch (Exception ex)
            {
                LogManager.Log(ex, $"Error occurred while trying to import detection color from file {tccFile.Path}.");
                await NotificationProvider.ShowError($"An error occurred while trying to import the selected detection color.\n{ex.Message}");
            }
        }

        #endregion

        #region Handle Pulse TWN Loading From Storage

        private async void HandlePulseFileLoaded(List<ExplorerFileItem> twnFiles)
        {
            var twnFile = twnFiles.FirstOrDefault();

            TwnFile twn = TwnFile.FromFile(twnFile.Path);
            BitmapSource preview = twn.Thumbnail.ToBitmapSource();

            var vm = await NotificationProvider.ShowDialog<ImportTwnFileViewVM>(new ImportTwnFileViewVM()
            {
                Thumbnail = preview,
            });

            if (vm.DialogResult)
            {
                AddNewJob(null, twn);
            }
        }

        #endregion

        #region Handle New Synchronized Jobs

        private void MachineDataSynchronizer_SynchronizationEnded(object sender, SynchronizationEndedEventArgs e)
        {
            if (e.NewChangedJobs > 0 && !_isJobsSynchronizationNotificationActive)
            {
                _isJobsSynchronizationNotificationActive = true;

                var item = NotificationProvider.PushNotification<NewSynchronizardJobsNotificationItem>();
                item.Pressed += (_, __) =>
                {
                    _isJobsSynchronizationNotificationActive = false;
                    LoadJobs(() =>
                    {
                        NotificationProvider.ShowSuccess("Your job list is now synchronized.");
                    });
                };
                item.Closed += (_, __) =>
                {
                    _isJobsSynchronizationNotificationActive = false;
                };
            }
        }

        #endregion

        #region Color Profile Request

        private void ExternalBridgeService_ColorProfileRequest(object sender, ColorProfileRequestEventArgs e)
        {
            InvokeUI(async () =>
            {
                var vm = await NotificationProvider.ShowDialog<ColorProfileReceivedViewVM>(new ColorProfileReceivedViewVM()
                {
                    Color = Color.FromRgb(
                        (byte)e.Request.DetectionColor.R,
                        (byte)e.Request.DetectionColor.G,
                        (byte)e.Request.DetectionColor.B),
                });

                if (vm.DialogResult)
                {
                    e.Approve();
                    AddNewJob(vm.Color);
                }
                else
                {
                    e.Decline();
                }
            });
        }

        #endregion
    }
}
"DeployProject"
{
"VSVersion" = "3:800"
"ProjectType" = "8:{978C614F-708E-4E1A-B201-565925725DBA}"
"IsWebType" = "8:FALSE"
"ProjectName" = "8:Tango.MachineStudio.Installer"
"LanguageId" = "3:1033"
"CodePage" = "3:1252"
"UILanguageId" = "3:1033"
"SccProjectName" = "8:"
"SccLocalPath" = "8:"
"SccAuxPath" = "8:"
"SccProvider" = "8:"
    "Hierarchy"
    {
        "Entry"
        {
        "MsmKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_0D36BD88AEF84A1CA7AC32F4687643FD"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_136196DD2763419D959721C2BA143498"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1A129D6A1E634A3DB277DB808AD93937"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_201B65B789181625CAF1E7D925466231"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A40EF7E64C497F9B198032A2FEBB44"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "OwnerKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "OwnerKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_42250239B4791E8133657256CCE3506C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "OwnerKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_51C8D3D8E4884DA98E228B9951C61AB9"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "OwnerKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "OwnerKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "OwnerKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_705F2A9700A0B6F6A5308537C5F876EA"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7E765F76FDFC3DCF4EAEB59B5546B063"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_847DE93907D7F6B17C0694F74120086B"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8939008A4B57155156AE83AACC008030"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_98D5175644A3BC174BCA498A1B20FF84"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_9C822EC8B208111C8872DC2C929B4F49"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A17D8A4EDE1F489FABA27DB45F1A3F56"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_AF60BC3CADE840C0A98761F06ED14462"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0A07289218E6EFD42CF3518073813D6"
        "OwnerKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_BDA3D2EF39D844F98A5AB8AE3050B618"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_E8AD73581F264D1291D1B14F4B6BEB8D"
        "OwnerKey" = "8:_UNDEFINED"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_EF2898B0C9AAB2E33674325B9F86943B"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F305156F14D60E8E938949378275132D"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F305156F14D60E8E938949378275132D"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_136196DD2763419D959721C2BA143498"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3737DF68C5D4F9EEA98383147C09217D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_401029CD43B9D1C7D6B8A91580C72246"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_BD559C5264D2EB8DB2F96C7F161ECCFE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_437F8E654D5A08B1CA3EA7BCC8B911F9"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8533A0FC046C1B311644EB6565AADCF4"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_509008BF7DDF652EFD30748DF7B623AC"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_949EF578C14CE0D93133060EF66C018F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0DC463AFB084472BA1EA9F43F930940"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7E089FB0FAFDC91358668C33586665F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5147DA93AA30302C252F810D0809D8FB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_FF9B3021994C6FE507A9C7BE198B6C03"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_ACA4B81C7B67E4C6FD57C20AD15BF952"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_38750CCB0CB6E026D5D88F129FB1013A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7A925C02110B1D4B95987D2EEEFE6FDE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9A234F7FB4239AC3DB0DBE9415BDE695"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_21E475E8F9DBB207476AD595250634BF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_516016F1B93156015497DAD5F7FBE9A1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8F71C11DA0BAD2C98087755DC7A25AD3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_1EC9EA112C92712F7DD0290C02F8F1EB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_30FDB43A5EE9C1E3839D05F6363080D6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6362DA873243657F5F1FD41C1A4E104A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_DF9470C286C095EB5289BC0A57E7AA2C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0F63EB1426CCC22506AFCB6C5809138"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B363FB7BD2F44E6C8573500668C2C9D1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_A9A74798DD330F41ADBD32DBB9480F5C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4936236609673FB3A97D4EA723B1A767"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5F07DDA90732658EC4A03117CF7DD774"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C28A9B0313A578C409D1E57773FB001E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C79F4B145CE2D951C3E342053EC26159"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7A69315CD79099E601F096562C7406DF"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_76136B423153FD040335B97D71CF6A3E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7EBA1AC1C70BAC60E9165BB0A3640C98"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_8939008A4B57155156AE83AACC008030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9A98137A42052685F51607892D00B8A0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_95EBE8B225CEEAD24E06F44863ABAECB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_ECDF8B3BECC1C92F35C36C2743D8E99E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_90D408142B1F2A9F72CBF42FC38348F0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_0BF8133A6082FDD658EA3570802D86DE"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_D09F278664B0560653FAC1AD0BCAE93F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_7E765F76FDFC3DCF4EAEB59B5546B063"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_705F2A9700A0B6F6A5308537C5F876EA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_847DE93907D7F6B17C0694F74120086B"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_EF2898B0C9AAB2E33674325B9F86943B"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_709D007D7E89A10E63C141E3A08311FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_98D5175644A3BC174BCA498A1B20FF84"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5267D1EC981D54EC20D1B42EDAB938D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_EB38C1BD04FDFE44579B9868D6D1E139"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_73674B32069839371DC47411D1B7EBE0"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_712AAF71834640D10C755D415AF2200C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_92EADCA3313D55CFE2BB3BBA193941F3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_64AD2A918B16AA625B839A6A2D4288AB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_51C4508525FA0604A9CD727897EBD530"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_201B65B789181625CAF1E7D925466231"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_A1336C0121F3132E09400329ACD12B30"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_42250239B4791E8133657256CCE3506C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_278DD289AF864670465FD69C8F4AE34C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_5DE2670D31EDA648BE6C6C10EE6A7070"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_F305156F14D60E8E938949378275132D"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_25A69F578BC42C7EE9BB9C1BD877DD10"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_389550CBF274A9C03B63659D21772F45"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_33D4D8E76EB7C1A6468238130D2E3654"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_F61DAEDB61465C1B8774BCFF055FC0D6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B6192155FD5A80C188C3107E288647D2"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_208047DD6040D85F92E6EBFB7F835D34"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_49D03E8027415EFB55F2F112C89B1086"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_76DEC1C2FE9E34662C503D210A4A9CF8"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4405913BCD2117F8DAD12B378C43A2B7"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_514D3CCB0377421C1BF262423F4131FD"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3AFE4D5E08BDDB7F1E0861B8597F726C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C4803CDE1B97C098FCBCE21F65BA294C"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_4763FF4F115513BD9CC09C25F66E2030"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_C52D0EE685F66C9256814DC4FF3D55F6"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_94C93E924640B1B46934D6515E08ED7A"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_3D89BC73039EFE2FED26FEAEB52FE807"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_6629867CBE528EE93399FDA343E51BAB"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_9C822EC8B208111C8872DC2C929B4F49"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_88E760F600D2E195D8119F6014AB651E"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_36D30082439E3E9B7F5AAF6701F0C22F"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_2797CFFB7DAA734F75BFE8FB845163D3"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_1CB515C82F6904C632717D23A858B116"
        "MsmSig" = "8:_UNDEFINED"
        }
        "Entry"
        {
        "MsmKey" = "8:_UNDEFINED"
        "OwnerKey" = "8:_B0A07289218E6EFD42CF3518073813D6"
        "MsmSig" = "8:_UNDEFINED"
        }
    }
    "Configurations"
    {
        "Debug"
        {
        "DisplayName" = "8:Debug"
        "IsDebugOnly" = "11:TRUE"
        "IsReleaseOnly" = "11:FALSE"
        "OutputFilename" = "8:..\\..\\Build\\Installers\\Machine Studio\\Debug\\Machine Studio Installer v3.0.msi"
        "PackageFilesAs" = "3:2"
        "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.6.1"
                    {
                    "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
                    "ProductCode" = "8:.NETFramework,Version=v4.6.1"
                    }
                }
            }
        }
        "Release"
        {
        "DisplayName" = "8:Release"
        "IsDebugOnly" = "11:FALSE"
        "IsReleaseOnly" = "11:TRUE"
        "OutputFilename" = "8:..\\..\\Build\\Installers\\Machine Studio\\Release\\Machine Studio Installer v3.3.38.msi"
        "PackageFilesAs" = "3:2"
        "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.6.1"
                    {
                    "Name" = "8:Microsoft .NET Framework 4.6.1 (x86 and x64)"
                    "ProductCode" = "8:.NETFramework,Version=v4.6.1"
                    }
                }
            }
        }
    }
    "Deployable"
    {
        "CustomAction"
        {
        }
        "DefaultFeature"
        {
        "Name" = "8:DefaultFeature"
        "Title" = "8:"
        "Description" = "8:"
        }
        "ExternalPersistence"
        {
            "LaunchCondition"
            {
                "{A06ECF26-33A3-4562-8140-9B0E340D4F24}:_57416B062DDF4C7D949EE93B8783A324"
                {
                "Name" = "8:.NET Framework"
                "Message" = "8:[VSDNETMSG]"
                "FrameworkVersion" = "8:.NETFramework,Version=v4.6.1"
                "AllowLaterVersions" = "11:FALSE"
                "InstallUrl" = "8:http://go.microsoft.com/fwlink/?LinkId=671728"
                }
            }
        }
        "File"
        {
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_0BF8133A6082FDD658EA3570802D86DE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite.Linq, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_0BF8133A6082FDD658EA3570802D86DE"
                    {
                    "Name" = "8:System.Data.SQLite.Linq.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.Linq.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_0D36BD88AEF84A1CA7AC32F4687643FD"
            {
            "SourcePath" = "8:..\\..\\Build\\Core\\Debug\\x86\\SQLite.Interop.dll"
            "TargetName" = "8:SQLite.Interop.dll"
            "Tag" = "8:"
            "Folder" = "8:_137C662BA6B24073AC58ED6C67DA7951"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_1A129D6A1E634A3DB277DB808AD93937"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\ucrtbased.dll"
            "TargetName" = "8:ucrtbased.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_1CB515C82F6904C632717D23A858B116"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.IO.Compression.FileSystem, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
                "ScatterAssemblies"
                {
                    "_1CB515C82F6904C632717D23A858B116"
                    {
                    "Name" = "8:System.IO.Compression.FileSystem.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IO.Compression.FileSystem.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_1EC9EA112C92712F7DD0290C02F8F1EB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Editors, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_1EC9EA112C92712F7DD0290C02F8F1EB"
                    {
                    "Name" = "8:Tango.Editors.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Editors.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_201B65B789181625CAF1E7D925466231"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_201B65B789181625CAF1E7D925466231"
                    {
                    "Name" = "8:System.Data.SQLite.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_208047DD6040D85F92E6EBFB7F835D34"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.IdentityModel.Tokens.Jwt, Version=4.0.20622.1351, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_208047DD6040D85F92E6EBFB7F835D34"
                    {
                    "Name" = "8:System.IdentityModel.Tokens.Jwt.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IdentityModel.Tokens.Jwt.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_21E475E8F9DBB207476AD595250634BF"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:RealTimeGraphEx, Version=1.0.21.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_21E475E8F9DBB207476AD595250634BF"
                    {
                    "Name" = "8:RealTimeGraphEx.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:RealTimeGraphEx.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_25A40EF7E64C497F9B198032A2FEBB44"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\Microsoft.WITDataStore32.dll"
            "TargetName" = "8:Microsoft.WITDataStore32.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_25A69F578BC42C7EE9BB9C1BD877DD10"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_25A69F578BC42C7EE9BB9C1BD877DD10"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Proxy.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_278DD289AF864670465FD69C8F4AE34C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:RazorEngine, Version=3.10.0.0, Culture=neutral, PublicKeyToken=9ee697374c7e744a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_278DD289AF864670465FD69C8F4AE34C"
                    {
                    "Name" = "8:RazorEngine.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:RazorEngine.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_2797CFFB7DAA734F75BFE8FB845163D3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_2797CFFB7DAA734F75BFE8FB845163D3"
                    {
                    "Name" = "8:System.Net.Http.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_30FDB43A5EE9C1E3839D05F6363080D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.CSV, Version=2.0.17.1657, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_30FDB43A5EE9C1E3839D05F6363080D6"
                    {
                    "Name" = "8:Tango.CSV.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.CSV.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_33D4D8E76EB7C1A6468238130D2E3654"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_33D4D8E76EB7C1A6468238130D2E3654"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.QueryLanguage.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_36D30082439E3E9B7F5AAF6701F0C22F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:TRUE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_36D30082439E3E9B7F5AAF6701F0C22F"
                    {
                    "Name" = "8:System.Net.Http.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_3737DF68C5D4F9EEA98383147C09217D"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.UsersAndRoles, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3737DF68C5D4F9EEA98383147C09217D"
                    {
                    "Name" = "8:Tango.MachineStudio.UsersAndRoles.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.UsersAndRoles.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_38750CCB0CB6E026D5D88F129FB1013A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.ColorLab, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_38750CCB0CB6E026D5D88F129FB1013A"
                    {
                    "Name" = "8:Tango.MachineStudio.ColorLab.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.ColorLab.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_389550CBF274A9C03B63659D21772F45"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_389550CBF274A9C03B63659D21772F45"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_3AFE4D5E08BDDB7F1E0861B8597F726C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3AFE4D5E08BDDB7F1E0861B8597F726C"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_3D89BC73039EFE2FED26FEAEB52FE807"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform, Version=3.19.8.16603, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3D89BC73039EFE2FED26FEAEB52FE807"
                    {
                    "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.Platform.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_3F7344F8CC9AE27561D9EFBBB0E3FADA"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_3F7344F8CC9AE27561D9EFBBB0E3FADA"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_401029CD43B9D1C7D6B8A91580C72246"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Technician, Version=2.0.15.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_401029CD43B9D1C7D6B8A91580C72246"
                    {
                    "Name" = "8:Tango.MachineStudio.Technician.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Technician.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_42250239B4791E8133657256CCE3506C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Google.Protobuf, Version=3.4.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_42250239B4791E8133657256CCE3506C"
                    {
                    "Name" = "8:Google.Protobuf.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Google.Protobuf.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_437F8E654D5A08B1CA3EA7BCC8B911F9"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Visuals, Version=2.0.9.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_437F8E654D5A08B1CA3EA7BCC8B911F9"
                    {
                    "Name" = "8:Tango.Visuals.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Visuals.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_4405913BCD2117F8DAD12B378C43A2B7"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Diff, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4405913BCD2117F8DAD12B378C43A2B7"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Diff.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Diff.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_4763FF4F115513BD9CC09C25F66E2030"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Common, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4763FF4F115513BD9CC09C25F66E2030"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_4936236609673FB3A97D4EA723B1A767"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Serialization, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4936236609673FB3A97D4EA723B1A767"
                    {
                    "Name" = "8:Tango.Serialization.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Serialization.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_49D03E8027415EFB55F2F112C89B1086"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Work.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_49D03E8027415EFB55F2F112C89B1086"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Work.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Work.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_4A5E77F2FEA9C4080C8FD63B968FBE6C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MahApps.Metro, Version=1.5.0.23, Culture=neutral, PublicKeyToken=f4fb5a3c4d1e5b4f, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_4A5E77F2FEA9C4080C8FD63B968FBE6C"
                    {
                    "Name" = "8:MahApps.Metro.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MahApps.Metro.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_509008BF7DDF652EFD30748DF7B623AC"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Stubs, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_509008BF7DDF652EFD30748DF7B623AC"
                    {
                    "Name" = "8:Tango.Stubs.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Stubs.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_5147DA93AA30302C252F810D0809D8FB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.DB, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5147DA93AA30302C252F810D0809D8FB"
                    {
                    "Name" = "8:Tango.MachineStudio.DB.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.DB.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_514D3CCB0377421C1BF262423F4131FD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Core.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_514D3CCB0377421C1BF262423F4131FD"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Core.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Core.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_516016F1B93156015497DAD5F7FBE9A1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Video, Version=2.0.20.1737, Culture=neutral, processorArchitecture=x86"
                "ScatterAssemblies"
                {
                    "_516016F1B93156015497DAD5F7FBE9A1"
                    {
                    "Name" = "8:Tango.Video.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Video.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_51C4508525FA0604A9CD727897EBD530"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_51C4508525FA0604A9CD727897EBD530"
                    {
                    "Name" = "8:EntityFramework.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:EntityFramework.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_51C8D3D8E4884DA98E228B9951C61AB9"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\vcruntime140d.dll"
            "TargetName" = "8:vcruntime140d.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_5267D1EC981D54EC20D1B42EDAB938D2"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5267D1EC981D54EC20D1B42EDAB938D2"
                    {
                    "Name" = "8:System.Windows.Interactivity.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Windows.Interactivity.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_5DE2670D31EDA648BE6C6C10EE6A7070"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Web.Razor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5DE2670D31EDA648BE6C6C10EE6A7070"
                    {
                    "Name" = "8:System.Web.Razor.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Web.Razor.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_5F07DDA90732658EC4A03117CF7DD774"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.DragAndDrop, Version=2.0.26.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_5F07DDA90732658EC4A03117CF7DD774"
                    {
                    "Name" = "8:Tango.DragAndDrop.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.DragAndDrop.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_6362DA873243657F5F1FD41C1A4E104A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.ColorPicker, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6362DA873243657F5F1FD41C1A4E104A"
                    {
                    "Name" = "8:Tango.ColorPicker.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.ColorPicker.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_64AD2A918B16AA625B839A6A2D4288AB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Interfaces, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_64AD2A918B16AA625B839A6A2D4288AB"
                    {
                    "Name" = "8:System.Reactive.Interfaces.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Interfaces.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_6629867CBE528EE93399FDA343E51BAB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory, Version=3.19.8.16603, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6629867CBE528EE93399FDA343E51BAB"
                    {
                    "Name" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.IdentityModel.Clients.ActiveDirectory.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.Client, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_6D19B57C0E25EF0C3E07EE04AF1FBDB1"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.Client.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.Client.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_705F2A9700A0B6F6A5308537C5F876EA"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Ionic.Zip, Version=1.9.1.8, Culture=neutral, PublicKeyToken=edbe51ad942a3f5c, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_705F2A9700A0B6F6A5308537C5F876EA"
                    {
                    "Name" = "8:Ionic.Zip.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Ionic.Zip.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_709D007D7E89A10E63C141E3A08311FD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_709D007D7E89A10E63C141E3A08311FD"
                    {
                    "Name" = "8:EntityFramework.SqlServer.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:EntityFramework.SqlServer.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_712AAF71834640D10C755D415AF2200C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Linq, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_712AAF71834640D10C755D415AF2200C"
                    {
                    "Name" = "8:System.Reactive.Linq.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Linq.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_73674B32069839371DC47411D1B7EBE0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.PlatformServices, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_73674B32069839371DC47411D1B7EBE0"
                    {
                    "Name" = "8:System.Reactive.PlatformServices.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.PlatformServices.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_76136B423153FD040335B97D71CF6A3E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.PMR, Version=2.0.37.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_76136B423153FD040335B97D71CF6A3E"
                    {
                    "Name" = "8:Tango.PMR.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.PMR.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_76DEC1C2FE9E34662C503D210A4A9CF8"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_76DEC1C2FE9E34662C503D210A4A9CF8"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.WebApi.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_7A69315CD79099E601F096562C7406DF"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.BL, Version=2.0.33.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7A69315CD79099E601F096562C7406DF"
                    {
                    "Name" = "8:Tango.BL.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.BL.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_7A925C02110B1D4B95987D2EEEFE6FDE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Common, Version=2.0.27.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7A925C02110B1D4B95987D2EEEFE6FDE"
                    {
                    "Name" = "8:Tango.MachineStudio.Common.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Common.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_7E089FB0FAFDC91358668C33586665F3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Developer, Version=2.0.18.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7E089FB0FAFDC91358668C33586665F3"
                    {
                    "Name" = "8:Tango.MachineStudio.Developer.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Developer.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_7E765F76FDFC3DCF4EAEB59B5546B063"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MaterialDesignColors, Version=1.1.2.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7E765F76FDFC3DCF4EAEB59B5546B063"
                    {
                    "Name" = "8:MaterialDesignColors.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MaterialDesignColors.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_7EBA1AC1C70BAC60E9165BB0A3640C98"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Core, Version=2.0.30.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_7EBA1AC1C70BAC60E9165BB0A3640C98"
                    {
                    "Name" = "8:Tango.Core.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Core.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_847DE93907D7F6B17C0694F74120086B"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:FontAwesome.WPF, Version=4.7.0.37774, Culture=neutral, PublicKeyToken=0758b07a11a4f466, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_847DE93907D7F6B17C0694F74120086B"
                    {
                    "Name" = "8:FontAwesome.WPF.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:FontAwesome.WPF.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_8533A0FC046C1B311644EB6565AADCF4"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Stubs, Version=2.0.10.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8533A0FC046C1B311644EB6565AADCF4"
                    {
                    "Name" = "8:Tango.MachineStudio.Stubs.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Stubs.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_88E760F600D2E195D8119F6014AB651E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http.WebRequest, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_88E760F600D2E195D8119F6014AB651E"
                    {
                    "Name" = "8:System.Net.Http.WebRequest.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.WebRequest.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_8939008A4B57155156AE83AACC008030"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Settings, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8939008A4B57155156AE83AACC008030"
                    {
                    "Name" = "8:Tango.Settings.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Settings.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_8F71C11DA0BAD2C98087755DC7A25AD3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.EmbroideryUI, Version=1.0.8.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_8F71C11DA0BAD2C98087755DC7A25AD3"
                    {
                    "Name" = "8:Tango.EmbroideryUI.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.EmbroideryUI.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_90D408142B1F2A9F72CBF42FC38348F0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Windows.Threading, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_90D408142B1F2A9F72CBF42FC38348F0"
                    {
                    "Name" = "8:System.Reactive.Windows.Threading.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Windows.Threading.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_92EADCA3313D55CFE2BB3BBA193941F3"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Reactive.Core, Version=3.0.3000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_92EADCA3313D55CFE2BB3BBA193941F3"
                    {
                    "Name" = "8:System.Reactive.Core.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Reactive.Core.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_949EF578C14CE0D93133060EF66C018F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.MachineDesigner, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_949EF578C14CE0D93133060EF66C018F"
                    {
                    "Name" = "8:Tango.MachineStudio.MachineDesigner.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.MachineDesigner.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_94C93E924640B1B46934D6515E08ED7A"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.ServiceBus, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_94C93E924640B1B46934D6515E08ED7A"
                    {
                    "Name" = "8:Microsoft.ServiceBus.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.ServiceBus.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_95EBE8B225CEEAD24E06F44863ABAECB"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:ICSharpCode.AvalonEdit, Version=1.0.18.1933, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_95EBE8B225CEEAD24E06F44863ABAECB"
                    {
                    "Name" = "8:ICSharpCode.AvalonEdit.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:ICSharpCode.AvalonEdit.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_98D5175644A3BC174BCA498A1B20FF84"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Dragablz, Version=0.0.3.197, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_98D5175644A3BC174BCA498A1B20FF84"
                    {
                    "Name" = "8:Dragablz.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Dragablz.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Scripting, Version=2.0.27.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_99DFCB38D3C7E1A7AC6AE6E2397D5EAE"
                    {
                    "Name" = "8:Tango.Scripting.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Scripting.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_9A234F7FB4239AC3DB0DBE9415BDE695"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.AutoComplete, Version=1.0.21.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_9A234F7FB4239AC3DB0DBE9415BDE695"
                    {
                    "Name" = "8:Tango.AutoComplete.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.AutoComplete.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_9A98137A42052685F51607892D00B8A0"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Logging, Version=2.0.34.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_9A98137A42052685F51607892D00B8A0"
                    {
                    "Name" = "8:Tango.Logging.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Logging.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_9C822EC8B208111C8872DC2C929B4F49"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Windows, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
                "ScatterAssemblies"
                {
                    "_9C822EC8B208111C8872DC2C929B4F49"
                    {
                    "Name" = "8:System.Windows.dll"
                    "Attributes" = "3:0"
                    }
                }
            "SourcePath" = "8:System.Windows.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:TRUE"
            "IsDependency" = "11:TRUE"
            "IsolateTo" = "8:"
            }
            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_A1336C0121F3132E09400329ACD12B30"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:SimpleValidator, Version=0.6.1.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_A1336C0121F3132E09400329ACD12B30"
                    {
                    "Name" = "8:SimpleValidator.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:SimpleValidator.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_A17D8A4EDE1F489FABA27DB45F1A3F56"
            {
            "SourcePath" = "8:..\\..\\Build\\Core\\Debug\\x64\\SQLite.Interop.dll"
            "TargetName" = "8:SQLite.Interop.dll"
            "Tag" = "8:"
            "Folder" = "8:_37D35F637FDD433095D8A36CAA7424C8"
            "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}:_A9A74798DD330F41ADBD32DBB9480F5C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Transport, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_A9A74798DD330F41ADBD32DBB9480F5C"
                    {
                    "Name" = "8:Tango.Transport.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Transport.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_ACA4B81C7B67E4C6FD57C20AD15BF952"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.Logging, Version=2.0.18.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_ACA4B81C7B67E4C6FD57C20AD15BF952"
                    {
                    "Name" = "8:Tango.MachineStudio.Logging.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.Logging.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_AF60BC3CADE840C0A98761F06ED14462"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\msvcp140d.dll"
            "TargetName" = "8:msvcp140d.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_B0A07289218E6EFD42CF3518073813D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:TRUE"
            "AssemblyAsmDisplayName" = "8:System.IO.Compression, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0A07289218E6EFD42CF3518073813D6"
                    {
                    "Name" = "8:System.IO.Compression.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.IO.Compression.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_B0DC463AFB084472BA1EA9F43F930940"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.HardwareDesigner, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0DC463AFB084472BA1EA9F43F930940"
                    {
                    "Name" = "8:Tango.MachineStudio.HardwareDesigner.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.HardwareDesigner.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_B0F63EB1426CCC22506AFCB6C5809138"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.SharedUI, Version=2.0.28.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B0F63EB1426CCC22506AFCB6C5809138"
                    {
                    "Name" = "8:Tango.SharedUI.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.SharedUI.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_B363FB7BD2F44E6C8573500668C2C9D1"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.Integration, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B363FB7BD2F44E6C8573500668C2C9D1"
                    {
                    "Name" = "8:Tango.Integration.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.Integration.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_B6192155FD5A80C188C3107E288647D2"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.VisualStudio.Services.Client.Interactive, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_B6192155FD5A80C188C3107E288647D2"
                    {
                    "Name" = "8:Microsoft.VisualStudio.Services.Client.Interactive.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.VisualStudio.Services.Client.Interactive.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_BD559C5264D2EB8DB2F96C7F161ECCFE"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:WpfAnimatedGif, Version=1.4.14.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_BD559C5264D2EB8DB2F96C7F161ECCFE"
                    {
                    "Name" = "8:WpfAnimatedGif.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:WpfAnimatedGif.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_BDA3D2EF39D844F98A5AB8AE3050B618"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\vcruntime140.dll"
            "TargetName" = "8:vcruntime140.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_C28A9B0313A578C409D1E57773FB001E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.DAL.Remote, Version=2.0.29.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C28A9B0313A578C409D1E57773FB001E"
                    {
                    "Name" = "8:Tango.DAL.Remote.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.DAL.Remote.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_C4803CDE1B97C098FCBCE21F65BA294C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Net.Http.Formatting, Version=5.2.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C4803CDE1B97C098FCBCE21F65BA294C"
                    {
                    "Name" = "8:System.Net.Http.Formatting.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Net.Http.Formatting.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_C52D0EE685F66C9256814DC4FF3D55F6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C52D0EE685F66C9256814DC4FF3D55F6"
                    {
                    "Name" = "8:Newtonsoft.Json.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Newtonsoft.Json.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_C79F4B145CE2D951C3E342053EC26159"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.CodeGeneration, Version=2.0.17.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_C79F4B145CE2D951C3E342053EC26159"
                    {
                    "Name" = "8:Tango.CodeGeneration.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.CodeGeneration.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_D09F278664B0560653FAC1AD0BCAE93F"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:System.Data.SQLite.EF6, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_D09F278664B0560653FAC1AD0BCAE93F"
                    {
                    "Name" = "8:System.Data.SQLite.EF6.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:System.Data.SQLite.EF6.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_DF9470C286C095EB5289BC0A57E7AA2C"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.TFS, Version=2.0.20.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_DF9470C286C095EB5289BC0A57E7AA2C"
                    {
                    "Name" = "8:Tango.TFS.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.TFS.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
            "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_E8AD73581F264D1291D1B14F4B6BEB8D"
            {
            "SourcePath" = "8:..\\..\\Referenced Assemblies\\mscoree.dll"
            "TargetName" = "8:mscoree.dll"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_EB38C1BD04FDFE44579B9868D6D1E139"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:MaterialDesignThemes.Wpf, Version=2.3.1.953, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_EB38C1BD04FDFE44579B9868D6D1E139"
                    {
                    "Name" = "8:MaterialDesignThemes.Wpf.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:MaterialDesignThemes.Wpf.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_ECDF8B3BECC1C92F35C36C2743D8E99E"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:ColorMine, Version=1.2.0.0, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_ECDF8B3BECC1C92F35C36C2743D8E99E"
                    {
                    "Name" = "8:ColorMine.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:ColorMine.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_EF2898B0C9AAB2E33674325B9F86943B"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:FluentFTP, Version=19.1.2.0, Culture=neutral, PublicKeyToken=f4af092b1d8df44f, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_EF2898B0C9AAB2E33674325B9F86943B"
                    {
                    "Name" = "8:FluentFTP.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:FluentFTP.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_F305156F14D60E8E938949378275132D"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_F305156F14D60E8E938949378275132D"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_F61DAEDB61465C1B8774BCFF055FC0D6"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader, Version=15.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_F61DAEDB61465C1B8774BCFF055FC0D6"
                    {
                    "Name" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Microsoft.TeamFoundation.WorkItemTracking.Client.DataStoreLoader.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.BrushPicker, Version=2.0.9.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_FF26B2424D1F2EB451FE2EDE8CD8D7CD"
                    {
                    "Name" = "8:Tango.BrushPicker.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.BrushPicker.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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}:_FF9B3021994C6FE507A9C7BE198B6C03"
            {
            "AssemblyRegister" = "3:1"
            "AssemblyIsInGAC" = "11:FALSE"
            "AssemblyAsmDisplayName" = "8:Tango.MachineStudio.DataCapture, Version=2.0.11.1737, Culture=neutral, processorArchitecture=MSIL"
                "ScatterAssemblies"
                {
                    "_FF9B3021994C6FE507A9C7BE198B6C03"
                    {
                    "Name" = "8:Tango.MachineStudio.DataCapture.dll"
                    "Attributes" = "3:512"
                    }
                }
            "SourcePath" = "8:Tango.MachineStudio.DataCapture.dll"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:"
            }
        }
        "FileType"
        {
        }
        "Folder"
        {
            "{1525181F-901A-416C-8A58-119130FE478E}:_2B7C57CBA7424F6BA8F808A3FF16C43F"
            {
            "Name" = "8:#1916"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:DesktopFolder"
                "Folders"
                {
                }
            }
            "{1525181F-901A-416C-8A58-119130FE478E}:_968A4F66A48640108B0EA8FAEC525B37"
            {
            "Name" = "8:#1919"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:ProgramMenuFolder"
                "Folders"
                {
                }
            }
            "{3C67513D-01DD-4637-8A68-80971EB9504F}:_C15E39669002469F98F297C08D55903C"
            {
            "DefaultLocation" = "8:[ProgramFilesFolder][Manufacturer]\\[ProductName]"
            "Name" = "8:#1925"
            "AlwaysCreate" = "11:FALSE"
            "Condition" = "8:"
            "Transitive" = "11:FALSE"
            "Property" = "8:TARGETDIR"
                "Folders"
                {
                    "{9EF0B969-E518-4E46-987F-47570745A589}:_137C662BA6B24073AC58ED6C67DA7951"
                    {
                    "Name" = "8:x86"
                    "AlwaysCreate" = "11:FALSE"
                    "Condition" = "8:"
                    "Transitive" = "11:FALSE"
                    "Property" = "8:_1F831795EFB9407FAABE378081755E62"
                        "Folders"
                        {
                        }
                    }
                    "{9EF0B969-E518-4E46-987F-47570745A589}:_37D35F637FDD433095D8A36CAA7424C8"
                    {
                    "Name" = "8:x64"
                    "AlwaysCreate" = "11:FALSE"
                    "Condition" = "8:"
                    "Transitive" = "11:FALSE"
                    "Property" = "8:_F592681A2CDE4CC1946728CA04414DC8"
                        "Folders"
                        {
                        }
                    }
                }
            }
        }
        "LaunchCondition"
        {
        }
        "Locator"
        {
        }
        "MsiBootstrapper"
        {
        "LangId" = "3:1033"
        "RequiresElevation" = "11:FALSE"
        }
        "Product"
        {
        "Name" = "8:Microsoft Visual Studio"
        "ProductName" = "8:Machine Studio"
        "ProductCode" = "8:{BAA6F766-A4A0-443C-8E67-322A62985F39}"
        "PackageCode" = "8:{76F9DFC9-DB8F-4B85-BE49-59481489287A}"
        "UpgradeCode" = "8:{EDD5BF5D-A0F0-4016-AE0A-5C008DD66BB6}"
        "AspNetVersion" = "8:4.0.30319.0"
        "RestartWWWService" = "11:FALSE"
        "RemovePreviousVersions" = "11:TRUE"
        "DetectNewerInstalledVersion" = "11:FALSE"
        "InstallAllUsers" = "11:TRUE"
        "ProductVersion" = "8:3.3.0"
        "Manufacturer" = "8:Twine"
        "ARPHELPTELEPHONE" = "8:"
        "ARPHELPLINK" = "8:"
        "Title" = "8:Machine Studio"
        "Subject" = "8:"
        "ARPCONTACT" = "8:Twine"
        "Keywords" = "8:"
        "ARPCOMMENTS" = "8:"
        "ARPURLINFOABOUT" = "8:"
        "ARPPRODUCTICON" = "8:"
        "ARPIconIndex" = "3:0"
        "SearchPath" = "8:"
        "UseSystemSearchPath" = "11:TRUE"
        "TargetPlatform" = "3:0"
        "PreBuildEvent" = "8:"
        "PostBuildEvent" = "8:"
        "RunPostBuildEvent" = "3:0"
        }
        "Registry"
        {
            "HKLM"
            {
                "Keys"
                {
                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_67687E08172E49BEA900C5484C5FF8DA"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_01DA46310D13428A86083D861B5E2B54"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCU"
            {
                "Keys"
                {
                    "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_9B146D40CB194C87882A4AE32F7F4B35"
                    {
                    "Name" = "8:Software"
                    "Condition" = "8:"
                    "AlwaysCreate" = "11:FALSE"
                    "DeleteAtUninstall" = "11:FALSE"
                    "Transitive" = "11:FALSE"
                        "Keys"
                        {
                            "{60EA8692-D2D5-43EB-80DC-7906BF13D6EF}:_035000F1D57C4EACB15A7673F34EEB37"
                            {
                            "Name" = "8:[Manufacturer]"
                            "Condition" = "8:"
                            "AlwaysCreate" = "11:FALSE"
                            "DeleteAtUninstall" = "11:FALSE"
                            "Transitive" = "11:FALSE"
                                "Keys"
                                {
                                }
                                "Values"
                                {
                                }
                            }
                        }
                        "Values"
                        {
                        }
                    }
                }
            }
            "HKCR"
            {
                "Keys"
                {
                }
            }
            "HKU"
            {
                "Keys"
                {
                }
            }
            "HKPU"
            {
                "Keys"
                {
                }
            }
        }
        "Sequences"
        {
        }
        "Shortcut"
        {
            "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_198AFFE2F9DE4D79906A285CA9243C2D"
            {
            "Name" = "8:Machine Studio"
            "Arguments" = "8:"
            "Description" = "8:"
            "ShowCmd" = "3:1"
            "IconIndex" = "3:32512"
            "Transitive" = "11:FALSE"
            "Target" = "8:_136196DD2763419D959721C2BA143498"
            "Folder" = "8:_968A4F66A48640108B0EA8FAEC525B37"
            "WorkingFolder" = "8:_C15E39669002469F98F297C08D55903C"
            "Icon" = "8:_136196DD2763419D959721C2BA143498"
            "Feature" = "8:"
            }
            "{970C0BB2-C7D0-45D7-ABFA-7EC378858BC0}:_4611BDFC25A64A63AE21584EE9FEFB83"
            {
            "Name" = "8:Machine Studio"
            "Arguments" = "8:"
            "Description" = "8:"
            "ShowCmd" = "3:1"
            "IconIndex" = "3:32512"
            "Transitive" = "11:FALSE"
            "Target" = "8:_136196DD2763419D959721C2BA143498"
            "Folder" = "8:_2B7C57CBA7424F6BA8F808A3FF16C43F"
            "WorkingFolder" = "8:_C15E39669002469F98F297C08D55903C"
            "Icon" = "8:_136196DD2763419D959721C2BA143498"
            "Feature" = "8:"
            }
        }
        "UserInterface"
        {
            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_08B45AD123094F6C92B305C14627FB76"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdBasicDialogs.wim"
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_6E6D9A9BD7974792B393BBF9B89C42E1"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:1"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_C0D4182D7CAA4C39A10E65DE809DAA4C"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "UpdateText"
                            {
                            "Name" = "8:UpdateText"
                            "DisplayName" = "8:#1058"
                            "Description" = "8:#1158"
                            "Type" = "3:15"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1258"
                            "DefaultValue" = "8:#1258"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_75AC580475C8462AA4332E731B6F97BD"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:1"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_7087F748E92D45E99702F6CD55D69972"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{2479F3F5-0309-486D-8047-8187E2CE5BA0}:_A4C5DFB6206947E6A40AD0584377A7F5"
            {
            "UseDynamicProperties" = "11:FALSE"
            "IsDependency" = "11:FALSE"
            "SourcePath" = "8:<VsdDialogDir>\\VsdUserInterface.wim"
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_B7AFC6BC21994F5993C27ADE17D59052"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:1"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_08A90397CA3047E88066D7CFB5879207"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_941B7EBD8EB34731AD2F885ACF47D804"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_F8D37B85CCF34A3EBCC34C2AA0CEC474"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "InstallAllUsersVisible"
                            {
                            "Name" = "8:InstallAllUsersVisible"
                            "DisplayName" = "8:#1059"
                            "Description" = "8:#1159"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_D522BCA1443A4EF4A6728C158A0BFEC0"
            {
            "Name" = "8:#1902"
            "Sequence" = "3:2"
            "Attributes" = "3:3"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A464CE15CB6B4EBD8002FCF64B25F9F0"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Finished"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFinishedDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_E1A90A55B08D47AB81224F2717FF1C8D"
            {
            "Name" = "8:#1901"
            "Sequence" = "3:2"
            "Attributes" = "3:2"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_40EFCCE2771040DB9A2BC3584D440B44"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Progress"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminProgressDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "ShowProgress"
                            {
                            "Name" = "8:ShowProgress"
                            "DisplayName" = "8:#1009"
                            "Description" = "8:#1109"
                            "Type" = "3:5"
                            "ContextData" = "8:1;True=1;False=0"
                            "Attributes" = "3:0"
                            "Setting" = "3:0"
                            "Value" = "3:1"
                            "DefaultValue" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
            "{DF760B10-853B-4699-99F2-AFF7185B4A62}:_F3B36666230B471BBD5F19C85329DFA3"
            {
            "Name" = "8:#1900"
            "Sequence" = "3:2"
            "Attributes" = "3:1"
                "Dialogs"
                {
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_488C757DE3BF4488B917842494386BCE"
                    {
                    "Sequence" = "3:200"
                    "DisplayName" = "8:Installation Folder"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminFolderDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_A3A6A0CF6B0241A392124B3CDFEB2B6F"
                    {
                    "Sequence" = "3:100"
                    "DisplayName" = "8:Welcome"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminWelcomeDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "CopyrightWarning"
                            {
                            "Name" = "8:CopyrightWarning"
                            "DisplayName" = "8:#1002"
                            "Description" = "8:#1102"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1202"
                            "DefaultValue" = "8:#1202"
                            "UsePlugInResources" = "11:TRUE"
                            }
                            "Welcome"
                            {
                            "Name" = "8:Welcome"
                            "DisplayName" = "8:#1003"
                            "Description" = "8:#1103"
                            "Type" = "3:3"
                            "ContextData" = "8:"
                            "Attributes" = "3:0"
                            "Setting" = "3:1"
                            "Value" = "8:#1203"
                            "DefaultValue" = "8:#1203"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                    "{688940B3-5CA9-4162-8DEE-2993FA9D8CBC}:_E667812EA6BC4613911EFDF53B37DFA6"
                    {
                    "Sequence" = "3:300"
                    "DisplayName" = "8:Confirm Installation"
                    "UseDynamicProperties" = "11:TRUE"
                    "IsDependency" = "11:FALSE"
                    "SourcePath" = "8:<VsdDialogDir>\\VsdAdminConfirmDlg.wid"
                        "Properties"
                        {
                            "BannerBitmap"
                            {
                            "Name" = "8:BannerBitmap"
                            "DisplayName" = "8:#1001"
                            "Description" = "8:#1101"
                            "Type" = "3:8"
                            "ContextData" = "8:Bitmap"
                            "Attributes" = "3:4"
                            "Setting" = "3:1"
                            "UsePlugInResources" = "11:TRUE"
                            }
                        }
                    }
                }
            }
        }
        "MergeModule"
        {
        }
        "ProjectOutput"
        {
            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_136196DD2763419D959721C2BA143498"
            {
            "SourcePath" = "8:..\\Tango.MachineStudio.UI\\obj\\Release\\Tango.MachineStudio.UI.exe"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:{116DFDB0-7681-46FE-8BAD-FE8AE09BB076}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_88F4B9AD85B348AA835884EA6B695677"
            {
            "SourcePath" = "8:"
            "TargetName" = "8:"
            "Tag" = "8:"
            "Folder" = "8:_C15E39669002469F98F297C08D55903C"
            "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:ContentFiles"
            "OutputProjectGuid" = "8:{116DFDB0-7681-46FE-8BAD-FE8AE09BB076}"
            "ShowKeyOutput" = "11:TRUE"
                "ExcludeFilters"
                {
                }
            }
        }
    }
}