-
Notifications
You must be signed in to change notification settings - Fork 0
/
Disable Game DVR2.reg
1693 lines (1560 loc) · 201 KB
/
Disable Game DVR2.reg
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
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\System\GameConfigStore]
"GameDVR_Enabled"=dword:00000000
"GameDVR_FSEBehaviorMode"=dword:00000000
"Win32_AutoGameModeDefaultProfile"=hex:01,00,01,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00
"Win32_GameModeRelatedProcesses"=hex:01,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,\
00,00,00,00,00,00,00,00,00,00
"GameDVR_HonorUserFSEBehaviorMode"=dword:00000000
"GameDVR_DXGIHonorFSEWindowsCompatible"=dword:00000000
"GameDVR_EFSEFeatureFlags"=dword:00000000
"GameDVR_FSEBehavior"=dword:00000002
[HKEY_CURRENT_USER\System\GameConfigStore\Children]
[HKEY_CURRENT_USER\System\GameConfigStore\Children\008af23d-f4cc-4435-9422-b95fecf4b177]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,20,00,a2,aa,3f,c1,05,db,70,31,\
bd,ec,10,4b,f4,ab,b2,ac,2e,c9,ba,61,47,0e,aa,47,e3,5f,70,47,07,39,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,4c,4c,9b,b2,47,ed,fb,a2,88,82,18,48,\
b8,a5,ac,4c,17,9a,fe,56,04,2f,12,cb,bd,16,0f,50,44,13,17,2d,40,00,00,00,a3,\
7e,3e,f9,d3,ec,ec,8d,6e,0a,7c,38,10,ce,8f,ec,7d,d8,a9,5f,f8,e3,27,33,46,2e,\
46,c5,10,bc,9c,0c,67,98,69,e4,3b,9b,0a,5c,58,47,d7,56,6a,48,0d,4c,46,0f,f7,\
d0,91,dc,9e,59,cf,ab,f3,3e,18,85,2e,d3,40,00,00,00,62,68,d0,9d,a6,1a,bb,45,\
7e,96,06,4d,25,2a,d0,99,ba,4e,7c,6b,71,82,21,ed,28,d8,2b,2c,4c,88,af,2d,ad,\
a8,2f,f5,c8,2c,f4,09,17,4a,61,38,b3,6d,04,4d,c9,ed,79,3a,87,e1,1c,d9,1a,0f,\
69,1f,2d,25,84,2d
"GameDVR_GameGUID"="9f5addde-641b-47fd-83d4-96631cf0d47d"
"TitleId"="2121740635"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\00e51963-7a20-47e8-86dd-c5061773edad]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000013
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,c2,df,71,fc,b3,a8,c4,49,2d,1b,\
dc,38,4d,37,13,b1,a0,6d,de,c2,c9,8b,19,f2,f5,57,c6,30,1b,df,51,14,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,6b,9e,52,a7,5b,a1,3e,58,94,35,5a,aa,\
0d,b6,27,d6,43,46,7a,63,9c,15,00,ee,30,23,80,c2,a6,ca,92,dc,30,00,00,00,60,\
92,91,d8,35,a3,9f,16,c0,75,eb,96,f9,9c,5c,50,39,e3,d2,cc,a3,3d,c0,f5,57,54,\
20,87,aa,34,bd,5a,d7,17,a4,bf,87,30,47,20,e6,55,3a,ef,04,2b,a3,2c,40,00,00,\
00,81,26,2c,09,3a,fc,38,6b,84,49,38,4d,bd,b7,6b,8c,53,f7,6c,8e,8e,61,c2,f9,\
35,4c,f4,3a,be,84,ed,e3,8e,6b,39,13,0f,08,93,5e,58,af,b0,4d,d6,b7,c2,66,bb,\
2f,4d,21,ef,6c,5b,99,f7,07,a9,20,e0,a9,5f,6d
"GameDVR_GameGUID"="8bba1d53-2f6d-4275-b42d-61db4def7d51"
"TitleId"="1877036175"
"MatchedExeFullPath"="C:\\Users\\pc\\AppData\\Local\\Roblox\\Versions\\version-5a2a97e1d9794df1\\RobloxPlayerBeta.exe"
"LastAccessed"=hex(b):e0,cf,8b,ce,26,bf,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\04cc06c9-e532-4b12-a143-77fc1cb3283a]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,31,75,6b,bb,77,7d,47,64,89,41,\
c3,7e,b5,67,9e,b5,fa,ea,71,8a,d1,d3,3a,8d,ff,a7,cb,e1,03,7a,26,02,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,ce,5a,17,52,0c,29,8c,eb,4a,d2,69,c4,\
35,d6,83,03,e0,5e,8c,73,23,68,f3,60,58,a8,c8,57,9d,0f,2c,dc,20,00,00,00,22,\
f2,a3,5d,2e,25,ce,f6,c4,cf,ab,6d,18,96,42,c1,fa,0b,bb,04,a4,f0,1b,6f,26,61,\
3a,fc,23,8e,a3,95,40,00,00,00,4a,03,fe,73,5d,d3,56,be,81,db,a2,c8,c6,d1,4d,\
c1,f1,0a,e9,fe,b9,93,f3,75,c4,0f,fa,05,64,43,95,46,f8,3b,72,36,36,dc,ed,cc,\
68,1b,ee,33,73,f1,42,bf,14,b8,92,fc,6b,3b,fb,a9,97,64,89,3a,f1,a0,41,f1
"ExeParentDirectory"="Thunder"
"GameDVR_GameGUID"="0a7b1129-06ec-49b3-b3cb-7bcab1043941"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\0731122e-f429-4e74-8501-842bc3d88850]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,23,73,d4,cb,82,9b,8d,30,9a,4f,\
1b,f0,7c,66,36,4b,fa,41,37,8d,31,f6,f7,44,cc,9f,7f,23,ef,4e,10,31,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,a2,4b,64,be,0c,9b,8d,0f,16,cb,d9,94,\
63,9c,18,8f,34,44,95,1e,b6,c9,bf,cb,47,d8,b6,81,fa,47,b0,71,20,00,00,00,e3,\
8d,3f,b7,a2,42,7b,9c,cf,80,37,d5,a2,80,2d,56,bd,7e,89,8d,ff,b3,4e,45,77,19,\
5c,1e,3f,cf,86,b4,40,00,00,00,9e,b2,6b,0a,76,58,00,de,d0,f0,98,c8,7b,60,6b,\
bf,c9,b3,52,8b,e7,1f,bb,81,75,b8,2e,eb,5c,d6,77,38,ab,b1,dc,ac,d7,9a,32,49,\
33,f2,0a,78,51,73,2f,a4,c6,f1,a6,d6,b4,96,17,46,f4,47,b9,e9,fd,47,3a,55
"GameDVR_GameGUID"="5b0cb2d0-553f-4a2e-bc7a-337f2b827646"
"TitleId"="2040962988"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\0a956050-9628-4220-b516-808e497417c6]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,15,e6,02,d1,f4,22,85,53,8d,ac,\
f6,49,da,af,75,92,dc,a0,58,17,50,b9,10,72,96,e7,ab,c3,72,42,f0,6c,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,bb,38,1d,1c,a9,4e,32,65,2b,b7,0c,f9,\
95,c4,bb,d2,c1,9f,3f,49,d2,6f,13,e9,fc,93,37,eb,ef,47,71,69,40,00,00,00,19,\
90,f6,e1,85,8e,54,2b,42,2e,89,18,4e,9f,34,f2,31,2d,28,ed,1d,2e,97,23,36,03,\
59,e8,de,3a,c6,28,65,b0,0e,18,50,b3,c2,2c,7b,ce,07,68,d1,e4,a4,6b,c2,fe,73,\
3b,ef,6d,ec,93,f1,41,1d,96,99,ec,ef,0c,40,00,00,00,42,34,59,de,d3,60,71,4b,\
12,ef,18,93,9a,b1,30,e0,52,18,ca,d9,db,83,b9,75,d4,8d,43,f0,2e,50,70,2d,5e,\
72,a4,7c,23,cc,1a,63,84,24,7c,7e,13,e8,1e,48,37,05,24,88,32,24,f3,50,7b,28,\
25,47,c5,fd,eb,39
"GameDVR_GameGUID"="5415bfb2-a9e9-4a8c-bcbd-4d1d9a066d3b"
"TitleId"="1742142364"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\0f715c27-e790-401f-b0a4-58a636f50f48]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,a7,e4,ef,c9,44,92,c1,24,75,8d,\
b5,e8,d7,f5,b3,50,6a,9c,ad,55,30,9c,ec,d3,40,d1,80,9f,28,f6,6c,e4,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,fb,e1,3c,d1,ba,84,3a,29,5f,c8,ce,9f,\
1f,8d,24,c7,98,ac,4c,06,4d,59,b1,61,a1,2a,98,d1,33,dc,0a,6b,50,00,00,00,77,\
a4,6e,8a,c6,2e,d8,53,f6,ab,66,9b,72,0e,9d,b5,24,7d,6f,fe,4b,7f,4d,7b,11,43,\
ab,a4,53,e8,7b,72,56,3b,73,7d,48,1a,de,b4,8a,6b,2c,c7,11,4e,1b,14,c7,17,75,\
a5,5b,bd,54,90,a2,b8,04,71,50,69,89,52,57,e6,7c,00,9d,f4,48,96,a0,ac,43,00,\
54,c2,ab,c5,40,00,00,00,1c,39,f0,30,41,e1,72,83,c4,f3,b4,60,7d,4e,2e,86,f1,\
69,7d,4b,45,83,0c,74,13,d0,84,bf,c8,1c,6c,a5,47,0a,72,c8,47,37,c4,4b,65,90,\
28,76,3d,95,b9,e7,5c,b8,9a,78,e7,ea,ca,94,db,9e,da,a3,58,c3,1d,28
"GameDVR_GameGUID"="284ea1b3-f5e7-4133-b521-74a8d9ae997e"
"TitleId"="1820250788"
"MatchedExeFullPath"="E:\\fORTNITE\\Fortnite\\FortniteGame\\Binaries\\Win64\\FortniteClient-Win64-Shipping.exe"
"LastAccessed"=hex(b):20,bf,d7,14,ce,bf,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\11163eb8-ff97-4fc8-a4d1-1d46c9565579]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,64,5d,20,b0,02,99,a5,ec,1e,c1,\
ea,07,a8,c4,6f,f1,fc,ed,90,ef,ad,ac,97,b1,5f,12,7f,05,94,99,36,0c,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,ef,a2,58,78,be,8c,0e,92,88,64,cc,2e,\
6d,ea,1d,8e,e7,23,24,16,c6,13,1c,1e,8f,09,b7,6c,9a,02,3c,f7,20,00,00,00,1b,\
ff,e4,ca,fc,21,b9,3e,79,b6,d9,6b,2c,0b,1c,4c,4c,47,07,c7,b5,57,0e,ea,44,9a,\
ba,66,a9,99,51,f4,40,00,00,00,47,b0,cc,43,98,7e,e5,63,1e,bd,08,04,1e,cc,e1,\
ae,06,71,c2,47,c6,d9,a0,ef,54,6d,45,a6,f5,49,02,7b,7e,9a,58,02,71,27,8a,53,\
86,db,42,c8,17,c2,ad,ac,9b,9c,5f,74,49,74,a6,7b,4f,97,52,ec,da,3f,95,59
"ExeParentDirectory"="assettocorsa"
"GameDVR_GameGUID"="504b718c-a940-4c74-a033-a1a8ae2214b7"
"TitleId"="1732322725"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\241e0838-282a-453c-bf0c-b453987e7fa3]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,81,2f,71,d4,0c,69,94,2a,d2,80,\
16,87,68,3e,9b,9f,ea,1a,51,b8,c5,18,e2,fa,9b,2d,02,8b,b4,55,a4,d4,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,cb,fe,4a,ae,72,d0,69,e4,3f,20,f3,36,\
24,2f,a5,3a,9d,d7,c5,0c,13,73,49,bb,22,ef,32,76,4c,61,a4,63,30,00,00,00,ad,\
8c,bc,9f,66,d1,94,70,cd,21,55,69,02,c3,84,e1,62,35,b6,af,c0,0f,8b,77,b9,41,\
71,d4,11,96,23,92,e5,27,21,98,38,c2,0f,77,fd,f5,0d,48,13,4e,b5,b7,40,00,00,\
00,a2,09,40,b6,4d,97,a2,d5,8c,89,04,f5,1e,86,95,b6,ca,bf,86,f9,a9,8f,c0,22,\
99,96,20,e1,12,64,c5,2d,27,2e,84,55,33,f8,b5,2f,f0,e5,2b,57,33,18,5e,c9,7d,\
dc,d8,a1,63,12,60,75,e7,c2,a5,e2,90,25,3a,ba
"GameDVR_GameGUID"="2605801a-c442-492c-8f9e-b274878c9c77"
"TitleId"="1918679142"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\326c86ae-f3a9-4980-8b9e-1da326311c76]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,5a,dc,e9,ed,51,58,60,46,e8,25,\
f8,ba,e3,d8,4a,da,21,7b,df,a0,3a,02,78,25,44,ac,b8,9b,4f,07,cf,14,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,0d,0d,1c,54,87,4f,ba,90,0b,f7,e8,c3,\
d3,c6,97,ca,af,75,a6,9f,2a,fd,41,65,4d,57,92,db,cf,61,ee,06,40,00,00,00,ab,\
ce,9f,28,77,fd,f8,00,7c,1b,84,8f,e0,f3,8f,5b,fb,2c,85,bd,c1,2c,6a,b0,b9,cc,\
e2,02,75,94,79,5a,8f,cf,b9,83,86,8a,a0,03,b0,c7,b4,5c,7b,1a,63,e8,72,e1,33,\
6d,8c,d1,5f,7e,f6,53,7e,8b,d8,64,ee,82,40,00,00,00,1b,fb,00,9a,1c,fe,65,51,\
43,4f,a5,37,17,ac,b6,de,d8,b8,0c,45,54,3c,f7,a4,2a,b4,04,ac,d1,e1,47,bd,9d,\
df,6c,47,de,ab,6b,02,19,33,1f,f1,0c,93,c9,8e,bd,5a,d3,e8,91,32,b2,db,00,95,\
46,6a,c7,97,f3,83
"GameDVR_GameGUID"="af3f11bd-4a4a-4e7f-915b-42f92384577f"
"TitleId"="1698925306"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\3409f26f-7bae-42a6-9c74-99c544ce5476]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,3f,f4,d0,3d,13,30,e9,cf,0d,9a,\
7b,9d,a7,81,7b,29,0e,7f,ae,63,86,96,60,68,ed,5c,c0,f4,47,b4,cf,f4,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,25,1e,6b,7f,b9,61,c8,e8,20,3b,ea,b9,\
55,28,f6,b2,c3,9c,e0,b0,ea,3b,38,d4,54,9f,a3,46,fb,82,f8,90,30,00,00,00,23,\
ab,a1,00,17,42,4b,c0,5f,ac,79,b2,88,29,99,3e,7c,17,b5,a2,f8,c9,03,fb,43,f4,\
d9,b7,f3,9a,a4,db,c2,95,33,1d,4d,e9,a4,6a,d9,da,58,0d,2a,f5,bc,5b,40,00,00,\
00,73,cd,8d,5a,b4,f8,ca,fa,23,2a,49,c6,39,81,44,52,a4,e4,e2,89,3f,b6,3a,cd,\
be,96,5b,97,e8,b2,e8,7b,e7,04,7a,2d,98,60,ff,1c,d5,f4,80,4f,b6,75,55,ec,97,\
81,bc,fe,a6,56,a5,f5,4a,e6,ea,4a,ca,1c,a6,fb
"GameDVR_GameGUID"="3d991043-7128-48fd-936e-618d3e900873"
"TitleId"="1918679142"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\37578440-a809-44bd-88fe-2f00932796b4]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,3e,56,91,15,f1,e2,19,b6,cb,1a,\
de,76,d0,55,c7,75,fc,50,8e,a6,92,60,a2,5c,cc,35,20,e8,c5,c0,bc,30,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,c1,67,45,aa,95,af,88,75,3a,c4,8c,3f,\
1f,2c,41,fd,9f,ee,2a,f7,d4,cb,17,15,5b,0b,3f,2b,40,e0,04,e1,30,00,00,00,43,\
a0,4b,70,d8,bc,03,af,97,ba,93,2e,2e,05,13,88,51,f1,68,e4,08,42,22,e1,a4,da,\
bc,5e,b6,6b,41,42,5d,85,2d,35,8a,db,4c,cc,9b,2d,92,3b,49,f9,3f,5b,40,00,00,\
00,a5,29,c6,e9,e7,08,66,2c,c2,fb,ea,67,08,57,57,90,4a,e6,52,ae,10,2e,18,44,\
79,f9,65,44,78,fc,ec,6e,60,eb,64,b7,3f,16,92,7b,a3,5e,41,95,6c,1e,97,e2,78,\
bf,cb,26,d6,9d,f0,10,64,90,e2,46,87,4f,90,22
"GameDVR_GameGUID"="44948889-a2f7-4479-a57f-918e58b10519"
"TitleId"="1918679142"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\37b0bb90-816e-4853-b8e4-b943541b2f03]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,67,27,cd,83,40,f8,8c,c8,db,83,\
3d,57,d6,75,42,56,5d,c1,40,54,fd,ed,e0,61,21,d8,84,82,24,6c,fe,56,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,b5,98,dd,f3,a6,92,89,27,d0,b2,4f,37,\
a6,15,2b,83,64,8f,34,13,91,f4,61,c6,16,e8,8f,f2,1f,b8,36,e0,20,00,00,00,1e,\
b8,5b,cb,06,89,c0,29,f5,35,29,64,cb,e3,27,b0,ca,aa,d7,e1,85,04,22,29,29,6d,\
d7,da,33,77,ac,93,40,00,00,00,91,bf,ff,be,25,44,1e,f2,01,a0,06,1c,2d,a0,71,\
b4,b0,ae,80,bf,d2,ce,19,3e,e3,b9,1e,b8,8f,0b,ff,44,3a,1a,ab,f1,b1,0b,ce,d5,\
bc,8f,f7,e0,63,44,76,85,fb,5e,7a,00,97,7c,ce,b5,1a,d7,33,db,20,c3,57,5d
"ExeParentDirectory"="Grand Theft Auto V"
"GameDVR_GameGUID"="07637478-a718-4c3b-85f1-4208550bf9ed"
"TitleId"="1862446374"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\3f43ed16-df66-4422-abd8-925b1350bb64]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,15,0f,1a,d2,ab,13,3c,5e,6a,ca,\
fd,8c,25,31,de,42,a1,8e,75,c2,80,fa,12,a3,9a,8f,7c,3d,09,48,84,93,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,da,79,e0,2a,24,6b,1c,cc,c6,44,92,60,\
fa,07,16,b3,73,08,65,a5,c8,dd,d9,cf,1b,bd,af,16,75,41,30,e7,30,00,00,00,60,\
c9,8c,0f,c3,21,e4,f8,20,33,8a,cd,13,dd,fb,63,26,c5,64,6f,f3,6a,41,aa,ae,01,\
0c,f0,af,54,88,33,b3,1a,a5,9e,07,8a,4b,32,2d,cc,b1,cd,1e,00,72,02,40,00,00,\
00,60,6e,a7,17,37,e8,d9,7c,43,1b,0e,9b,f4,80,bf,bb,34,e0,82,7d,4d,3d,86,43,\
a4,7c,8a,fa,a1,5d,66,6b,87,20,75,d3,6c,50,3f,fb,a9,29,8d,bc,25,b3,88,cc,66,\
fc,c3,fb,e1,62,14,63,59,31,64,aa,78,65,d9,7c
"GameDVR_GameGUID"="beadb662-4a97-4790-bc99-33f001c314ec"
"TitleId"="2119592325"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\40406386-7428-4521-a6f9-2f0581086ddf]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,cd,7c,d5,96,65,df,ee,a1,68,74,\
a8,8d,5a,d6,5f,cc,29,54,68,93,92,e0,2b,d2,ea,0d,92,b5,b5,1f,03,35,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,72,29,20,51,0f,52,b5,bc,5e,af,06,28,\
05,39,bf,46,c0,f7,f3,41,e3,22,87,44,6e,8a,a0,43,c2,04,4a,6d,20,00,00,00,dd,\
0c,5b,f7,9e,c5,8f,80,e8,53,f5,f9,e7,37,92,b9,d4,88,96,ef,41,38,a2,34,5f,33,\
15,e6,2f,e3,d7,b6,40,00,00,00,73,e6,da,8d,d7,4e,26,3b,9b,26,63,03,bf,18,25,\
15,4e,20,f3,d5,d2,73,1e,59,9c,a8,11,2e,7d,63,f6,05,7a,54,a4,15,89,0c,a3,1e,\
9f,64,a7,07,28,2a,48,f3,cb,5a,7a,05,ba,30,52,d1,8f,65,d9,f4,54,36,74,76
"GameDVR_GameGUID"="7cf934d6-536b-413b-84bf-519f36dc9a65"
"TitleId"="2119592325"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\405c1cab-14ed-4e85-97a8-ec71126aa2e7]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,6b,36,91,f3,16,6e,b2,99,24,49,\
c4,1c,62,75,06,77,a0,ce,74,5f,9e,a4,b5,7c,38,87,fe,d0,a1,eb,15,54,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,d6,fb,78,7a,1b,b3,f8,90,17,42,5f,bc,\
de,ab,56,08,ae,d2,c4,77,df,8b,20,60,0b,89,6f,f4,2f,93,22,ad,20,00,00,00,43,\
f6,66,e5,37,79,18,e1,53,35,c0,b1,63,eb,b2,f4,d3,08,27,ed,df,00,11,b6,e6,f4,\
fb,e6,45,4d,f9,29,40,00,00,00,a9,63,6d,c8,42,c8,36,90,6f,d6,af,8d,db,f2,11,\
c1,e4,13,c5,7f,24,f2,d2,b7,f8,00,4b,0b,80,65,93,72,18,45,b3,6c,8e,02,5d,8e,\
e9,a4,33,6f,e5,f0,d7,e3,1d,d6,ac,4b,b3,f1,92,72,e9,a9,59,99,d8,d2,17,0d
"GameDVR_GameGUID"="5f16f138-9b89-48cd-a1b4-935f9e07e014"
"TitleId"="2089711717"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\40aa1199-5ca0-4ee6-be13-eb5009af6889]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,e2,46,69,13,6e,4e,c3,ce,30,12,\
66,69,66,9a,f8,bb,66,4d,00,44,c0,3b,ef,b0,93,85,3f,da,19,26,c3,85,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,b7,86,38,3e,b0,5f,67,1e,60,3d,94,b4,\
be,38,ef,d1,32,09,95,14,f7,ad,56,01,eb,63,20,2d,39,58,f4,41,20,00,00,00,b4,\
7a,62,6f,2f,56,4d,de,2e,ab,78,10,24,08,40,a2,4d,4b,a5,4e,5b,99,1f,25,17,40,\
95,1d,1b,6c,2c,67,40,00,00,00,51,b7,87,5f,0b,d1,00,4e,8c,d9,d8,7a,ed,5c,dd,\
09,82,83,57,74,5d,0a,1d,35,f7,81,a1,7d,2e,17,67,82,f6,48,ed,02,40,e3,ee,47,\
3b,39,af,2e,9f,7e,6f,b0,25,e7,92,07,25,ca,cb,ae,8f,1c,93,52,7b,98,26,68
"GameDVR_GameGUID"="278317db-52b0-4257-9ddd-17e942d6f851"
"TitleId"="2040962988"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\40e28932-7ee7-404d-b262-77693fb6f631]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,95,03,cf,ca,9d,3a,f2,29,c7,db,\
1a,bb,2a,ef,96,97,f9,15,c8,07,26,cf,5d,6d,a0,14,b2,cf,d7,2a,27,59,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,16,e8,d2,06,5a,5c,f8,4c,20,9b,05,8e,\
fb,16,c5,92,e6,53,f5,56,0d,ca,d8,7b,f2,11,0d,67,2b,00,34,8c,30,00,00,00,19,\
60,cf,2d,94,a6,af,d3,a8,fa,17,e8,ed,77,eb,4a,3b,57,3f,ed,6a,a4,9b,b8,0d,85,\
12,98,33,0e,ec,cd,98,c7,e0,c6,f2,92,93,4d,59,9e,0d,cd,74,74,27,79,40,00,00,\
00,8d,5b,77,e4,47,5e,93,74,70,2d,b2,63,20,1d,60,2e,2b,e3,1b,e2,3e,58,a8,c8,\
ab,3b,1c,4a,af,05,72,9b,09,c9,0b,73,2b,c0,f9,95,95,a6,05,13,f0,c8,6d,b9,4a,\
38,cc,84,65,d5,31,29,90,eb,79,b9,37,59,27,a2
"GameDVR_GameGUID"="13a903e3-8525-4b48-b0c2-ad91ed8432be"
"TitleId"="1877036175"
"MatchedExeFullPath"="C:\\Users\\pc\\AppData\\Local\\Roblox\\Versions\\version-096c60fcfa5e4ca2\\RobloxStudioBeta.exe"
"LastAccessed"=hex(b):a0,ba,ca,fe,0c,bf,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\43c24735-989f-477c-8ced-dc705c0a60aa]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,3c,78,ce,f4,c4,a5,8d,9b,9c,4a,\
5c,23,b3,a7,82,69,ed,35,a9,dd,1b,40,cb,08,54,d9,ef,c1,3c,c4,eb,6c,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,0f,eb,29,0b,f8,6a,c9,83,9e,b4,fc,8f,\
de,a0,72,bf,92,9b,2e,c9,4e,d4,25,0d,95,37,31,3d,20,e8,1b,06,30,00,00,00,97,\
3b,d0,f3,2e,15,68,42,7a,f9,62,be,0e,03,57,45,8a,d3,51,23,e4,3a,a7,a5,c9,c4,\
64,90,cc,dd,b4,95,af,57,e6,70,08,a6,f3,56,66,f2,e3,22,e2,8c,ff,83,40,00,00,\
00,49,b6,aa,6d,8f,a7,06,25,eb,9e,85,b5,44,b7,bd,15,24,d0,cf,56,f8,4d,0e,04,\
d8,fa,a5,de,1b,5b,06,1f,83,b0,aa,e0,07,a8,00,d7,94,aa,cd,fc,41,c6,1c,88,e2,\
a7,96,2b,1b,77,86,4a,4c,29,c2,83,c9,51,77,90
"GameDVR_GameGUID"="d462329a-a831-42b3-809b-6ce39187b369"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\456db1d1-339b-4a77-8b0b-6795a1699345]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,0d,18,75,b7,5d,6b,67,03,95,6c,\
46,16,15,dd,90,c7,a7,32,1e,3e,bf,8d,41,11,f2,cd,7f,74,82,f8,4c,c0,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,02,9c,84,19,59,99,48,81,22,08,17,cd,\
11,4f,e5,6b,6c,86,73,bf,75,fe,02,2a,86,8d,4e,f9,dd,11,f5,b5,10,00,00,00,37,\
d4,e2,a0,71,53,27,25,b3,5f,23,5b,76,5a,37,d4,40,00,00,00,08,ac,48,aa,6f,2d,\
dc,31,15,96,3e,b1,e3,40,9a,1f,29,ea,e7,4b,d1,b2,86,15,10,0b,5c,a4,3a,5e,3c,\
7a,ae,a8,45,2a,2a,23,21,c0,8e,5b,fc,03,12,4f,45,b7,01,b0,c6,af,5f,1c,03,e7,\
08,25,02,89,29,3f,8c,32
"ExeParentDirectory"="Assetto Corsa"
"GameDVR_GameGUID"="ad9f3b82-3ec2-4d93-93d5-23bdbc2374ab"
"TitleId"="1732322725"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\46fc0979-b6fb-4de8-b90d-253cc753d244]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,d5,2a,46,f3,83,dc,69,1a,1a,0d,\
8a,21,a1,6a,05,93,37,ca,b5,8f,9e,4f,e3,b8,2f,cd,b8,90,b6,74,d3,30,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,b9,79,3a,1f,3a,58,14,04,cc,58,a2,ab,\
8a,1f,bf,4b,54,71,ce,05,d3,55,53,50,a3,37,4b,b9,02,3c,50,8f,20,00,00,00,9b,\
9e,9b,01,2e,9d,73,ea,05,da,c5,32,15,4b,71,8c,50,a6,fa,fc,1d,2b,3f,d3,d9,9f,\
82,da,b9,7a,18,4a,40,00,00,00,65,24,33,42,2f,75,5e,b1,ac,79,d8,fb,d4,e4,bb,\
11,2a,30,5f,39,bf,5c,c2,9e,1e,96,ed,dd,e2,22,96,86,68,88,5a,8c,45,71,97,db,\
56,f9,99,59,9d,98,f8,5b,34,d3,41,c7,d8,d8,db,8c,50,76,26,c2,dc,86,f8,c3
"GameDVR_GameGUID"="15c6ac82-6f25-4f79-8ff1-a7c777f1a7db"
"TitleId"="1714452188"
"MatchedExeFullPath"="E:\\Spellbreak\\Spellbreak\\g3\\Binaries\\Win64\\Spellbreak.exe"
"LastAccessed"=hex(b):00,f0,f9,95,c6,86,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\4787b2ac-d4ec-45b8-818a-bfaa6ff7daa3]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,e0,cc,8d,ca,85,35,c1,fa,2a,ef,\
2c,c8,17,39,53,f5,14,cb,eb,4f,0e,35,9e,f4,30,88,c4,53,0d,1a,f2,48,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,f2,e4,a0,7a,4e,10,f9,02,c4,53,0b,7a,\
9a,7d,12,e5,9f,7b,d5,ad,fa,f5,42,81,72,a9,60,1b,be,a8,26,f0,20,00,00,00,45,\
18,39,57,00,d5,91,04,c9,2c,de,98,15,30,e1,c1,33,60,01,97,f4,cc,6e,43,9b,c2,\
bf,aa,d8,8e,fe,3b,40,00,00,00,45,83,aa,df,35,fe,87,d0,1d,14,3e,41,30,c0,a4,\
eb,88,9e,e8,49,e2,5c,da,7e,a0,07,6b,c3,ee,ae,e9,d5,5e,86,42,0b,48,e7,52,eb,\
35,b8,bc,72,ef,93,61,20,fe,75,8c,77,4f,05,67,1c,81,d2,c2,12,32,a9,7d,c9
"GameDVR_GameGUID"="224d89df-2628-4203-bf5c-11c62dcbe9f2"
"TitleId"="1667877464"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\4f561632-47cd-4c2b-93a9-e1da865f03ba]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,b6,99,14,35,44,5b,50,58,67,cd,\
d1,06,bb,47,6b,74,2f,92,bc,75,5e,eb,63,4d,6f,28,85,e2,b5,e7,ef,bd,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,a4,6e,75,1b,69,0f,47,64,56,66,af,d1,\
7e,84,a8,8f,7a,b4,c0,76,59,29,c5,10,ac,6f,7f,50,17,fc,f9,5e,30,00,00,00,dd,\
7b,2c,c9,2e,57,41,9c,4e,2d,ae,72,e6,8e,cb,c7,98,2b,85,a9,14,2b,aa,a4,60,8f,\
e1,7c,6b,07,c1,75,d6,38,e6,bd,72,f2,0f,7d,78,32,c3,c2,99,0b,23,22,40,00,00,\
00,42,44,d7,8b,9a,d6,2b,36,24,67,8a,3d,99,91,01,46,7c,25,ab,3d,1b,6d,91,e8,\
e2,23,6c,a3,0d,9b,08,cc,92,8f,50,79,c8,75,b8,c5,d9,0b,d4,ea,2f,13,21,bf,f8,\
97,c7,2c,04,4b,8c,21,3e,8e,5f,92,99,2c,25,4f
"GameDVR_GameGUID"="88c24bf8-d1db-48be-b6f7-684ab89c9194"
"TitleId"="1698925306"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\50ef2ba5-7013-4e09-917e-2e77e806b4d4]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,f7,13,a2,6d,35,8d,22,0a,63,f4,\
72,dc,57,e4,90,30,4b,00,97,aa,9f,1b,ef,b7,c8,d1,c1,f7,eb,f9,5c,bf,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,33,60,49,e4,b7,a1,94,d1,8a,9a,4b,a3,\
a5,74,cb,4c,4b,d6,f7,c4,42,f5,1e,62,5b,62,cf,de,a5,84,b4,9c,30,00,00,00,ca,\
81,1d,73,3d,f6,73,96,3f,08,02,62,51,cc,d8,d0,ba,53,4d,29,37,89,95,cc,2b,be,\
92,10,80,9b,85,74,8c,df,af,e5,96,8b,a3,1b,9d,a6,80,2e,f6,39,08,a0,40,00,00,\
00,f7,44,87,69,e6,a4,c6,32,6a,17,5f,b1,2a,d8,bd,9d,a7,28,d5,2c,2b,36,65,52,\
f6,7c,9f,d5,f3,75,d2,4e,90,ab,d4,7a,2a,e5,10,cc,4c,83,74,af,9d,33,ff,5e,fd,\
b2,b8,5b,ff,28,09,8f,95,18,0c,d1,c1,25,e1,18
"GameDVR_GameGUID"="1b71cdd5-d687-414b-b729-64a8e30f9cab"
"TitleId"="1801033410"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\5bb62464-0905-4a39-b7e4-317edb6f0b33]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,b2,b4,6a,f9,1c,16,9e,0a,78,97,\
66,3e,cd,a4,8b,ae,a3,ea,f1,86,2f,05,79,13,4f,be,e5,0a,fc,2a,a1,49,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,62,de,0b,13,0e,70,14,30,94,1d,a2,8f,\
61,e6,6d,e4,4d,07,48,5f,fc,ad,4a,70,fd,9e,2d,79,c2,7c,4c,29,40,00,00,00,bf,\
e5,3e,0e,66,7c,6b,69,ae,c5,e4,54,a4,41,76,48,d1,ba,9c,9d,a5,d9,65,3c,0c,20,\
00,a0,b8,27,5c,21,d0,bd,93,8b,cc,32,02,d9,29,19,0c,43,a0,03,12,15,1d,79,4a,\
6f,49,8d,6d,da,6b,35,9a,bb,fa,07,1d,37,40,00,00,00,c2,67,2e,e3,a9,91,cf,d9,\
bf,a2,c0,69,b5,0e,c1,0d,02,ad,25,d6,6f,7f,f3,1d,c8,41,85,4a,69,b8,2a,31,e0,\
45,52,13,ad,8a,a7,f1,47,c3,64,c4,c8,e8,04,04,c5,ca,0b,c9,18,4f,b8,8d,b2,40,\
bc,57,00,8d,b4,6c
"GameDVR_GameGUID"="7eb831fc-81c0-411b-bff0-176f7cda799d"
"TitleId"="2066051089"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\5cdff6ad-e34e-4062-877b-3fe82e7c8949]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,ee,6e,08,92,7d,02,ad,cc,f7,e2,\
31,fc,8d,8e,c9,e0,52,da,e8,3d,6e,15,92,10,4b,69,c6,fe,1a,40,d7,c4,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,86,26,aa,0a,4e,3f,f3,7e,80,52,72,25,\
68,ad,03,64,c5,45,f5,4a,13,bc,92,58,ed,4c,81,05,9a,41,00,3a,20,00,00,00,b3,\
3e,c8,01,13,dc,88,1d,4f,ce,21,73,76,40,1d,99,83,ba,d5,f8,a0,a1,86,5b,7f,81,\
8f,13,d9,d5,a0,ec,40,00,00,00,e5,7c,f4,f4,83,c0,62,de,53,7d,8c,48,b3,a4,3a,\
a1,80,c4,46,fa,55,b6,39,b2,e3,71,bd,a5,12,b6,92,8a,14,f6,05,db,a5,8f,39,5b,\
51,df,55,06,25,3c,62,68,24,87,0d,f3,90,e8,ca,73,6b,b7,93,d4,e4,ca,a1,16
"GameDVR_GameGUID"="9df8835d-3764-44af-ab79-eb100bd97425"
"TitleId"="1621796646"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\5d93a35e-310b-4e76-8967-b97ae66016a2]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,82,89,69,ff,be,7b,fd,5f,26,06,\
9e,50,67,1e,8b,b9,5b,55,1c,38,7f,ca,d0,84,aa,15,f1,16,9f,38,2b,8f,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,63,5a,02,8f,f1,48,69,87,50,e1,6b,d3,\
a1,49,62,78,ae,c9,d1,57,83,0f,b3,3c,67,e0,47,e0,a3,5d,48,af,20,00,00,00,21,\
b6,e1,21,70,91,b2,3b,f6,f3,27,62,d2,ca,16,47,5b,71,80,aa,16,3d,d3,18,59,3d,\
ad,7d,ed,9a,56,32,40,00,00,00,97,d0,41,17,06,c2,09,f9,e9,fb,7d,1b,99,56,40,\
04,2f,86,e7,9f,b0,ff,cc,6a,e6,61,e2,a7,13,b6,10,78,a3,c4,9e,30,2f,67,54,ae,\
c5,c5,3a,ec,95,26,fa,bb,53,dd,c2,28,49,58,21,c6,5a,36,bf,86,42,64,b8,71
"ExeParentDirectory"="Assetto Corsa"
"GameDVR_GameGUID"="6cfa5815-25cf-4dee-b61c-ac4c88b53778"
"TitleId"="1732322725"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\6053cdf7-6d52-42c8-9967-a29a542b7ae1]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,e2,72,6d,36,d4,db,62,31,6e,89,\
db,e8,6d,07,13,af,a3,78,6f,74,81,cb,30,07,4f,a4,a5,fe,dc,e7,0d,b8,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,74,10,aa,4e,3b,39,43,aa,da,0f,15,ae,\
6c,18,cc,e1,78,c0,f4,b9,05,c7,d6,ee,77,78,62,bb,77,93,9e,4d,20,00,00,00,26,\
5f,6b,0b,f5,96,db,b2,10,c3,3d,e5,36,bc,88,96,0c,1c,bb,7c,d5,a6,bf,bd,86,93,\
dd,00,3f,12,79,d5,40,00,00,00,90,c4,3e,7c,de,ff,56,4e,a0,53,c0,a9,04,55,b6,\
2d,5f,d9,56,bd,10,5b,1e,40,b7,d7,bf,0e,02,9c,0e,2c,50,2c,bb,50,45,f2,af,ea,\
90,9d,2d,d6,70,81,37,49,7d,0e,94,39,42,3e,bc,a7,35,f7,73,27,dd,51,06,e8
"GameDVR_GameGUID"="a78ce068-6b2c-4b51-9305-229303a1512a"
"TitleId"="1644611974"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\70c3139d-9c99-4038-ad15-1d6bf312fb15]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,9a,dc,d8,ab,d6,33,8e,24,12,ed,\
2f,5d,c0,b1,84,2d,a1,97,2b,40,ea,9b,4a,51,2e,31,81,50,85,16,10,68,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,aa,ff,27,b0,59,cf,8a,88,ba,4b,0f,a5,\
a4,1c,20,95,71,21,51,da,88,0d,63,3a,ac,62,e6,4f,99,ce,55,75,30,00,00,00,46,\
17,b5,9d,8b,d8,bc,ba,1c,66,92,50,0f,67,47,54,7d,58,98,70,2d,f8,c9,ff,e3,10,\
31,b5,8b,36,16,19,48,48,4e,a4,7b,d8,2b,79,3b,d4,f9,f5,12,03,6f,c3,40,00,00,\
00,3a,13,b8,9f,78,7d,72,a9,23,7c,6e,6f,20,97,b9,45,0a,2e,64,a0,5a,95,e1,7e,\
76,0b,42,2a,b5,42,e9,fd,0a,5b,e3,13,63,4d,5d,02,89,b3,e4,c7,51,cb,85,9c,1a,\
e6,f2,74,c7,dd,66,74,3f,7d,e9,a5,52,eb,a8,90
"GameDVR_GameGUID"="6b15dfa7-66e4-4a62-a748-05cb4dadf867"
"TitleId"="1787008472"
"MatchedExeFullPath"="E:\\COD WarZone\\Call of Duty Modern Warfare\\ModernWarfare.exe"
"LastAccessed"=hex(b):70,a6,64,fa,4d,b4,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\70df813c-6159-4d82-b679-3b79c7aa6cb1]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,cc,a3,8c,1d,96,5f,79,d7,22,80,\
59,58,e9,d9,4a,1f,2c,0b,08,db,01,7c,48,28,1a,12,d2,ec,3d,e4,49,9b,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,01,e7,42,7d,e7,0e,c7,0c,35,44,16,5a,\
4a,42,a9,ad,b6,e8,fa,a8,1d,70,3d,f1,ef,68,0b,9f,99,f4,b1,c1,10,00,00,00,fe,\
a1,a4,d6,3f,60,4f,88,f1,8c,20,10,82,f7,5c,dd,40,00,00,00,fa,49,fd,7e,c1,ee,\
d8,29,4f,56,96,f3,76,98,51,21,0c,96,5c,b0,1b,14,9a,31,a5,37,95,4c,a8,a2,33,\
b9,7c,13,99,55,ab,66,bc,39,f7,5a,68,09,be,a6,8d,a8,9b,68,64,79,be,9c,81,2d,\
3f,13,89,6e,ae,d1,9e,a7
"ExeParentDirectory"="Red Faction Guerrilla"
"GameDVR_GameGUID"="3e70fc1f-7916-4016-ac8e-b59dddbff6e9"
"TitleId"="1995066354"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\73400fc2-5ae9-4532-86dd-29d81bae1132]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,d4,b1,cf,ac,32,2a,96,36,b8,98,\
bc,9e,93,98,d9,27,0a,70,61,13,a5,20,ff,21,ec,30,92,ce,51,b9,48,87,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,0b,a3,72,33,36,a0,a1,5c,08,91,60,28,\
34,cc,cf,d9,91,0e,db,9f,23,a5,b2,ff,1d,2a,37,da,ad,82,34,68,30,00,00,00,a9,\
f4,6a,d7,e9,99,c2,9c,e0,fa,f5,9d,1d,1e,09,3e,0a,ae,55,00,a7,1d,56,af,a6,1d,\
24,6d,99,4d,1a,8f,79,fb,94,d7,d8,bc,73,4b,fe,13,f6,98,05,bb,96,d4,40,00,00,\
00,8f,e6,d5,31,cc,e3,a3,fd,e7,b9,6b,33,0b,7f,a7,b8,3a,53,25,0a,66,7e,ff,07,\
c5,96,f1,08,22,b0,d9,c0,4c,b1,92,d6,fe,1c,9a,ae,1f,88,a5,e9,35,2c,8b,76,27,\
7e,12,25,c9,4d,7d,5f,a2,3a,21,88,3a,06,44,08
"GameDVR_GameGUID"="ba8cb5ec-5912-4170-87bb-ba98605e8318"
"TitleId"="1956642556"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,62,00,61,00,74,00,74,00,6c,00,65,00,2e,\
00,6e,00,65,00,74,00,2e,00,65,00,78,00,65,00,7c,00,38,00,00,00,62,00,61,00,\
74,00,74,00,6c,00,65,00,2e,00,6e,00,65,00,74,00,20,00,68,00,65,00,6c,00,70,\
00,65,00,72,00,2e,00,65,00,78,00,65,00,7c,00,38,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\77b4d6e3-85d7-4ae9-ad9b-52b42f98077f]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,e3,65,c2,de,db,7a,a8,00,48,13,\
9c,27,53,ce,5d,73,38,91,e7,f8,88,99,29,eb,77,40,5d,a3,4b,07,46,48,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,3d,54,23,fc,55,c3,89,1e,0a,f4,98,bd,\
03,9d,63,75,ac,49,c4,26,c3,ef,ae,53,7e,f3,56,3a,d0,95,59,3c,30,00,00,00,20,\
92,d1,96,9e,d4,cc,c6,e6,08,e2,8c,f1,03,59,96,ca,84,1b,ed,9f,88,d7,85,02,23,\
f8,b2,36,f3,33,84,73,5d,b1,85,fa,7d,9d,86,87,39,c1,7b,8e,53,b9,c8,40,00,00,\
00,ca,c5,5f,a6,ee,cb,c3,1b,2d,0a,c5,77,2e,e8,78,20,50,f6,02,7a,08,04,15,82,\
50,84,c0,cc,07,24,db,1f,55,13,b8,1e,d0,f2,2c,d0,10,4f,88,90,55,6b,b6,42,2c,\
a9,79,56,01,60,9a,ae,5d,c7,be,aa,5a,a6,a7,35
"GameDVR_GameGUID"="53080e08-49fb-4312-9e1f-8fc378ea09a1"
"TitleId"="2089711717"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\7c6c29ed-6638-4b39-87c9-90749f34fd0f]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,b0,84,d4,37,97,3d,f5,86,ee,fe,\
73,f0,40,fa,43,34,8e,c6,4e,b5,94,26,39,fa,eb,12,94,3e,a9,c8,ce,1f,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,6a,d7,9d,82,12,28,98,19,d5,09,4a,34,\
26,dc,46,b7,1f,34,cd,4d,6f,26,2e,c9,24,af,38,5b,20,b9,dd,6f,20,00,00,00,28,\
fa,4c,b3,ea,12,41,4e,2b,8b,84,2a,28,7b,8f,1f,0d,1a,e2,3f,c0,b0,ca,a0,f9,d2,\
c2,48,ad,60,fa,cf,40,00,00,00,58,c2,cc,e7,d4,c0,b4,a2,87,46,e1,3f,d7,65,59,\
8b,0c,dd,ae,1b,8b,86,9a,21,70,c7,44,21,0a,65,01,6e,52,92,92,00,88,97,9d,ef,\
db,6d,e4,b2,d2,eb,ea,ce,65,75,01,39,b8,9e,9f,66,fb,a8,b7,43,b4,6c,c5,d2
"GameDVR_GameGUID"="c9a828a1-eacc-46a4-9372-6a5c7dd052ae"
"TitleId"="1862446374"
"MatchedExeFullPath"="C:\\Users\\pc\\AppData\\Local\\FiveM\\FiveM.exe"
"LastAccessed"=hex(b):f0,2e,d6,9f,20,a9,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\88bba3e3-6149-435f-8f03-2e763a6b28e5]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,bb,f0,b7,49,45,78,61,b6,01,1e,\
09,5a,8a,bd,59,1a,cc,81,69,e9,50,db,ef,da,3f,14,b3,a4,a2,d8,fb,c9,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,ba,63,f5,7d,76,9a,7e,56,5a,ea,5c,81,\
0b,85,1c,1b,cb,4b,33,9e,af,33,eb,a8,dc,11,27,44,e2,ca,f6,cb,10,00,00,00,e5,\
b4,fe,bb,ae,83,76,7b,91,97,f4,00,0c,d4,ce,b7,40,00,00,00,fc,6b,cc,00,8b,b5,\
11,c3,b7,9d,17,b7,d0,c5,d1,7f,54,6e,7e,1c,a7,e6,86,89,7f,d2,6c,19,8f,ef,d5,\
90,b8,07,d6,2d,a4,34,36,ad,1b,1b,d1,fb,ed,98,02,59,c4,3c,33,d6,77,df,11,53,\
c8,7d,ec,c2,92,06,23,71
"ExeParentDirectory"="Football Manager 2018"
"GameDVR_GameGUID"="df224822-4e38-4db8-b348-1a74168570ea"
"TitleId"="1621910926"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\89012e6d-35ec-4578-bdbd-1e9c2f91d561]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,8d,cf,91,b9,fe,d0,df,b9,4f,76,\
25,e5,98,fb,50,df,c4,71,1f,f0,a3,f8,8a,fe,ba,93,d7,d3,a3,9a,f2,4f,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,eb,7c,77,b4,f8,69,42,11,5f,55,57,af,\
80,71,3f,1d,14,e2,64,e8,ed,64,81,98,bb,9c,3d,99,e7,8f,07,fa,20,00,00,00,62,\
ec,90,94,d0,f5,41,53,a6,85,bd,25,7b,db,bc,84,cc,3f,68,07,12,c1,c2,6a,f7,f7,\
76,60,9e,c2,5c,63,40,00,00,00,44,f2,5d,94,2d,42,4f,37,59,84,75,1d,2e,7a,b9,\
97,2c,94,ae,34,95,c9,1a,c0,c6,27,32,23,fe,e0,e9,90,53,8c,17,37,ff,e7,44,96,\
b2,91,26,2a,ac,99,98,db,fa,6c,7b,16,3c,ba,43,00,54,24,e6,76,6c,c8,61,81
"GameDVR_GameGUID"="2642baeb-a830-4329-b111-6be504a93e9a"
"TitleId"="1698925306"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\8d4cda1b-ff25-4b90-b9eb-212e1939db2c]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,66,70,1a,d2,4e,fd,a2,78,c2,78,\
97,5f,c2,b7,c1,a6,09,ac,df,07,03,b6,bd,9b,71,eb,ec,a6,3e,73,3d,6b,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,70,39,38,3d,4a,30,34,97,39,c4,61,74,\
0a,b7,0c,44,82,41,7b,3d,6e,78,99,94,56,a4,d6,2e,cd,33,87,63,30,00,00,00,67,\
b1,63,0b,78,ea,9f,e4,7b,87,c4,a4,11,02,3e,f3,da,23,00,ce,49,04,4d,7c,77,7c,\
a9,f7,4c,8a,c7,88,a7,71,95,82,70,6c,76,6b,64,b1,69,b8,a7,c5,e8,90,40,00,00,\
00,75,11,e6,fc,8b,dc,3d,13,a7,65,1b,07,f5,57,df,16,b6,e9,ea,86,ca,e3,83,25,\
b1,7b,4b,89,b0,de,0a,02,5e,11,cc,81,d8,34,e9,b8,d3,91,7b,2b,55,45,61,31,1f,\
4b,d4,65,1e,f5,a0,80,bf,44,0d,7b,00,46,82,2c
"GameDVR_GameGUID"="6834708e-ff37-4f47-8d9e-e009475696ea"
"TitleId"="2140933132"
"MatchedExeFullPath"="E:\\Rocket League\\rocketleague\\Binaries\\Win64\\RocketLeague.exe"
"LastAccessed"=hex(b):00,ac,36,70,c7,9e,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\9253f3de-1abd-412c-8fca-25196b323e44]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,77,31,52,7d,66,e8,3e,8c,e4,77,\
2a,45,b0,f8,0d,b1,34,f6,28,fb,f5,9f,3e,92,f6,72,8d,2f,fe,aa,d3,11,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,1a,88,e6,85,7e,de,ad,cc,9a,c3,96,dc,\
47,b4,01,0d,64,b1,a1,9b,80,03,b7,44,40,9c,2a,b6,31,ec,ac,e5,20,00,00,00,66,\
24,54,a6,d9,bc,d2,3b,31,31,34,5a,02,b2,3b,84,71,92,00,41,9b,89,f8,5e,44,b7,\
1c,51,39,09,55,7d,40,00,00,00,e1,a2,e6,ce,ba,03,73,48,ac,0a,8f,be,84,87,21,\
12,5c,c4,a7,35,04,67,c9,07,e8,34,b6,d0,59,2f,e7,14,95,f7,89,e2,de,38,86,db,\
c5,a9,64,ee,5f,c6,e1,5f,e4,12,58,bd,b6,91,64,2f,3c,a8,98,a0,69,79,a0,12
"GameDVR_GameGUID"="36807058-7c11-4844-84fc-55062cd44bce"
"TitleId"="2013577527"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\9b9b54e1-b0b2-42f8-b46a-63386dd30005]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,1f,57,45,2d,e1,0d,59,a2,64,08,\
fe,bc,40,94,4a,c0,32,48,e2,03,1d,16,9e,fc,bf,5d,ce,96,97,88,6d,20,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,53,bf,69,c1,4d,e9,e1,e9,da,f7,ca,ca,\
cf,42,8b,a3,de,3c,33,55,c0,ff,f9,25,71,c5,7b,c1,7c,f4,5e,f4,10,00,00,00,63,\
57,3d,d0,d4,ed,a7,a4,ae,2c,81,b8,08,9d,cd,22,40,00,00,00,2d,bf,6d,dd,72,92,\
10,60,4f,aa,0c,36,6a,76,06,44,be,4a,2a,60,8d,59,a1,b7,6b,68,fa,bd,ed,e6,f9,\
44,0d,2c,27,c7,ea,eb,3b,79,cd,cd,5f,86,93,c1,01,cd,56,de,76,7b,03,20,a3,b3,\
41,ee,3e,45,19,fc,5b,47
"ExeParentDirectory"="Trails of Cold Steel"
"GameDVR_GameGUID"="4b2e0e33-943e-4010-86ff-35270e2b0d83"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\9d41f6f1-5618-4606-a8ec-1100921065fc]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,d6,46,21,2c,2f,b6,ae,e7,89,f0,\
11,b0,2c,ea,45,7a,ec,c4,88,47,cf,21,49,d4,52,85,f4,12,94,8b,86,5f,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,8e,76,e6,79,0a,51,71,e8,c0,15,8b,3b,\
51,10,c5,64,f2,cd,cf,f8,fa,ba,3e,99,53,aa,b1,b3,27,71,c4,ab,20,00,00,00,34,\
52,16,96,1b,7d,98,33,cf,e7,21,34,36,31,33,36,5b,9a,b2,99,c4,6f,ae,33,5e,98,\
0d,68,75,42,e4,69,40,00,00,00,26,f9,37,30,96,9d,d9,f9,52,e4,ed,68,85,3b,cd,\
fd,c6,65,e1,36,6f,ff,d4,fa,6c,d1,f7,0e,85,b7,d1,fa,f4,fb,90,07,55,c2,64,7b,\
4f,f5,94,08,56,f2,ee,96,97,fb,81,d7,30,b6,90,75,c8,db,f6,7d,0c,46,e6,b1
"GameDVR_GameGUID"="d74e41c9-9b22-41e5-a4b8-4e303df73d38"
"TitleId"="2014204696"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\9fc09f67-272f-43f3-8c0b-2557f99f08fd]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,e3,3b,7d,4c,79,2b,9a,6a,80,91,\
a8,7d,f1,d3,b9,e1,43,d2,fb,2f,df,f0,6e,63,1f,8d,f6,c6,b5,be,d8,88,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,61,67,1a,e8,3b,f3,8f,ea,a8,88,ae,7b,\
d3,07,43,18,9d,64,77,9f,39,96,bc,db,7f,0f,50,7d,3e,74,c0,7d,20,00,00,00,ae,\
df,7c,a4,d1,31,25,4d,c1,18,92,81,53,fa,db,9b,cf,08,66,fb,49,c4,40,ba,76,8f,\
43,80,f2,4f,35,9a,40,00,00,00,82,e8,84,d4,31,5f,ed,f9,0b,bc,b8,a3,c5,b1,2a,\
56,b5,1b,56,b8,eb,7d,90,f2,01,4d,09,9f,e1,d9,11,8b,b1,2b,31,0f,17,59,44,9f,\
2a,49,17,3f,12,d7,78,8c,ca,c2,e6,dd,aa,7d,bf,32,d1,d3,2d,e8,e6,19,51,32
"GameDVR_GameGUID"="5005d987-b8aa-4be5-bafe-e4db5fba423c"
"TitleId"="2067772105"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\a15993e5-3e93-4968-a526-b96ec64f3995]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,7c,56,f4,d4,ba,fe,58,47,88,71,\
5d,b4,bf,16,c8,e2,1a,63,5b,bf,fc,0c,a9,23,49,52,58,8e,a0,76,5f,3e,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,fd,74,49,03,83,7f,6f,c4,68,aa,95,91,\
4c,e7,02,e9,9e,04,9a,08,7a,02,dc,97,87,a3,72,c5,c7,34,b4,23,10,00,00,00,a4,\
96,2b,e9,9c,64,01,72,c3,a4,5e,11,4b,80,4b,b7,40,00,00,00,9f,2d,c3,2d,b9,0e,\
78,5a,a8,1b,9e,d2,30,c4,31,b8,fd,6f,12,0f,c7,37,a2,d5,b7,db,7a,ec,5e,95,cb,\
67,fc,68,76,c0,b0,67,33,58,98,3c,aa,37,39,47,0f,04,42,76,5a,db,79,99,0c,08,\
c4,1c,ea,70,a4,b4,18,50
"ExeParentDirectory"="Battlefield"
"GameDVR_GameGUID"="f6c9159e-723f-42e0-bbcd-e00f7c4ea056"
"TitleId"="2040962988"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\a987fbc1-fde0-406f-a039-922a6104ad2f]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,00,ff,62,62,15,e0,be,64,25,54,\
32,9f,5a,c1,04,cb,c1,a6,8b,e2,af,95,69,c5,81,a0,4f,2d,91,ba,8e,70,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,c1,68,a6,e4,65,c2,99,ea,88,6c,43,f1,\
a5,c1,35,5e,0f,29,ba,a5,60,ce,89,73,a7,f0,52,83,a2,83,64,93,10,00,00,00,1f,\
69,ef,04,cd,80,53,42,f6,af,a4,01,8f,02,70,f2,40,00,00,00,f0,43,69,d1,b2,54,\
02,d7,cc,1d,1c,da,98,76,8a,c6,bc,ef,4d,37,1a,aa,1e,a1,19,b3,72,51,0e,d3,27,\
2f,ed,f2,fa,8e,c3,3a,66,d1,22,cb,70,0b,b1,62,6b,07,56,99,63,54,fa,85,b2,24,\
63,1b,83,8f,7f,97,26,9f
"ExeParentDirectory"="assettocorsa"
"GameDVR_GameGUID"="b2683437-ff17-488a-ade2-5a8d743633a0"
"TitleId"="1732322725"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\ae876636-f272-4eb2-aaa6-a110af0bd907]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,a5,37,4c,c3,2a,ad,79,52,7d,f1,\
bd,d6,a6,ed,5a,2b,78,18,a3,94,23,4d,aa,9a,cc,54,e9,c8,2b,17,b7,a1,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,f0,c5,dc,3e,bc,33,a3,7c,33,89,7b,c2,\
8a,c8,f9,22,4e,de,cf,ef,93,09,13,07,cd,3e,1e,99,42,ac,64,05,30,00,00,00,27,\
2d,c3,de,c9,0e,f3,56,79,3a,14,dd,55,25,c0,e7,1f,9d,16,57,09,d7,ba,9c,69,0c,\
ed,1b,03,4d,a1,b5,b8,85,ab,51,9e,3c,5c,d1,ad,06,ae,6c,ee,2f,f9,06,40,00,00,\
00,dd,b4,d4,8d,1c,bc,56,23,78,b4,78,59,5c,43,19,89,e6,1e,c8,3e,85,b4,21,bb,\
23,35,5a,cc,f7,61,d4,f6,d0,38,42,60,c0,dc,9c,a9,30,78,33,b8,ae,c8,3c,2c,4f,\
7e,8b,4d,5b,30,ba,68,5d,09,4c,fc,d9,da,f5,f6
"GameDVR_GameGUID"="bfb4b9a9-febb-4fb7-9f83-2e4fed403916"
"TitleId"="2036175044"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\b184ff46-9cdc-4e94-b598-5e5db72274a2]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,16,1c,bd,ad,f5,d3,94,50,a0,be,\
e3,be,fc,2e,d9,5e,04,4e,50,61,bf,84,85,26,f1,91,43,09,c7,78,86,4a,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,5e,bb,58,bf,54,fb,4a,da,2c,3a,a4,6c,\
46,b9,78,f4,54,16,30,b5,15,34,d4,7d,c5,05,6c,a0,ce,63,2a,d1,20,00,00,00,30,\
e0,9a,da,05,9a,21,b2,b6,62,ed,7b,2f,5f,f2,a1,12,ef,db,a2,bc,ad,99,f5,ab,87,\
4a,3b,72,28,17,02,40,00,00,00,0a,46,f4,88,1f,10,97,2b,ba,ec,18,1f,40,76,9a,\
35,ca,a0,69,05,25,eb,6a,3f,dd,33,92,a2,67,97,5c,27,c1,34,e6,53,cd,16,2e,43,\
52,d7,10,81,f2,e9,75,a4,d1,91,db,bb,ef,e8,8b,62,b1,d6,44,6f,7c,bf,03,98
"GameDVR_GameGUID"="362c3b38-93be-4fb5-a043-2d32d134d003"
"TitleId"="1904011994"
"MatchedExeFullPath"="E:\\Prototype-2-Radnet-Edition-Repack-Games.com\\Prototype 2 - Radnet Edition\\prototype2.exe"
"LastAccessed"=hex(b):b0,ae,99,83,95,7f,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\b1e0341d-a9d2-402c-a242-90ae9b02723c]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,85,2a,4c,80,b5,c2,d4,cd,d1,4a,\
fa,9c,70,88,4a,1e,96,6c,c3,bd,c0,eb,50,7c,b5,54,42,3a,13,5f,90,11,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,b6,62,5f,0d,49,03,6c,84,49,e7,0c,bf,\
d8,6e,24,42,a4,5a,88,79,6b,7a,ce,cc,0f,bc,6b,26,06,9f,b7,65,40,00,00,00,ab,\
26,66,f1,46,6d,d4,96,12,a3,45,fe,39,55,1b,91,2c,93,aa,b1,6d,bd,30,a5,c9,73,\
1c,b0,26,b2,96,25,f2,35,03,96,25,f9,40,c5,ee,9f,f7,6f,35,ff,60,aa,41,85,3b,\
90,cf,45,de,98,d8,b5,67,80,b8,ed,2e,36,40,00,00,00,5a,fc,b0,a6,9f,82,cf,57,\
da,52,68,a5,b9,3c,8d,2c,f5,1e,1d,91,42,f8,c5,68,f8,6c,41,8c,f7,05,08,37,8a,\
7b,bd,48,13,85,21,c8,7e,57,b0,28,82,07,f9,2f,93,85,41,8e,24,32,51,85,d1,32,\
c7,ba,6d,cb,7e,40
"GameDVR_GameGUID"="4380af58-6d39-48e0-845c-c246ca123fb7"
"TitleId"="1901314766"
"MatchedExeFullPath"="G:\\GAMES NEW\\PUBG LITE\\PUBGLite\\Client\\ShadowTrackerExtra\\Binaries\\Win64\\PUBGLite-Win64-Shipping.exe"
"LastAccessed"=hex(b):20,2b,7b,22,8a,91,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\b8b48b38-1c19-4dd7-ae69-3ba5cbab0db0]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,3f,67,a4,3c,44,df,0d,d2,c5,dc,\
1f,31,5c,02,2f,11,dc,4c,de,1b,cc,0e,18,1b,b4,6e,06,33,8c,a8,c4,b7,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,57,f3,27,fb,f7,63,1f,54,c1,50,df,0f,\
21,75,1a,ff,a5,5f,6d,f0,25,86,64,2b,16,68,a9,66,59,39,f2,a9,20,00,00,00,62,\
d1,0f,66,f4,50,eb,be,46,02,f8,3d,1a,f4,d2,3c,27,cc,19,79,1a,6e,6b,7c,bb,f5,\
ff,52,3f,84,d7,e4,40,00,00,00,74,01,ba,f7,62,fe,4e,0a,8b,b7,0b,00,27,43,4f,\
c7,16,20,b4,23,af,c7,b4,0f,b1,ae,76,41,cd,15,33,9f,36,7c,13,e0,f7,f7,d6,46,\
54,35,58,01,d4,26,27,8a,53,09,03,ea,53,c7,a1,7b,f1,e9,61,d3,d8,5b,fc,e3
"GameDVR_GameGUID"="ad4e885f-9469-42d5-9c0b-73bbb96fd569"
"TitleId"="1628516715"
"MatchedExeFullPath"="E:\\Origin APEX Legends\\Apex\\r5apex.exe"
"LastAccessed"=hex(b):90,62,f5,ff,ba,c0,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\bba1d6d2-9a61-42e8-8600-e0dafb8fa1d6]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,5b,12,da,aa,a2,92,7b,59,07,2c,\
41,aa,26,bb,3f,dc,ec,c3,7a,96,d7,4d,c3,ab,cb,59,ea,dc,18,df,23,fe,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,5b,5b,45,81,12,a4,df,ba,30,47,d3,63,\
9a,ee,30,48,89,cf,f8,bd,ea,ce,5b,d8,16,3f,d1,cf,de,36,db,9e,20,00,00,00,32,\
30,85,0d,cc,dc,ef,31,a4,3b,46,af,fc,78,fc,03,e2,f1,58,bc,28,d4,9c,7c,07,6a,\
d2,8e,3f,1d,3e,e6,40,00,00,00,99,a9,58,17,45,35,f8,5e,80,41,7a,ed,f6,a0,06,\
9d,87,ba,0b,11,bf,12,48,84,63,70,eb,08,b0,31,d7,f6,eb,6a,34,e2,d7,e8,a4,8c,\
15,8d,f6,9d,5e,18,55,84,4b,d5,af,65,38,14,63,8f,d0,53,41,dd,9d,55,13,ad
"GameDVR_GameGUID"="d82d19c7-cf98-4dd1-92ee-b51acefac3ec"
"TitleId"="2089711717"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\bdf4f2dc-25d6-4cb4-8f2c-c268c4b0e339]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,15,44,55,9b,2b,07,90,de,c6,7d,\
ba,fe,7f,8b,c3,3e,ce,74,0b,ff,75,32,d0,8b,fd,28,42,2b,80,ae,46,b5,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,fa,8f,71,75,79,6b,27,59,bb,99,59,10,\
86,67,bf,72,de,bd,15,2e,ee,25,9b,5a,b3,1b,45,90,bd,81,c5,10,40,00,00,00,59,\
d3,7d,5e,76,36,33,81,6f,fd,d3,c6,8b,31,49,f1,33,9b,15,bb,d3,08,54,28,75,53,\
9f,7c,7d,85,da,d9,a4,45,3c,50,19,d2,39,b3,a1,2c,d3,4c,48,ae,4c,e6,e1,8d,f0,\
d6,bf,8a,6a,fb,1a,f7,69,7e,2c,56,89,75,40,00,00,00,e8,96,40,ea,0c,dc,32,17,\
3f,52,b4,cc,ca,b7,10,50,bd,0a,e2,24,0f,c0,59,67,27,a1,9a,ac,ef,c3,01,71,aa,\
90,32,49,23,f0,b8,6e,bd,6a,a1,c7,a4,a1,cf,7b,ea,5f,74,df,53,09,d7,d5,8a,db,\
9a,d7,d6,b1,a1,02
"GameDVR_GameGUID"="c30126d9-4cac-461a-b331-faa613447906"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\c197c13c-6b0c-4810-81d1-548ed723a399]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,bb,33,93,25,0d,77,ed,2d,bc,8f,\
b1,5e,0d,f3,35,ca,db,67,e0,38,6c,fb,1a,ec,c9,6f,2b,7b,7a,32,ed,d3,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,fb,56,06,6f,64,fa,5d,db,ca,a1,50,dd,\
d4,e5,9c,16,93,c6,53,82,c7,1f,51,8c,dc,d7,e7,f9,fa,0a,42,75,40,00,00,00,90,\
a2,ea,74,02,81,1b,74,f2,ae,81,39,e5,45,4a,de,eb,8f,3a,a5,4d,40,d0,48,15,31,\
5c,41,18,2b,7e,09,fd,08,9d,e9,61,02,fd,a7,b7,b4,4e,7c,34,10,53,ae,0d,1f,63,\
85,77,6a,f4,6a,30,3d,76,c7,32,2b,5f,b0,40,00,00,00,4b,7a,8c,02,bb,05,39,59,\
8a,b7,d4,44,a5,70,62,0c,f6,73,60,1f,7f,a7,d0,f7,c9,a8,29,9d,34,5b,3d,d6,e8,\
66,10,4b,52,47,7b,ea,7a,90,41,54,9e,d7,29,ce,1b,93,67,93,d4,dd,af,b0,0d,eb,\
f8,b0,cb,6b,62,ca
"GameDVR_GameGUID"="a08ed448-4755-4afd-88ea-60480149ef7a"
"TitleId"="1742142364"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\c1e4be0f-1b0f-4324-a064-adccbdb98dae]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000231
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,3d,ce,0d,b3,bb,d7,e2,59,0e,05,\
2e,d5,2b,81,8f,c6,b4,5b,6c,a6,e4,f4,56,1b,75,3f,18,af,ac,a1,34,f8,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,c3,1d,6e,90,4e,70,f5,96,54,1f,40,c1,\
a7,49,73,94,a9,1d,26,5a,60,59,b3,e7,3f,14,1c,f5,23,ec,59,a6,30,00,00,00,92,\
c4,dd,a0,c0,6b,61,40,0e,11,de,48,08,4a,af,71,48,04,ae,90,71,2d,ee,f1,a0,4b,\
6a,fa,de,3d,a9,4c,f7,78,0a,ed,97,15,10,a6,5c,35,c7,ff,97,94,38,f0,40,00,00,\
00,8e,c9,1f,3b,f8,8c,2c,ed,36,11,1f,6b,3f,a4,a6,66,f2,34,77,69,9b,9c,88,49,\
a1,b5,98,98,0c,08,cb,39,ef,c3,20,44,5b,eb,dc,e2,a7,88,51,a0,78,cb,8d,f0,88,\
cc,13,54,c1,ba,6b,58,b9,fa,31,7a,08,aa,47,d6
"GameDVR_GameGUID"="9cd0abff-d7f4-488e-ab4d-031067591dea"
"TitleId"="2121740635"
[HKEY_CURRENT_USER\System\GameConfigStore\Children\c83d8550-bfd3-4fe6-a5ed-256363e86756]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,dd,05,4a,c6,c5,d9,5b,4f,5b,ab,\
ac,c6,8c,33,1c,79,b3,07,fd,03,21,6e,f7,6e,25,93,86,3f,77,e8,6f,46,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,35,b1,90,e1,58,76,bb,3e,37,c8,bc,d0,\
9e,e0,ed,55,7a,a1,6f,0f,be,af,2f,d7,6c,df,8c,3f,dc,1d,54,21,20,00,00,00,4b,\
27,7c,82,1a,c9,09,33,03,34,de,76,10,19,87,25,81,49,fa,f9,60,6c,47,56,7d,e7,\
91,4c,11,73,3e,71,40,00,00,00,57,0a,18,4c,0d,e6,8c,07,79,cf,37,2c,d4,5a,99,\
07,b0,a7,9b,a6,c0,48,63,cb,69,1b,e0,da,6c,1d,c8,8f,06,d2,06,fe,75,b0,66,e7,\
a7,3c,4d,a8,c1,93,ac,95,56,50,dd,70,c6,91,6c,6e,71,37,c5,31,d9,a8,3d,9b
"GameDVR_GameGUID"="0e943a5f-4a49-4030-8ba2-1d51e7b60a08"
"TitleId"="1956642556"
"ProcessDependencies"=hex(7):61,00,75,00,64,00,69,00,6f,00,64,00,67,00,2e,00,\
65,00,78,00,65,00,7c,00,31,00,00,00,62,00,61,00,74,00,74,00,6c,00,65,00,2e,\
00,6e,00,65,00,74,00,2e,00,65,00,78,00,65,00,7c,00,38,00,00,00,62,00,61,00,\
74,00,74,00,6c,00,65,00,2e,00,6e,00,65,00,74,00,20,00,68,00,65,00,6c,00,70,\
00,65,00,72,00,2e,00,65,00,78,00,65,00,7c,00,38,00,00,00,00,00
[HKEY_CURRENT_USER\System\GameConfigStore\Children\c9519863-23c7-4c40-9bc4-ce362db7e451]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000011
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,8c,ec,f4,4d,d0,0e,88,84,f0,c7,\
05,96,1b,ee,22,cf,9d,da,5b,f3,f0,a2,0b,6f,73,11,f7,c7,1c,74,e4,4b,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,30,df,54,01,81,aa,25,b4,c8,c7,87,29,\
86,8f,73,86,3f,b8,33,6b,c1,e3,11,7c,10,05,dd,3f,d7,eb,7b,e0,20,00,00,00,bb,\
dc,af,3d,34,ab,10,64,59,4c,56,89,86,ff,c7,cf,ce,58,ab,d7,64,be,90,3c,9b,87,\
68,c8,ed,08,a4,8d,40,00,00,00,74,29,fd,42,7f,2f,f3,20,65,23,9c,22,d9,96,0b,\
3d,37,13,bd,6a,9e,97,92,a3,f8,82,5f,a6,25,3b,5b,1b,fe,b7,b1,99,9e,5c,eb,ff,\
e0,5f,3c,a9,c8,1a,ab,6c,4b,3a,92,12,80,36,46,43,f0,56,6f,28,5e,bf,2b,de
"GameDVR_GameGUID"="b57c1fde-bc6f-4847-b086-205590b186fe"
"TitleId"="1639119975"
"MatchedExeFullPath"="E:\\Among.Us.v2020.9.9s\\Among Us.exe"
"LastAccessed"=hex(b):90,59,fa,3f,b3,a0,d6,01
[HKEY_CURRENT_USER\System\GameConfigStore\Children\cc7a8a23-73ee-4311-b901-ac0934555ff8]
"Type"=dword:00000001
"Revision"=dword:000007cb
"Flags"=dword:00000033
"Parent"=hex:01,00,00,00,d0,8c,9d,df,01,15,d1,11,8c,7a,00,c0,4f,c2,97,eb,01,00,\
00,00,56,46,f0,52,f9,8c,02,42,b4,85,76,64,1e,12,2a,a1,04,00,00,00,02,00,00,\
00,00,00,10,66,00,00,00,01,00,00,20,00,00,00,76,6d,2c,bd,73,f3,2d,f8,8b,ee,\
28,81,2f,29,a1,db,23,44,f4,de,a5,9b,11,c0,8e,3d,94,cf,e4,ae,a4,e4,00,00,00,\
00,0e,80,00,00,00,02,00,00,20,00,00,00,4b,83,99,31,40,f7,cd,f9,53,42,7e,54,\
36,4f,44,32,df,f3,89,e1,33,ff,58,26,f6,1f,36,7d,1a,43,00,a0,20,00,00,00,43,\
52,a1,46,16,ad,e9,b9,1c,c8,e1,ac,ac,bc,01,18,32,45,d9,74,46,df,3d,4d,21,4d,\
c2,72,ca,ed,94,1b,40,00,00,00,96,8a,c6,f1,88,3e,33,f4,00,57,3a,a2,2a,d0,c2,\
a0,4d,33,f8,12,ed,c5,ec,51,00,fa,6a,d5,93,1c,b4,5a,43,a2,8f,d1,e6,14,51,9d,\
3d,8e,44,7b,05,ec,50,10,d6,27,14,71,7e,d0,af,73,c7,7a,c8,d7,a4,7d,f1,ba
"GameDVR_GameGUID"="c30f5807-f5c7-485b-b620-fbec6448c354"