-
Notifications
You must be signed in to change notification settings - Fork 9
/
Tracer.sln
828 lines (828 loc) · 62.1 KB
/
Tracer.sln
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
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2027
MinimumVisualStudioVersion = 10.0.40219.1
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A70C4C43-F7F1-4D59-8478-3DA0797E362C}"
ProjectSection(SolutionItems) = preProject
CallStack1.dgml = CallStack1.dgml
Graph1.dgml = Graph1.dgml
IncludeFileDependencies1.dgml = IncludeFileDependencies1.dgml
Tracer.props = Tracer.props
TracerBase.props = TracerBase.props
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Python", "Python\Python.vcxproj", "{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}"
ProjectSection(ProjectDependencies) = postProject
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PythonTracer", "PythonTracer\PythonTracer.vcxproj", "{9E26840A-F841-4818-A240-922B7F9E1AB4}"
ProjectSection(ProjectDependencies) = postProject
{C6FBB103-535C-4BCD-A463-B60C09481854} = {C6FBB103-535C-4BCD-A463-B60C09481854}
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C} = {B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Rtl", "Rtl\Rtl.vcxproj", "{91695EDE-DFC2-4364-A959-3C8A0870507A}"
EndProject
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "PythonApp", "PythonApp\PythonApp.pyproj", "{EBB98965-02D5-48B2-96A2-0F9973A629A1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerControlDriver", "TracerControlDriver\TracerControlDriver.vcxproj", "{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracedPythonExe", "TracedPythonExe\TracedPythonExe.vcxproj", "{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}"
ProjectSection(ProjectDependencies) = postProject
{C6FBB103-535C-4BCD-A463-B60C09481854} = {C6FBB103-535C-4BCD-A463-B60C09481854}
{9E26840A-F841-4818-A240-922B7F9E1AB4} = {9E26840A-F841-4818-A240-922B7F9E1AB4}
{36AD6049-959C-4953-BC6E-8BAE85654A3B} = {36AD6049-959C-4953-BC6E-8BAE85654A3B}
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C} = {B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08} = {AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracedPythonSession", "TracedPythonSession\TracedPythonSession.vcxproj", "{36AD6049-959C-4953-BC6E-8BAE85654A3B}"
ProjectSection(ProjectDependencies) = postProject
{C6FBB103-535C-4BCD-A463-B60C09481854} = {C6FBB103-535C-4BCD-A463-B60C09481854}
{9E26840A-F841-4818-A240-922B7F9E1AB4} = {9E26840A-F841-4818-A240-922B7F9E1AB4}
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C} = {B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracedPythonSessionLib", "TracedPythonSessionLib\TracedPythonSessionLib.vcxproj", "{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}"
ProjectSection(ProjectDependencies) = postProject
{9E26840A-F841-4818-A240-922B7F9E1AB4} = {9E26840A-F841-4818-A240-922B7F9E1AB4}
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C} = {B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerConfig", "TracerConfig\TracerConfig.vcxproj", "{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}"
ProjectSection(ProjectDependencies) = postProject
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerHeap", "TracerHeap\TracerHeap.vcxproj", "{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}"
ProjectSection(ProjectDependencies) = postProject
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerHeapLib", "TracerHeapLib\TracerHeapLib.vcxproj", "{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}"
ProjectSection(ProjectDependencies) = postProject
{91695EDE-DFC2-4364-A959-3C8A0870507A} = {91695EDE-DFC2-4364-A959-3C8A0870507A}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TraceStore", "TraceStore\TraceStore.vcxproj", "{C6FBB103-535C-4BCD-A463-B60C09481854}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable", "StringTable\StringTable.vcxproj", "{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PythonProject", "PythonProject\PythonProject.vcxproj", "{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerConfigLib", "TracerConfigLib\TracerConfigLib.vcxproj", "{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerExe", "TracerExe\TracerExe.vcxproj", "{ED5C33CF-378C-44F1-9F48-931DC385A50B}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DebugEngine", "DebugEngine\DebugEngine.vcxproj", "{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerCore", "TracerCore\TracerCore.vcxproj", "{041D453B-0451-43D5-B4E6-074660EEE1BF}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TracerCoreLib", "TracerCoreLib\TracerCoreLib.vcxproj", "{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Asm", "Asm\Asm.vcxproj", "{A74874AC-5F74-42B8-9E94-4028DE4D1829}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AsmLib", "AsmLib\AsmLib.vcxproj", "{A74874AC-5F75-42B8-9E94-4028DE4D1829}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TestInjectionExe", "TestInjectionExe\TestInjectionExe.vcxproj", "{0E046382-5241-4B4D-9E26-3056D2C63F3A}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PythonTracerInjection", "PythonTracerInjection\PythonTracerInjection.vcxproj", "{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ThunkExe", "ThunkExe\ThunkExe.vcxproj", "{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "InjectionThunk", "InjectionThunk\InjectionThunk.vcxproj", "{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ModuleLoaderExe", "ModuleLoaderExe\ModuleLoaderExe.vcxproj", "{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}"
ProjectSection(ProjectDependencies) = postProject
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D} = {8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ScratchExe", "ScratchExe\ScratchExe.vcxproj", "{681468CA-92CE-47D8-95D0-FB906CB5E80A}"
ProjectSection(ProjectDependencies) = postProject
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142} = {4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "TraceStoreSqlite3Ext", "TraceStoreSqlite3Ext\TraceStoreSqlite3Ext.vcxproj", "{3670370F-FFC8-4A7B-B748-4F26FCA183FD}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BenchmarkExe", "BenchmarkExe\BenchmarkExe.vcxproj", "{C4D67F0A-CD69-42D1-A07A-24B25219A716}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2", "StringTable2\StringTable2.vcxproj", "{55053E34-1F6E-447A-AA44-0C86636D3C81}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2BenchmarkExe", "StringTable2BenchmarkExe\StringTable2BenchmarkExe.vcxproj", "{1FCBA373-CA75-4D4B-9C25-17BF13328A06}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "StringTable2Test", "StringTable2Test\StringTable2Test.vcxproj", "{6B03819C-E931-4225-8F21-E9863D747751}"
ProjectSection(ProjectDependencies) = postProject
{55053E34-1F6E-447A-AA44-0C86636D3C81} = {55053E34-1F6E-447A-AA44-0C86636D3C81}
EndProjectSection
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerfectHashTable", "PerfectHashTable\PerfectHashTable.vcxproj", "{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "PerfectHashTableSelfTestExe", "PerfectHashTableSelfTestExe\PerfectHashTableSelfTestExe.vcxproj", "{741C0AD4-D461-4E15-96E3-B6D30B7068EA}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|x64 = Debug|x64
Debug|x86 = Debug|x86
PGInstrument|x64 = PGInstrument|x64
PGInstrument|x86 = PGInstrument|x86
PGOptimize|x64 = PGOptimize|x64
PGOptimize|x86 = PGOptimize|x86
PGUpdate|x64 = PGUpdate|x64
PGUpdate|x86 = PGUpdate|x86
Release|x64 = Release|x64
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Debug|x64.ActiveCfg = Debug|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Debug|x64.Build.0 = Debug|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Debug|x86.ActiveCfg = Debug|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Debug|x86.Build.0 = Debug|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGInstrument|x64.Build.0 = PGInstrument|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGOptimize|x64.Build.0 = PGOptimize|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGUpdate|x64.Build.0 = PGUpdate|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Release|x64.ActiveCfg = Release|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Release|x64.Build.0 = Release|x64
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Release|x86.ActiveCfg = Release|Win32
{B24F2B53-8B08-4CF7-8AE3-0C3DDD86373C}.Release|x86.Build.0 = Release|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Debug|x64.ActiveCfg = Debug|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Debug|x64.Build.0 = Debug|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Debug|x86.ActiveCfg = Debug|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Debug|x86.Build.0 = Debug|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGInstrument|x64.Build.0 = PGInstrument|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGOptimize|x64.Build.0 = PGOptimize|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGUpdate|x64.Build.0 = PGUpdate|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Release|x64.ActiveCfg = Release|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Release|x64.Build.0 = Release|x64
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Release|x86.ActiveCfg = Release|Win32
{9E26840A-F841-4818-A240-922B7F9E1AB4}.Release|x86.Build.0 = Release|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x64.ActiveCfg = Debug|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x64.Build.0 = Debug|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x86.ActiveCfg = Debug|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Debug|x86.Build.0 = Debug|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x64.Build.0 = PGInstrument|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x64.Build.0 = PGOptimize|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x64.Build.0 = PGUpdate|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x64.ActiveCfg = Release|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x64.Build.0 = Release|x64
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x86.ActiveCfg = Release|Win32
{91695EDE-DFC2-4364-A959-3C8A0870507A}.Release|x86.Build.0 = Release|Win32
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.Debug|x64.ActiveCfg = Debug|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.Debug|x86.ActiveCfg = Debug|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGInstrument|x64.ActiveCfg = Release|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGInstrument|x86.ActiveCfg = PGOptimize|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGOptimize|x64.ActiveCfg = PGOptimize|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGOptimize|x86.ActiveCfg = PGOptimize|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGUpdate|x64.ActiveCfg = Release|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.PGUpdate|x86.ActiveCfg = PGOptimize|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.Release|x64.ActiveCfg = Release|Any CPU
{EBB98965-02D5-48B2-96A2-0F9973A629A1}.Release|x86.ActiveCfg = Release|Any CPU
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Debug|x64.ActiveCfg = Debug|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Debug|x64.Build.0 = Debug|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Debug|x86.ActiveCfg = Debug|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Debug|x86.Build.0 = Debug|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Debug|x86.Deploy.0 = Debug|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGInstrument|x64.ActiveCfg = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGInstrument|x86.ActiveCfg = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGInstrument|x86.Build.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGInstrument|x86.Deploy.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGOptimize|x86.Deploy.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x64.ActiveCfg = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x64.Build.0 = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x64.Deploy.0 = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x86.ActiveCfg = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x86.Build.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.PGUpdate|x86.Deploy.0 = PGOptimize|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Release|x64.ActiveCfg = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Release|x64.Build.0 = Release|x64
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Release|x86.ActiveCfg = Release|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Release|x86.Build.0 = Release|Win32
{0D1F7EC0-9947-45E7-B4F9-AAD1D39265E1}.Release|x86.Deploy.0 = Release|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Debug|x64.ActiveCfg = Debug|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Debug|x64.Build.0 = Debug|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Debug|x86.ActiveCfg = Debug|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Debug|x86.Build.0 = Debug|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGInstrument|x64.Build.0 = PGInstrument|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGOptimize|x64.Build.0 = PGOptimize|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGUpdate|x64.Build.0 = PGUpdate|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Release|x64.ActiveCfg = Release|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Release|x64.Build.0 = Release|x64
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Release|x86.ActiveCfg = Release|Win32
{808CBEDF-507B-4E92-BB25-3A2DF2C8ECF4}.Release|x86.Build.0 = Release|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Debug|x64.ActiveCfg = Debug|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Debug|x64.Build.0 = Debug|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Debug|x86.ActiveCfg = Debug|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Debug|x86.Build.0 = Debug|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGInstrument|x64.Build.0 = PGInstrument|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGOptimize|x64.Build.0 = PGOptimize|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGUpdate|x64.Build.0 = PGUpdate|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Release|x64.ActiveCfg = Release|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Release|x64.Build.0 = Release|x64
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Release|x86.ActiveCfg = Release|Win32
{36AD6049-959C-4953-BC6E-8BAE85654A3B}.Release|x86.Build.0 = Release|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Debug|x64.ActiveCfg = Debug|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Debug|x64.Build.0 = Debug|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Debug|x86.ActiveCfg = Debug|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Debug|x86.Build.0 = Debug|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGInstrument|x64.Build.0 = PGInstrument|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGOptimize|x64.Build.0 = PGOptimize|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGUpdate|x64.Build.0 = PGUpdate|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Release|x64.ActiveCfg = Release|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Release|x64.Build.0 = Release|x64
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Release|x86.ActiveCfg = Release|Win32
{15E4CDC4-C1D4-458A-A1A7-D220792AE53E}.Release|x86.Build.0 = Release|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x64.ActiveCfg = Debug|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x64.Build.0 = Debug|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x86.ActiveCfg = Debug|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Debug|x86.Build.0 = Debug|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x64.Build.0 = PGInstrument|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x64.Build.0 = PGOptimize|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x64.Build.0 = PGUpdate|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x64.ActiveCfg = Release|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x64.Build.0 = Release|x64
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x86.ActiveCfg = Release|Win32
{76F2056F-6A65-4BA3-A49F-3CBF5D1E2CDF}.Release|x86.Build.0 = Release|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Debug|x64.ActiveCfg = Debug|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Debug|x64.Build.0 = Debug|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Debug|x86.ActiveCfg = Debug|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Debug|x86.Build.0 = Debug|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGInstrument|x64.Build.0 = PGInstrument|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGOptimize|x64.Build.0 = PGOptimize|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGUpdate|x64.Build.0 = PGUpdate|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Release|x64.ActiveCfg = Release|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Release|x64.Build.0 = Release|x64
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Release|x86.ActiveCfg = Release|Win32
{40A4B73F-F9AA-407A-91EB-5D2D092DCC30}.Release|x86.Build.0 = Release|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x64.ActiveCfg = Debug|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x64.Build.0 = Debug|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x86.ActiveCfg = Debug|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Debug|x86.Build.0 = Debug|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x64.Build.0 = PGInstrument|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x64.Build.0 = PGOptimize|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x64.Build.0 = PGUpdate|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x64.ActiveCfg = Release|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x64.Build.0 = Release|x64
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x86.ActiveCfg = Release|Win32
{4868DDA6-86D8-4FDF-AB71-8F9EA51A1142}.Release|x86.Build.0 = Release|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x64.ActiveCfg = Debug|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x64.Build.0 = Debug|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x86.ActiveCfg = Debug|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Debug|x86.Build.0 = Debug|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x64.Build.0 = PGInstrument|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x64.Build.0 = PGOptimize|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x64.Build.0 = PGUpdate|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x64.ActiveCfg = Release|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x64.Build.0 = Release|x64
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x86.ActiveCfg = Release|Win32
{C6FBB103-535C-4BCD-A463-B60C09481854}.Release|x86.Build.0 = Release|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Debug|x64.ActiveCfg = Debug|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Debug|x64.Build.0 = Debug|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Debug|x86.ActiveCfg = Debug|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Debug|x86.Build.0 = Debug|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGInstrument|x64.Build.0 = PGInstrument|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGOptimize|x64.Build.0 = PGOptimize|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGUpdate|x64.Build.0 = PGUpdate|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Release|x64.ActiveCfg = Release|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Release|x64.Build.0 = Release|x64
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Release|x86.ActiveCfg = Release|Win32
{AA7C9CED-BF7F-46CD-9D0F-A2ED214E3B08}.Release|x86.Build.0 = Release|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Debug|x64.ActiveCfg = Debug|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Debug|x64.Build.0 = Debug|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Debug|x86.ActiveCfg = Debug|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Debug|x86.Build.0 = Debug|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGInstrument|x64.Build.0 = PGInstrument|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGOptimize|x64.Build.0 = PGOptimize|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGUpdate|x64.Build.0 = PGUpdate|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Release|x64.ActiveCfg = Release|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Release|x64.Build.0 = Release|x64
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Release|x86.ActiveCfg = Release|Win32
{1CB689FF-E3C5-4648-BFED-9247AB9FDEA8}.Release|x86.Build.0 = Release|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x64.ActiveCfg = Debug|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x64.Build.0 = Debug|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x86.ActiveCfg = Debug|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Debug|x86.Build.0 = Debug|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x64.Build.0 = PGInstrument|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x64.Build.0 = PGOptimize|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x64.Build.0 = PGUpdate|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x64.ActiveCfg = Release|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x64.Build.0 = Release|x64
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x86.ActiveCfg = Release|Win32
{8A5AAEC6-FB14-49C3-8837-FE8A54D23C1D}.Release|x86.Build.0 = Release|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Debug|x64.ActiveCfg = Debug|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Debug|x64.Build.0 = Debug|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Debug|x86.ActiveCfg = Debug|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Debug|x86.Build.0 = Debug|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGInstrument|x64.Build.0 = PGInstrument|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGUpdate|x64.Build.0 = PGUpdate|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Release|x64.ActiveCfg = Release|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Release|x64.Build.0 = Release|x64
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Release|x86.ActiveCfg = Release|Win32
{ED5C33CF-378C-44F1-9F48-931DC385A50B}.Release|x86.Build.0 = Release|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x64.ActiveCfg = Debug|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x64.Build.0 = Debug|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x86.ActiveCfg = Debug|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Debug|x86.Build.0 = Debug|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x64.Build.0 = PGInstrument|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x64.Build.0 = PGOptimize|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x64.Build.0 = PGUpdate|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x64.ActiveCfg = Release|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x64.Build.0 = Release|x64
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x86.ActiveCfg = Release|Win32
{9C21A82A-F8BD-41D5-A6FB-7B6F25F0C38F}.Release|x86.Build.0 = Release|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Debug|x64.ActiveCfg = Debug|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Debug|x64.Build.0 = Debug|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Debug|x86.ActiveCfg = Debug|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Debug|x86.Build.0 = Debug|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGInstrument|x64.Build.0 = PGInstrument|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGOptimize|x64.ActiveCfg = Release|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGOptimize|x64.Build.0 = Release|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGUpdate|x64.Build.0 = PGUpdate|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Release|x64.ActiveCfg = Release|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Release|x64.Build.0 = Release|x64
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Release|x86.ActiveCfg = Release|Win32
{041D453B-0451-43D5-B4E6-074660EEE1BF}.Release|x86.Build.0 = Release|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Debug|x64.ActiveCfg = Debug|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Debug|x64.Build.0 = Debug|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Debug|x86.ActiveCfg = Debug|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Debug|x86.Build.0 = Debug|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGInstrument|x64.Build.0 = PGInstrument|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGOptimize|x64.ActiveCfg = Release|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGOptimize|x64.Build.0 = Release|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGUpdate|x64.Build.0 = PGUpdate|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Release|x64.ActiveCfg = Release|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Release|x64.Build.0 = Release|x64
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Release|x86.ActiveCfg = Release|Win32
{88DCC275-44FE-47B1-BDBB-FD5FB8D24ED7}.Release|x86.Build.0 = Release|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x64.ActiveCfg = Debug|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x64.Build.0 = Debug|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x86.ActiveCfg = Debug|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Debug|x86.Build.0 = Debug|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x64.Build.0 = PGInstrument|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x64.Build.0 = PGUpdate|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x64.ActiveCfg = Release|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x64.Build.0 = Release|x64
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x86.ActiveCfg = Release|Win32
{A74874AC-5F74-42B8-9E94-4028DE4D1829}.Release|x86.Build.0 = Release|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x64.ActiveCfg = Debug|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x64.Build.0 = Debug|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x86.ActiveCfg = Debug|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Debug|x86.Build.0 = Debug|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x64.Build.0 = PGInstrument|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x64.Build.0 = PGOptimize|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x64.Build.0 = PGUpdate|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x64.ActiveCfg = Release|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x64.Build.0 = Release|x64
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x86.ActiveCfg = Release|Win32
{A74874AC-5F75-42B8-9E94-4028DE4D1829}.Release|x86.Build.0 = Release|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Debug|x64.ActiveCfg = Debug|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Debug|x64.Build.0 = Debug|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Debug|x86.ActiveCfg = Debug|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Debug|x86.Build.0 = Debug|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGInstrument|x64.Build.0 = PGInstrument|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGOptimize|x64.Build.0 = PGOptimize|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGUpdate|x64.Build.0 = PGUpdate|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Release|x64.ActiveCfg = Release|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Release|x64.Build.0 = Release|x64
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Release|x86.ActiveCfg = Release|Win32
{0E046382-5241-4B4D-9E26-3056D2C63F3A}.Release|x86.Build.0 = Release|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Debug|x64.ActiveCfg = Debug|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Debug|x64.Build.0 = Debug|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Debug|x86.ActiveCfg = Debug|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Debug|x86.Build.0 = Debug|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGInstrument|x64.Build.0 = PGInstrument|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGOptimize|x64.Build.0 = PGOptimize|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGUpdate|x64.Build.0 = PGUpdate|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Release|x64.ActiveCfg = Release|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Release|x64.Build.0 = Release|x64
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Release|x86.ActiveCfg = Release|Win32
{3D38F615-E2E1-45F1-B38E-B6143BEA12C6}.Release|x86.Build.0 = Release|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Debug|x64.ActiveCfg = Debug|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Debug|x64.Build.0 = Debug|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Debug|x86.ActiveCfg = Debug|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Debug|x86.Build.0 = Debug|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGInstrument|x64.Build.0 = PGInstrument|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGOptimize|x64.Build.0 = PGOptimize|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGUpdate|x64.Build.0 = PGUpdate|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Release|x64.ActiveCfg = Release|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Release|x64.Build.0 = Release|x64
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Release|x86.ActiveCfg = Release|Win32
{0CBEEA88-F13A-44D3-996D-3ECAAB50D575}.Release|x86.Build.0 = Release|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x64.ActiveCfg = Debug|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x64.Build.0 = Debug|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x86.ActiveCfg = Debug|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Debug|x86.Build.0 = Debug|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x64.Build.0 = PGInstrument|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x64.Build.0 = PGOptimize|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x64.Build.0 = PGUpdate|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x64.ActiveCfg = Release|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x64.Build.0 = Release|x64
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x86.ActiveCfg = Release|Win32
{D97AAB8A-8FC6-40EE-98B5-7EC3B352F174}.Release|x86.Build.0 = Release|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x64.ActiveCfg = Debug|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x64.Build.0 = Debug|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x86.ActiveCfg = Debug|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Debug|x86.Build.0 = Debug|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x64.Build.0 = PGInstrument|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x64.Build.0 = PGOptimize|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x64.Build.0 = PGUpdate|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x64.ActiveCfg = Release|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x64.Build.0 = Release|x64
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x86.ActiveCfg = Release|Win32
{17D8DCFB-E29E-4E53-9AB2-1E01CC811833}.Release|x86.Build.0 = Release|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x64.ActiveCfg = Debug|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x64.Build.0 = Debug|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x86.ActiveCfg = Debug|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Debug|x86.Build.0 = Debug|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x64.Build.0 = PGInstrument|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x64.Build.0 = PGOptimize|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x64.Build.0 = PGUpdate|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x64.ActiveCfg = Release|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x64.Build.0 = Release|x64
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x86.ActiveCfg = Release|Win32
{681468CA-92CE-47D8-95D0-FB906CB5E80A}.Release|x86.Build.0 = Release|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Debug|x64.ActiveCfg = Debug|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Debug|x64.Build.0 = Debug|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Debug|x86.ActiveCfg = Debug|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Debug|x86.Build.0 = Debug|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGInstrument|x64.Build.0 = PGInstrument|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGOptimize|x64.Build.0 = PGOptimize|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGUpdate|x64.Build.0 = PGUpdate|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Release|x64.ActiveCfg = Release|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Release|x64.Build.0 = Release|x64
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Release|x86.ActiveCfg = Release|Win32
{3670370F-FFC8-4A7B-B748-4F26FCA183FD}.Release|x86.Build.0 = Release|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x64.ActiveCfg = Debug|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x64.Build.0 = Debug|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x86.ActiveCfg = Debug|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Debug|x86.Build.0 = Debug|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x64.Build.0 = PGInstrument|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x64.Build.0 = PGOptimize|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x64.Build.0 = PGUpdate|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x64.ActiveCfg = Release|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x64.Build.0 = Release|x64
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x86.ActiveCfg = Release|Win32
{C4D67F0A-CD69-42D1-A07A-24B25219A716}.Release|x86.Build.0 = Release|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x64.ActiveCfg = Debug|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x64.Build.0 = Debug|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x86.ActiveCfg = Debug|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Debug|x86.Build.0 = Debug|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x64.Build.0 = PGInstrument|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x64.Build.0 = PGOptimize|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x64.Build.0 = PGUpdate|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x64.ActiveCfg = Release|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x64.Build.0 = Release|x64
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x86.ActiveCfg = Release|Win32
{55053E34-1F6E-447A-AA44-0C86636D3C81}.Release|x86.Build.0 = Release|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x64.ActiveCfg = Debug|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x64.Build.0 = Debug|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x86.ActiveCfg = Debug|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Debug|x86.Build.0 = Debug|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x64.Build.0 = PGInstrument|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x64.Build.0 = PGOptimize|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x64.Build.0 = PGUpdate|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x64.ActiveCfg = Release|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x64.Build.0 = Release|x64
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x86.ActiveCfg = Release|Win32
{1FCBA373-CA75-4D4B-9C25-17BF13328A06}.Release|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x64.ActiveCfg = Debug|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x64.Build.0 = Debug|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x86.ActiveCfg = Debug|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Debug|x86.Build.0 = Debug|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGInstrument|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGOptimize|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.PGUpdate|x86.Build.0 = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x64.ActiveCfg = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x64.Build.0 = Release|x64
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x86.ActiveCfg = Release|Win32
{6B03819C-E931-4225-8F21-E9863D747751}.Release|x86.Build.0 = Release|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x64.ActiveCfg = Debug|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x64.Build.0 = Debug|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x86.ActiveCfg = Debug|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Debug|x86.Build.0 = Debug|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x64.Build.0 = PGInstrument|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x64.Build.0 = PGOptimize|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x64.Build.0 = PGUpdate|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x64.ActiveCfg = Release|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x64.Build.0 = Release|x64
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x86.ActiveCfg = Release|Win32
{14D9F1FD-1EC4-47FF-BF73-3868ED05FEB8}.Release|x86.Build.0 = Release|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x64.ActiveCfg = Debug|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x64.Build.0 = Debug|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x86.ActiveCfg = Debug|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Debug|x86.Build.0 = Debug|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x64.ActiveCfg = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x64.Build.0 = PGInstrument|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x86.ActiveCfg = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGInstrument|x86.Build.0 = PGInstrument|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x64.ActiveCfg = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x64.Build.0 = PGOptimize|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x86.ActiveCfg = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGOptimize|x86.Build.0 = PGOptimize|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x64.ActiveCfg = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x64.Build.0 = PGUpdate|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x86.ActiveCfg = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.PGUpdate|x86.Build.0 = PGUpdate|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x64.ActiveCfg = Release|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x64.Build.0 = Release|x64
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x86.ActiveCfg = Release|Win32
{741C0AD4-D461-4E15-96E3-B6D30B7068EA}.Release|x86.Build.0 = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0F202CA9-8660-448A-9F9D-105589BB11F9}
EndGlobalSection
EndGlobal