-
Notifications
You must be signed in to change notification settings - Fork 9
/
cdb-output.txt
5128 lines (5108 loc) · 280 KB
/
cdb-output.txt
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
Opened log file 'cdb-output.txt'
0:000> dt -v Asm!_PAGE_COPY_TYPE
struct _PAGE_COPY_TYPE, 5 elements, 0x4 bytes
+0x000 Movsb : Bitfield Pos 0, 1 Bit
+0x000 Movsw : Bitfield Pos 1, 1 Bit
+0x000 Movsq : Bitfield Pos 2, 1 Bit
+0x000 Avx2C : Bitfield Pos 3, 1 Bit
+0x000 Avx2NonTemporal : Bitfield Pos 4, 1 Bit
0:000> dt -v Asm!_COPY_PAGES_FUNCTIONS
struct _COPY_PAGES_FUNCTIONS, 4 elements, 0x20 bytes
+0x000 CopyPagesNonTemporalAvx2_v1 : Ptr64 to void
+0x008 CopyPagesNonTemporalAvx2_v2 : Ptr64 to void
+0x010 CopyPagesNonTemporalAvx2_v3 : Ptr64 to void
+0x018 CopyPagesNonTemporalAvx2_v4 : Ptr64 to void
0:000> dt -v DebugEngine!_DEBUG_ENGINE
struct _DEBUG_ENGINE, 64 elements, 0x2d0 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_FLAGS, 3 elements, 0x4 bytes
+0x008 State : union _DEBUG_ENGINE_STATE, 8 elements, 0x4 bytes
+0x010 Rtl : Ptr64 to struct _RTL, 495 elements, 0x1080 bytes
+0x018 Session : Ptr64 to struct _DEBUG_ENGINE_SESSION, 67 elements, 0x2f0 bytes
+0x020 IID_Client : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x028 IClient : Ptr64 to struct IDebugClient7, 1 elements, 0x8 bytes
+0x030 Client : Ptr64 to struct IDebugClient7Vtbl, 97 elements, 0x308 bytes
+0x038 IID_Control : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x040 IControl : Ptr64 to struct IDebugControl7, 1 elements, 0x8 bytes
+0x048 Control : Ptr64 to struct IDebugControl7Vtbl, 177 elements, 0x588 bytes
+0x050 IID_Symbols : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x058 ISymbols : Ptr64 to struct IDebugSymbols5, 1 elements, 0x8 bytes
+0x060 Symbols : Ptr64 to struct IDebugSymbols5Vtbl, 135 elements, 0x438 bytes
+0x068 IID_SymbolGroup : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x070 ISymbolGroup : Ptr64 to struct IDebugSymbolGroup2, 1 elements, 0x8 bytes
+0x078 SymbolGroup : Ptr64 to struct IDebugSymbolGroup2Vtbl, 26 elements, 0xd0 bytes
+0x080 IID_Advanced : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x088 IAdvanced : Ptr64 to struct IDebugAdvanced4, 1 elements, 0x8 bytes
+0x090 Advanced : Ptr64 to struct IDebugAdvanced4Vtbl, 14 elements, 0x70 bytes
+0x098 IID_DataSpaces : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x0a0 IDataSpaces : Ptr64 to struct IDebugDataSpaces4, 1 elements, 0x8 bytes
+0x0a8 DataSpaces : Ptr64 to struct IDebugDataSpaces4Vtbl, 44 elements, 0x160 bytes
+0x0b0 IID_Registers : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x0b8 IRegisters : Ptr64 to struct IDebugRegisters2, 1 elements, 0x8 bytes
+0x0c0 Registers : Ptr64 to struct IDebugRegisters2Vtbl, 29 elements, 0xe8 bytes
+0x0c8 IID_SystemObjects : Ptr64 to struct _GUID, 4 elements, 0x10 bytes
+0x0d0 ISystemObjects : Ptr64 to struct IDebugSystemObjects4, 1 elements, 0x8 bytes
+0x0d8 SystemObjects : Ptr64 to struct IDebugSystemObjects4Vtbl, 48 elements, 0x180 bytes
+0x0e0 SessionStatus : Uint4B
+0x0e8 ExecutionStatus : union _DEBUG_EXECUTION_STATUS, 8 elements, 0x8 bytes
+0x0f0 EngineState : Uint4B
+0x0f8 EngineStateArg : Uint8B
+0x100 ChangeEngineState : union _DEBUG_CHANGE_ENGINE_STATE, 18 elements, 0x4 bytes
+0x104 DebuggeeState : Uint4B
+0x108 DebuggeeStateArg : Uint8B
+0x110 SymbolState : Uint4B
+0x118 SymbolStateArg : Uint8B
+0x120 ActualProcessorType : Uint4B
+0x124 SystemError : struct <unnamed-tag>, 2 elements, 0x8 bytes
+0x12c EventCallbacksRefCount : Int4B
+0x130 InputCallbacksRefCount : Int4B
+0x134 OutputCallbacksRefCount : Int4B
+0x138 OutputCallbacks2RefCount : Int4B
+0x140 Lock : struct _RTL_SRWLOCK, 1 elements, 0x8 bytes
+0x148 OutputMask : union _DEBUG_OUTPUT_MASK, 13 elements, 0x4 bytes
+0x150 OutputCallback : Ptr64 to HRESULT
+0x158 DefaultOutputCallback : Ptr64 to HRESULT
+0x160 OutputCallback2 : Ptr64 to HRESULT
+0x168 CurrentOutput : Ptr64 to struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x170 DefaultOutput : Ptr64 to struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x178 EventCallbacksInterestMask : union _DEBUG_EVENT_CALLBACKS_INTEREST_MASK, 16 elements, 0x4 bytes
+0x17c OutputCallbacks2InterestMask : union _DEBUG_OUTPUT_CALLBACKS2_INTEREST_MASK, 5 elements, 0x4 bytes
+0x180 EventCallbacks : struct IDebugEventCallbacksWideVtbl, 17 elements, 0x88 bytes
+0x208 IEventCallbacks : struct IDebugEventCallbacksWide, 1 elements, 0x8 bytes
+0x210 InputCallbacks : struct IDebugInputCallbacksVtbl, 5 elements, 0x28 bytes
+0x238 IInputCallbacks : struct IDebugInputCallbacks, 1 elements, 0x8 bytes
+0x240 OutputCallbacks : struct IDebugOutputCallbacksVtbl, 4 elements, 0x20 bytes
+0x260 IOutputCallbacks : struct IDebugOutputCallbacks, 1 elements, 0x8 bytes
+0x268 OutputCallbacks2 : struct IDebugOutputCallbacks2Vtbl, 6 elements, 0x30 bytes
+0x298 IOutputCallbacks2 : struct IDebugOutputCallbacks2, 1 elements, 0x8 bytes
+0x2a0 IID_CurrentEventCallbacks : struct _GUID, 4 elements, 0x10 bytes
+0x2b0 IID_CurrentInputCallbacks : struct _GUID, 4 elements, 0x10 bytes
+0x2c0 IID_CurrentOutputCallbacks : struct _GUID, 4 elements, 0x10 bytes
0:000> dt -v DebugEngine!_LINKED_PARTIAL_LINE
struct _LINKED_PARTIAL_LINE, 3 elements, 0x20 bytes
+0x000 ListEntry : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x010 PartialLine : struct _STRING, 5 elements, 0x10 bytes
+0x010 PartialLineWide : struct _UNICODE_STRING, 5 elements, 0x10 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_OUTPUT
struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_OUTPUT_FLAGS, 10 elements, 0x4 bytes
+0x008 State : union _DEBUG_ENGINE_OUTPUT_STATE, 30 elements, 0x4 bytes
+0x00c NumberOfCallbacks : Uint4B
+0x010 NumberOfLines : Uint4B
+0x014 NumberOfPartialCallbacks : Uint4B
+0x018 TotalBufferLengthInChars : Uint4B
+0x01c TotalBufferSizeInBytes : Uint4B
+0x020 LargestChunkSizeInBytes : Uint4B
+0x024 NumberOfParsedLines : Uint4B
+0x028 Unused1 : Uint4B
+0x02c ShortestLineInBytes : Uint2B
+0x02e LongestLineInBytes : Uint2B
+0x030 CurrentNumberOfConsecutivePartialCallbacks : Uint2B
+0x032 LongestNumberOfConsecutivePartialCallbacks : Uint2B
+0x034 LastResult : HRESULT
+0x038 Session : Ptr64 to struct _DEBUG_ENGINE_SESSION, 67 elements, 0x2f0 bytes
+0x040 Context : Ptr64 to Void
+0x048 Allocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x050 ModulePath : Ptr64 to struct _RTL_PATH, 18 elements, 0xc0 bytes
+0x058 Command : Ptr64 to struct _UNICODE_STRING, 5 elements, 0x10 bytes
+0x060 CommandTemplate : Ptr64 to struct _DEBUG_ENGINE_COMMAND_TEMPLATE, 9 elements, 0x38 bytes
+0x068 CommandOptions : Uint4B
+0x070 Timestamp : struct <unnamed-tag>, 2 elements, 0x10 bytes
+0x080 LineOutputCallback : Ptr64 to int
+0x088 PartialOutputCallback : Ptr64 to int
+0x090 OutputCompleteCallback : Ptr64 to int
+0x098 SaveOutputLine : Ptr64 to int
+0x0a0 LineAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x0a8 TextAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x0b0 CustomStructureAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x0b8 CustomStructureSecondaryAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x0c0 CustomStructureName : Ptr64 to struct _STRING, 5 elements, 0x10 bytes
+0x0c8 CustomStructureSecondaryName : Ptr64 to struct _STRING, 5 elements, 0x10 bytes
+0x0d0 NumberOfCustomStructures : Uint4B
+0x0d8 CustomStructure : Ptr64 to Void
+0x0d8 FirstCustomStructure : Ptr64 to Void
+0x0d8 DisplayedType : Ptr64 to struct _DEBUG_ENGINE_DISPLAYED_TYPE, 7 elements, 0x38 bytes
+0x0d8 ExaminedSymbol : Ptr64 to struct _DEBUG_ENGINE_EXAMINED_SYMBOL, 11 elements, 0x100 bytes
+0x0d8 UnassembledFunction : Ptr64 to struct _DEBUG_ENGINE_UNASSEMBLED_FUNCTION, 7 elements, 0x30 bytes
+0x0e0 CustomStructureListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x0f0 ParseLinesIntoCustomStructureCallback : Ptr64 to int
+0x0f8 Line : struct _STRING, 5 elements, 0x10 bytes
+0x0f8 LineWide : struct _UNICODE_STRING, 5 elements, 0x10 bytes
+0x108 NumberOfSavedLines : Uint4B
+0x10c NumberOfSavedBytes : Uint4B
+0x110 SavedLinesListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x120 pSavedLinesListHead : Ptr64 to struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x128 NumberOfFailedLines : Uint4B
+0x12c Unused2 : Uint4B
+0x130 FailedLinesListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x140 SavedLineBufferAllocationState : struct <unnamed-tag>, 2 elements, 0x4 bytes
+0x144 FirstDiscontiguousBufferIndex : Uint4B
+0x148 FirstSavedLineBuffer : Ptr64 to Char
+0x150 SavedLineAllocationState : struct <unnamed-tag>, 2 elements, 0x4 bytes
+0x154 FirstDiscontiguousLineIndex : Uint4B
+0x158 FirstSavedLine : Ptr64 to struct _LINKED_STRING, 8 elements, 0x20 bytes
+0x160 NumberOfPartialLines : Uint4B
+0x168 PartialLinesListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x178 Chunk : struct _STRING, 5 elements, 0x10 bytes
+0x178 ChunkWide : struct _UNICODE_STRING, 5 elements, 0x10 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_FUNCTION_ARGUMENT
struct _DEBUG_ENGINE_FUNCTION_ARGUMENT, 12 elements, 0x58 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_FUNCTION_ARGUMENT_FLAGS, 20 elements, 0x4 bytes
+0x008 SizeInBytes : Int2B
+0x00a ArgumentNumber : Uint2B
+0x00c StackPointerOffset : Uint2B
+0x00e PointerDepth : Uint2B
+0x010 Atom : struct <unnamed-tag>, 2 elements, 0x4 bytes
+0x014 ArgumentType : Enum _DEBUG_ENGINE_FUNCTION_ARGUMENT_TYPE, 27 total enums
+0x018 String : struct <unnamed-tag>, 2 elements, 0x20 bytes
+0x038 Register : union <unnamed-tag>, 1 elements, 0x4 bytes
+0x040 ListEntry : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x050 Type : Ptr64 to struct _DEBUG_ENGINE_DISPLAYED_TYPE, 7 elements, 0x38 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_EXAMINED_SYMBOL_LINE_STRINGS
struct _DEBUG_ENGINE_EXAMINED_SYMBOL_LINE_STRINGS, 15 elements, 0xb0 bytes
+0x000 Line : struct _STRING, 5 elements, 0x10 bytes
+0x010 Scope : struct _STRING, 5 elements, 0x10 bytes
+0x020 Address : struct _STRING, 5 elements, 0x10 bytes
+0x030 Size : struct _STRING, 5 elements, 0x10 bytes
+0x040 BasicType : struct _STRING, 5 elements, 0x10 bytes
+0x050 TypeName : struct _STRING, 5 elements, 0x10 bytes
+0x060 Array : struct _STRING, 5 elements, 0x10 bytes
+0x070 ModuleName : struct _STRING, 5 elements, 0x10 bytes
+0x080 SymbolName : struct _STRING, 5 elements, 0x10 bytes
+0x080 Function : struct _STRING, 5 elements, 0x10 bytes
+0x080 Structure : struct _STRING, 5 elements, 0x10 bytes
+0x080 Union : struct _STRING, 5 elements, 0x10 bytes
+0x090 Remaining : struct _STRING, 5 elements, 0x10 bytes
+0x0a0 Value : struct _STRING, 5 elements, 0x10 bytes
+0x0a0 FunctionArguments : struct _STRING, 5 elements, 0x10 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_EXAMINED_SYMBOL_FUNCTION
struct _DEBUG_ENGINE_EXAMINED_SYMBOL_FUNCTION, 3 elements, 0x18 bytes
+0x000 NumberOfArguments : Uint2B
+0x002 Reserved : [3] Uint2B
+0x008 ArgumentsListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_EXAMINED_SYMBOL
struct _DEBUG_ENGINE_EXAMINED_SYMBOL, 11 elements, 0x100 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_EXAMINED_SYMBOL_FLAGS, 6 elements, 0x4 bytes
+0x008 Type : Enum _DEBUG_ENGINE_EXAMINE_SYMBOLS_TYPE, 28 total enums
+0x00c Scope : Enum _DEBUG_ENGINE_EXAMINE_SYMBOLS_SCOPE, 7 total enums
+0x010 Strings : struct _DEBUG_ENGINE_EXAMINED_SYMBOL_LINE_STRINGS, 15 elements, 0xb0 bytes
+0x0c0 Output : Ptr64 to struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x0c8 Size : Uint4B
+0x0cc Padding1 : Uint4B
+0x0d0 Address : union _LARGE_INTEGER, 4 elements, 0x8 bytes
+0x0d8 ListEntry : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x0e8 Function : struct _DEBUG_ENGINE_EXAMINED_SYMBOL_FUNCTION, 3 elements, 0x18 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_UNASSEMBLED_FUNCTION
struct _DEBUG_ENGINE_UNASSEMBLED_FUNCTION, 7 elements, 0x30 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_UNASSEMBLED_FUNCTION_FLAGS, 16 elements, 0x4 bytes
+0x008 Output : Ptr64 to struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x010 Symbol : Ptr64 to struct _DEBUG_ENGINE_EXAMINED_SYMBOL, 11 elements, 0x100 bytes
+0x018 SavedLinesListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x028 NumberOfInstructions : Uint4B
+0x02c NumberOfBasicBlocks : Uint4B
0:000> dt -v DebugEngine!_DEBUG_ENGINE_DISPLAYED_TYPE
struct _DEBUG_ENGINE_DISPLAYED_TYPE, 7 elements, 0x38 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_DISPLAYED_TYPE_FLAGS, 3 elements, 0x4 bytes
+0x008 Output : Ptr64 to struct _DEBUG_ENGINE_OUTPUT, 61 elements, 0x188 bytes
+0x010 Symbol : Ptr64 to struct _DEBUG_ENGINE_EXAMINED_SYMBOL, 11 elements, 0x100 bytes
+0x018 SavedLinesListHead : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x028 TotalSizeInBytes : Uint4B
+0x02c Structure : struct <unnamed-tag>, 2 elements, 0x8 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_DYNAMIC_COMMAND
struct _DEBUG_ENGINE_DYNAMIC_COMMAND, 6 elements, 0x20 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_DYNAMIC_COMMAND_FLAGS, 3 elements, 0x4 bytes
+0x008 NumberOfArguments : UChar
+0x00a Unused : [3] Uint2B
+0x010 Bitmap : Uint8B
+0x018 Arguments : Ptr64 to struct _UNICODE_STRING, 5 elements, 0x10 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_SESSION
struct _DEBUG_ENGINE_SESSION, 67 elements, 0x2f0 bytes
+0x000 SizeOfStruct : Uint4B
+0x004 Flags : union _DEBUG_ENGINE_SESSION_FLAGS, 8 elements, 0x4 bytes
+0x008 Engine : Ptr64 to struct _DEBUG_ENGINE, 64 elements, 0x2d0 bytes
+0x010 ExitDispatchEngine : Ptr64 to struct _DEBUG_ENGINE, 64 elements, 0x2d0 bytes
+0x018 InjectionModules : Ptr64 to struct _TRACER_INJECTION_MODULES, 7 elements, 0x28 bytes
+0x020 Parent : Ptr64 to struct _DEBUG_ENGINE_SESSION, 67 elements, 0x2f0 bytes
+0x028 Children : struct _GUARDED_LIST, 3 elements, 0x20 bytes
+0x048 ListEntry : struct _LIST_ENTRY, 2 elements, 0x10 bytes
+0x058 InitializeChildDebugEngineSession : Ptr64 to int
+0x060 ChildContext : Ptr64 to Void
+0x068 OutstandingInjectionInitializers : Uint8B
+0x070 AllInjectionInitializersReady : Ptr64 to Void
+0x078 NumberOfPendingApcs : Uint8B
+0x080 ReadyForApcEvent : Ptr64 to Void
+0x088 WaitForApcEvent : Ptr64 to Void
+0x090 Apc : struct _APC, 4 elements, 0x20 bytes
+0x0b0 ShutdownEvent : Ptr64 to Void
+0x0b8 ShutdownCompleteEvent : Ptr64 to Void
+0x0c0 Destroy : Ptr64 to void
+0x0c8 InitializeDebugEngineOutput : Ptr64 to int
+0x0d0 WaitForEvent : Ptr64 to HRESULT
+0x0d8 DispatchCallbacks : Ptr64 to HRESULT
+0x0e0 EventDispatch : Ptr64 to HRESULT
+0x0e8 EventLoop : Ptr64 to int
+0x0f0 EventLoopRunOnce : Ptr64 to int
+0x0f8 ExamineSymbols : Ptr64 to int
+0x100 UnassembleFunction : Ptr64 to int
+0x108 DisplayType : Ptr64 to int
+0x110 SettingsMeta : Ptr64 to int
+0x118 ListSettings : Ptr64 to int
+0x120 ExecuteStaticCommand : Ptr64 to int
+0x128 ExecuteDynamicCommand : Ptr64 to int
+0x130 Rtl : Ptr64 to struct _RTL, 495 elements, 0x1080 bytes
+0x138 Allocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x140 TracerConfig : Ptr64 to struct _TRACER_CONFIG, 15 elements, 0x1c0 bytes
+0x148 CommandLineA : Ptr64 to Char
+0x150 CommandLineW : Ptr64 to Wchar
+0x158 CommandLineOption : Enum _DEBUG_ENGINE_COMMAND_LINE_OPTION, 3 total enums
+0x15c NumberOfArguments : Int4B
+0x160 ArgvA : Ptr64 to Ptr64 to Char
+0x168 ArgvW : Ptr64 to Ptr64 to Wchar
+0x170 TargetProcessId : Uint4B
+0x170 TargetCommandLineA : Ptr64 to Char
+0x180 TraceSessionDirectory : struct _RTL_PATH, 18 elements, 0xc0 bytes
+0x240 RunHistoryRegistryPath : struct _UNICODE_STRING, 5 elements, 0x10 bytes
+0x250 TargetProcessHandle : Ptr64 to Void
+0x258 TargetMainThreadHandle : Ptr64 to Void
+0x260 InitialProcessId : Uint4B
+0x264 InitialThreadId : Uint4B
+0x268 InitialModuleNameW : struct _UNICODE_STRING, 5 elements, 0x10 bytes
+0x278 RunHistoryRegistryKey : Ptr64 to struct HKEY__, 1 elements, 0x4 bytes
+0x280 StringTableApi : Ptr64 to struct _STRING_TABLE_API, 11 elements, 0x58 bytes
+0x288 StringTableAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x290 StringArrayAllocator : Ptr64 to struct _ALLOCATOR, 47 elements, 0x128 bytes
+0x298 ExamineSymbolsPrefixStringTable : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2a0 NumberOfBasicTypeStringTables : Uint2B
+0x2a2 NumberOfFunctionArgumentTypeStringTables : Uint2B
+0x2a4 NumberOfDisplayTypesStringTables : Uint2B
+0x2a6 Padding : Uint2B
+0x2a8 ExamineSymbolsBasicTypeStringTable1 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2b0 ExamineSymbolsBasicTypeStringTable2 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2b8 FunctionArgumentTypeStringTable1 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2c0 FunctionArgumentTypeStringTable2 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2c8 FunctionArgumentVectorTypeStringTable1 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2d0 DisplayTypesStringTable1 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2d8 DisplayTypesStringTable2 : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
+0x2e0 CommandLineOptionsStringTable : Ptr64 to struct _STRING_TABLE, 10 elements, 0x200 bytes
0:000> dt -v DebugEngine!_DEBUG_ENGINE_COMMAND_FLAGS
struct _DEBUG_ENGINE_COMMAND_FLAGS, 7 elements, 0x4 bytes
+0x000 HasOptions : Bitfield Pos 0, 1 Bit
+0x000 HasModuleName : Bitfield Pos 1, 1 Bit
+0x000 HasExclamationPoint : Bitfield Pos 2, 1 Bit
+0x000 MandatoryArgument : Bitfield Pos 3, 1 Bit
+0x000 OptionalArgument : Bitfield Pos 4, 1 Bit
+0x000 ArgumentDefaultsToAsterisk : Bitfield Pos 5, 1 Bit
+0x000 Unused : Bitfield Pos 6, 1 Bit
0:000> dt -v DebugEngine!_DEBUG_ENGINE_COMMAND_OPTIONS
struct _DEBUG_ENGINE_COMMAND_OPTIONS, 1 elements, 0x8 bytes
+0x000 OptionStrings : Ptr64 to Ptr64 to Wchar
0:000> dt -v Python!_PYOBJECT
struct _PYOBJECT, 5 elements, 0x10 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
0:000> dt -v Python!_PYVAROBJECT
struct _PYVAROBJECT, 7 elements, 0x18 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
0:000> dt -v Python!_PYOLDSTYLECLASS
struct _PYOLDSTYLECLASS, 11 elements, 0x40 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 Bases : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x018 Dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 GetAttr : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 SetAttr : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 DelAttr : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYINSTANCEOBJECT
struct _PYINSTANCEOBJECT, 8 elements, 0x28 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 OldStyleClass : Ptr64 to struct _PYOLDSTYLECLASS, 11 elements, 0x40 bytes
+0x018 Dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 WeakRefList : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYSTRINGOBJECT
struct _PYSTRINGOBJECT, 13 elements, 0x28 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 ob_shash : Int4B
+0x018 Hash : Int4B
+0x01c ob_sstate : Int4B
+0x01c State : Int4B
+0x020 ob_sval : [1] Char
+0x020 Value : [1] Char
0:000> dt -v Python!_PYBYTESOBJECT
struct _PYBYTESOBJECT, 11 elements, 0x20 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 ob_shash : Int4B
+0x018 Hash : Int4B
+0x01c ob_sval : [1] Char
+0x01c Value : [1] Char
0:000> dt -v Python!_PYUNICODEOBJECT
struct _PYUNICODEOBJECT, 11 elements, 0x28 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 length : Int8B
+0x010 Length : Int8B
+0x018 str : Ptr64 to Wchar
+0x018 String : Ptr64 to Wchar
+0x020 hash : Int4B
+0x020 Hash : Int4B
0:000> dt -v Python!_PYCODEOBJECT25_27
struct _PYCODEOBJECT25_27, 34 elements, 0x70 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 co_argcount : Int4B
+0x010 ArgumentCount : Int4B
+0x014 co_nlocals : Int4B
+0x014 NumberOfLocals : Int4B
+0x018 co_stacksize : Int4B
+0x018 StackSize : Int4B
+0x01c co_flags : Int4B
+0x01c Flags : Int4B
+0x020 co_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 co_consts : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Constants : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 co_names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 co_varnames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 LocalVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 co_freevars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 FreeVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 co_cellvars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 CellVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 co_filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 Filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 co_name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 Name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 NameString : Ptr64 to struct _PYSTRINGOBJECT, 13 elements, 0x28 bytes
+0x060 co_firstlineno : Int4B
+0x060 FirstLineNumber : Int4B
+0x068 co_lnotab : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 LineNumberTable : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYCODEOBJECT30_32
struct _PYCODEOBJECT30_32, 37 elements, 0x80 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 co_argcount : Int4B
+0x010 ArgumentCount : Int4B
+0x014 co_kwonlyargcount : Int4B
+0x014 KeywordOnlyArgumentCount : Int4B
+0x018 co_nlocals : Int4B
+0x018 NumberOfLocals : Int4B
+0x01c co_stacksize : Int4B
+0x01c StackSize : Int4B
+0x020 co_flags : Int4B
+0x020 Flags : Int4B
+0x028 co_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 co_consts : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Constants : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 co_names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 Names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 co_varnames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 LocalVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 co_freevars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 FreeVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 co_cellvars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 CellVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 co_filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 Filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 co_name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 Name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 co_firstlineno : Int4B
+0x068 FirstLineNumber : Int4B
+0x070 co_lnotab : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 LineNumberTable : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 co_zombieframe : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 ZombieFrame : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYCODEOBJECT33_35
struct _PYCODEOBJECT33_35, 39 elements, 0x88 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 co_argcount : Int4B
+0x010 ArgumentCount : Int4B
+0x014 co_kwonlyargcount : Int4B
+0x014 KeywordOnlyArgumentCount : Int4B
+0x018 co_nlocals : Int4B
+0x018 NumberOfLocals : Int4B
+0x01c co_stacksize : Int4B
+0x01c StackSize : Int4B
+0x020 co_flags : Int4B
+0x020 Flags : Int4B
+0x028 co_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 co_consts : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Constants : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 co_names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 Names : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 co_varnames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 LocalVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 co_freevars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 FreeVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 co_cellvars : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 CellVariableNames : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 co_cell2arg : Ptr64 to UChar
+0x058 CellVariableToArgument : Ptr64 to UChar
+0x060 co_filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 Filename : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 co_name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 Name : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 co_firstlineno : Int4B
+0x070 FirstLineNumber : Int4B
+0x078 co_lnotab : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 LineNumberTable : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x080 co_zombieframe : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x080 ZombieFrame : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYCODEOBJECTOFFSETS
struct _PYCODEOBJECTOFFSETS, 32 elements, 0x20 bytes
+0x000 co_argcount : Uint2B
+0x000 ArgumentCount : Uint2B
+0x002 co_kwonlyargcount : Uint2B
+0x002 KeywordOnlyArgumentCount : Uint2B
+0x004 co_nlocals : Uint2B
+0x004 NumberOfLocals : Uint2B
+0x006 co_stacksize : Uint2B
+0x006 StackSize : Uint2B
+0x008 co_flags : Uint2B
+0x008 Flags : Uint2B
+0x00a co_code : Uint2B
+0x00a Code : Uint2B
+0x00c co_consts : Uint2B
+0x00c Constants : Uint2B
+0x00e co_names : Uint2B
+0x00e Names : Uint2B
+0x010 co_varnames : Uint2B
+0x010 LocalVariableNames : Uint2B
+0x012 co_freevars : Uint2B
+0x012 FreeVariableNames : Uint2B
+0x014 co_cellvars : Uint2B
+0x014 CellVariableNames : Uint2B
+0x016 co_filename : Uint2B
+0x016 Filename : Uint2B
+0x018 co_name : Uint2B
+0x018 Name : Uint2B
+0x01a co_firstlineno : Uint2B
+0x01a FirstLineNumber : Uint2B
+0x01c co_lnotab : Uint2B
+0x01c LineNumberTable : Uint2B
+0x01e co_zombieframe : Uint2B
+0x01e ZombieFrame : Uint2B
0:000> dt -v Python!_PYFUNCTIONOBJECT
struct _PYFUNCTIONOBJECT, 14 elements, 0x28 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 func_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 Code25_27 : Ptr64 to struct _PYCODEOBJECT25_27, 34 elements, 0x70 bytes
+0x010 Code30_32 : Ptr64 to struct _PYCODEOBJECT30_32, 37 elements, 0x80 bytes
+0x010 Code33_35 : Ptr64 to struct _PYCODEOBJECT33_35, 39 elements, 0x88 bytes
+0x018 func_globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x018 Globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 func_defaults : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Defaults : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYTRYBLOCK
struct _PYTRYBLOCK, 6 elements, 0xc bytes
+0x000 b_type : Int4B
+0x000 Type : Int4B
+0x004 b_handler : Int4B
+0x004 Handler : Int4B
+0x008 b_level : Int4B
+0x008 Level : Int4B
0:000> dt -v Python!_PYFRAMEOBJECT
struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 f_back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x018 Back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x020 f_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 f_builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 f_globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 f_locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 Locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 f_valuestack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 ValueStack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 f_stacktop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 StackTop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 f_trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 Trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 f_exc_type : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 ExceptionType : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 f_exc_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 ExceptionValue : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 f_exc_traceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 ExceptionTraceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYFRAMEOBJECT25_33
struct _PYFRAMEOBJECT25_33, 41 elements, 0x180 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 f_back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x018 Back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x020 f_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 f_builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 f_globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 f_locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 Locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 f_valuestack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 ValueStack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 f_stacktop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 StackTop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 f_trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 Trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 f_exc_type : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 ExceptionType : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 f_exc_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 ExceptionValue : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 f_exc_traceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 ExceptionTraceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 f_state : Ptr64 to struct _PYTHREADSTATE, 0 elements, 0x0 bytes
+0x070 ThreadState : Ptr64 to struct _PYTHREADSTATE, 0 elements, 0x0 bytes
+0x078 f_lasti : Int4B
+0x078 LastInstruction : Int4B
+0x07c f_lineno : Int4B
+0x07c LineNumber : Int4B
+0x080 f_iblock : Int4B
+0x080 BlockIndex : Int4B
+0x084 f_blockstack : [20] struct _PYTRYBLOCK, 6 elements, 0xc bytes
+0x084 BlockStack : [20] struct _PYTRYBLOCK, 6 elements, 0xc bytes
+0x178 f_localsplus : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x178 LocalsPlusStack : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYFRAMEOBJECT34_35
struct _PYFRAMEOBJECT34_35, 43 elements, 0x180 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 f_back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x018 Back : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x020 f_code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Code : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 f_builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 Builtins : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 f_globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x030 Globals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 f_locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 Locals : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 f_valuestack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 ValueStack : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 f_stacktop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 StackTop : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 f_trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 Trace : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 f_exc_type : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 ExceptionType : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 f_exc_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 ExceptionValue : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 f_exc_traceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 ExceptionTraceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 f_gen : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 Generator : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 f_lasti : Int4B
+0x078 LastInstruction : Int4B
+0x07c f_lineno : Int4B
+0x07c LineNumber : Int4B
+0x080 f_iblock : Int4B
+0x080 BlockIndex : Int4B
+0x084 f_executing : Char
+0x084 StillExecuting : Char
+0x088 f_blockstack : [20] struct _PYTRYBLOCK, 6 elements, 0xc bytes
+0x088 BlockStack : [20] struct _PYTRYBLOCK, 6 elements, 0xc bytes
+0x178 f_localsplus : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x178 LocalsPlusStack : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYFRAMEOBJECTOFFSETS
struct _PYFRAMEOBJECTOFFSETS, 16 elements, 0x10 bytes
+0x000 f_state : Uint2B
+0x000 ThreadState : Uint2B
+0x002 f_lasti : Uint2B
+0x002 LastInstruction : Uint2B
+0x004 f_lineno : Uint2B
+0x004 LineNumber : Uint2B
+0x006 f_iblock : Uint2B
+0x006 BlockIndex : Uint2B
+0x008 f_blockstack : Uint2B
+0x008 BlockStack : Uint2B
+0x00a f_localsplus : Uint2B
+0x00a LocalsPlusStack : Uint2B
+0x00c f_gen : Uint2B
+0x00c Generator : Uint2B
+0x00e f_executing : Uint2B
+0x00e StillExecuting : Uint2B
0:000> dt -v Python!_PYMETHODDEF
struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x000 ml_name : Ptr64 to Char
+0x000 Name : Ptr64 to Char
+0x008 ml_meth : Ptr64 to _PYOBJECT*
+0x008 FunctionPointer : Ptr64 to _PYOBJECT*
+0x010 ml_flags : Int4B
+0x010 Flags : Uint4B
+0x010 VarArgs : Bitfield Pos 0, 1 Bit
+0x010 KeywordArgs : Bitfield Pos 1, 1 Bit
+0x010 NoArgs : Bitfield Pos 2, 1 Bit
+0x010 ObjectArg : Bitfield Pos 3, 1 Bit
+0x010 ClassMethod : Bitfield Pos 4, 1 Bit
+0x010 StaticMethod : Bitfield Pos 5, 1 Bit
+0x010 CoexistMethod : Bitfield Pos 6, 1 Bit
+0x018 ml_doc : Ptr64 to Char
+0x018 Doc : Ptr64 to Char
0:000> dt -v Python!_PYGETSETDEF
struct _PYGETSETDEF, 10 elements, 0x28 bytes
+0x000 name : Ptr64 to Char
+0x000 Name : Ptr64 to Char
+0x008 get : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x008 Get : Ptr64 to _PYOBJECT*
+0x010 set : Ptr64 to Int4B
+0x010 Set : Ptr64 to long
+0x018 doc : Ptr64 to Char
+0x018 Doc : Ptr64 to Char
+0x020 closure : Ptr64 to Void
+0x020 Closure : Ptr64 to Void
0:000> dt -v Python!_PYBUFFER
struct _PYBUFFER, 22 elements, 0x50 bytes
+0x000 buf : Ptr64 to Void
+0x000 Buffer : Ptr64 to Void
+0x008 obj : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x008 Object : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 len : Int8B
+0x010 Length : Int8B
+0x018 itemsize : Int8B
+0x018 ItemSize : Int8B
+0x020 readonly : Int4B
+0x020 ReadOnly : Int4B
+0x024 ndim : Int4B
+0x024 NumberOfDimensions : Int4B
+0x028 format : Ptr64 to Char
+0x028 Format : Ptr64 to Char
+0x030 shape : Ptr64 to Int8B
+0x030 Shape : Ptr64 to Int8B
+0x038 strides : Ptr64 to Int8B
+0x038 Strides : Ptr64 to Int8B
+0x040 suboffsets : Ptr64 to Int8B
+0x040 SubOffsets : Ptr64 to Int8B
+0x048 internal : Ptr64 to Void
+0x048 Internal : Ptr64 to Void
0:000> dt -v Python!_PYBUFFERPROCS
struct _PYBUFFERPROCS, 4 elements, 0x10 bytes
+0x000 bf_getbuffer : Ptr64 to Int4B
+0x000 GetBuffer : Ptr64 to long
+0x008 bf_releasebuffer : Ptr64 to void
+0x008 ReleaseBuffer : Ptr64 to void
0:000> dt -v Python!_PYASYNCMETHODS
struct _PYASYNCMETHODS, 6 elements, 0x18 bytes
+0x000 am_await : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x000 AsyncAwait : Ptr64 to _PYOBJECT*
+0x008 am_aiter : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x008 AsyncIter : Ptr64 to _PYOBJECT*
+0x010 am_next : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 AsyncNext : Ptr64 to _PYOBJECT*
0:000> dt -v Python!_PYTYPEOBJECT
struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 tp_name : Ptr64 to Char
+0x018 Name : Ptr64 to Char
+0x020 tp_basicsize : Int8B
+0x020 BasicSize : Int8B
+0x028 tp_itemsize : Int8B
+0x028 ItemSize : Int8B
+0x030 tp_dealloc : Ptr64 to Void
+0x030 Dealloc : Ptr64 to void
+0x038 tp_print : Ptr64 to Void
+0x038 Print : Ptr64 to Void
+0x040 tp_getattr : Ptr64 to Void
+0x040 GetAttribute : Ptr64 to Void
+0x048 tp_setattr : Ptr64 to Void
+0x048 SetAttribute : Ptr64 to Void
+0x050 tp_compare : Ptr64 to Int4B
+0x050 tp_as_async : Ptr64 to struct _PYASYNCMETHODS, 6 elements, 0x18 bytes
+0x050 Compare : Ptr64 to int
+0x050 AsyncMethods : Ptr64 to struct _PYASYNCMETHODS, 6 elements, 0x18 bytes
+0x058 tp_repr : Ptr64 to Void
+0x058 Repr : Ptr64 to Void
+0x060 tp_as_number : Ptr64 to Void
+0x060 NumberMethods : Ptr64 to Void
+0x068 tp_as_sequence : Ptr64 to Void
+0x068 SequenceMethods : Ptr64 to Void
+0x070 tp_as_mapping : Ptr64 to Void
+0x070 MappingMethods : Ptr64 to Void
+0x078 tp_hash : Ptr64 to Int4B
+0x078 Hash : Ptr64 to long
+0x080 tp_call : Ptr64 to Void
+0x080 Call : Ptr64 to Void
+0x088 tp_str : Ptr64 to Void
+0x088 Str : Ptr64 to Void
+0x090 tp_getattro : Ptr64 to Void
+0x090 GetAttributeObject : Ptr64 to Void
+0x098 tp_setattro : Ptr64 to Void
+0x098 SetAttributeObject : Ptr64 to Void
+0x0a0 tp_as_buffer : Ptr64 to struct _PYBUFFERPROCS, 4 elements, 0x10 bytes
+0x0a0 BufferMethods : Ptr64 to struct _PYBUFFERPROCS, 4 elements, 0x10 bytes
+0x0a8 tp_flags : Int4B
+0x0a8 Flags : Int4B
+0x0b0 tp_doc : Ptr64 to Char
+0x0b0 Doc : Ptr64 to Char
+0x0b8 tp_traverse : Ptr64 to Void
+0x0b8 Traverse : Ptr64 to Void
+0x0c0 tp_clear : Ptr64 to Void
+0x0c0 Clear : Ptr64 to Void
+0x0c8 tp_richcompare : Ptr64 to Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x0c8 RichCompare : Ptr64 to _PYOBJECT*
+0x0d0 tp_weaklistoffset : Int8B
+0x0d0 WeakListOffset : Int8B
+0x0d8 tp_iter : Ptr64 to Void
+0x0d8 Iter : Ptr64 to Void
+0x0e0 tp_iternext : Ptr64 to Void
+0x0e0 IterNext : Ptr64 to Void
+0x0e8 tp_methods : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x0e8 Methods : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x0f0 tp_members : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x0f0 MemberMethods : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x0f8 tp_getset : Ptr64 to struct _PYGETSETDEF, 10 elements, 0x28 bytes
+0x0f8 GetSetMethods : Ptr64 to struct _PYGETSETDEF, 10 elements, 0x28 bytes
+0x100 tp_base : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x100 BaseType : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x108 tp_dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x108 Dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x110 tp_descr_get : Ptr64 to Void
+0x110 DescriptorGet : Ptr64 to Void
+0x118 tp_descr_set : Ptr64 to Void
+0x118 DescriptorSet : Ptr64 to Void
+0x120 tp_dictoffset : Int8B
+0x120 DictOffset : Int8B
+0x128 tp_init : Ptr64 to Void
+0x128 Init : Ptr64 to Void
+0x130 tp_alloc : Ptr64 to Void
+0x130 Alloc : Ptr64 to Void
+0x138 tp_new : Ptr64 to Void
+0x138 New : Ptr64 to Void
+0x140 tp_free : Ptr64 to Void
+0x140 Free : Ptr64 to Void
+0x148 tp_is_gc : Ptr64 to Void
+0x148 IsGC : Ptr64 to Void
+0x150 tp_bases : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x150 Bases : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x158 tp_mro : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x158 MethodResolutionOrder : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x160 tp_cache : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x160 Cache : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x168 tp_subclasses : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x168 Subclasses : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x170 tp_weaklist : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x170 WeakList : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x178 tp_del : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x178 Del : Ptr64 to Void
+0x180 tp_version_tag : Uint4B
+0x180 VersionTag : Uint4B
0:000> dt -v Python!_PYTYPEOBJECTEX
struct _PYTYPEOBJECTEX, 2 elements, 0x8 bytes
+0x000 Object : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x000 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
0:000> dt -v Python!_PYTUPLEOBJECT
struct _PYTUPLEOBJECT, 9 elements, 0x20 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ob_size : Int8B
+0x010 ObjectSize : Int8B
+0x018 ob_item : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x018 Item : [1] Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYDICTENTRY25_32
struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x000 me_hash : Int8B
+0x000 Hash : Int8B
+0x008 me_key : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x008 Key : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 me_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x010 Value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYDICTOBJECT25_32
struct _PYDICTOBJECT25_32, 17 elements, 0xf8 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 ma_fill : Int8B
+0x010 Fill : Int8B
+0x018 ma_used : Int8B
+0x018 Used : Int8B
+0x020 ma_mask : Int8B
+0x020 Mask : Int8B
+0x028 ma_table : Ptr64 to struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x028 Table : Ptr64 to struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x030 ma_lookup : Ptr64 to struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x030 Lookup : Ptr64 to struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x038 ma_smalltable : [8] struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
+0x038 SmallTable : [8] struct _PYDICTENTRY25_32, 6 elements, 0x18 bytes
0:000> dt -v Python!_PYCFUNCTIONOBJECT25_34
struct _PYCFUNCTIONOBJECT25_34, 11 elements, 0x28 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 m_ml : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x010 MethodDef : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x018 m_self : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x018 Self : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 m_module : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Module : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYCFUNCTIONOBJECT35_35
struct _PYCFUNCTIONOBJECT35_35, 13 elements, 0x30 bytes
+0x000 ob_refcnt : Int8B
+0x000 ReferenceCount : Int8B
+0x000 RefCountEx : union _PY_OBJECT_REFCOUNTEX, 7 elements, 0x8 bytes
+0x008 ob_type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x008 Type : Ptr64 to struct _PYTYPEOBJECT, 101 elements, 0x188 bytes
+0x010 m_ml : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x010 MethodDef : Ptr64 to struct _PYMETHODDEF, 15 elements, 0x20 bytes
+0x018 m_self : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x018 Self : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 m_module : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x020 Module : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 m_weakreflist : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x028 WeakRefList : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
0:000> dt -v Python!_PYTHREADSTATE25_27
struct _PYTHREADSTATE25_27, 42 elements, 0x98 bytes
+0x000 next : Ptr64 to struct _PYTHREADSTATE25_27, 42 elements, 0x98 bytes
+0x000 Next : Ptr64 to struct _PYTHREADSTATE25_27, 42 elements, 0x98 bytes
+0x008 interp : Ptr64 to struct _PYINTERPRETERSTATE, 0 elements, 0x0 bytes
+0x008 Interpreter : Ptr64 to struct _PYINTERPRETERSTATE, 0 elements, 0x0 bytes
+0x010 frame : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x010 Frame : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x018 recursion_depth : Int4B
+0x018 RecursionDepth : Int4B
+0x01c tracing : Int4B
+0x01c Tracing : Int4B
+0x020 use_tracing : Int4B
+0x020 UseTracing : Int4B
+0x028 c_profilefunc : Ptr64 to int
+0x028 ProfileFunction : Ptr64 to int
+0x030 c_tracefunc : Ptr64 to int
+0x030 TraceFunction : Ptr64 to int
+0x038 c_profileobj : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x038 ProfileObject : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 c_traceobj : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x040 TraceObject : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 curexc_type : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x048 CurrentExceptionType : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 curexc_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x050 CurrentExceptionValue : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 curexc_traceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x058 CurrentExceptionTraceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 exc_type : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x060 ExceptionType : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 exc_value : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x068 ExceptionValue : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 exc_traceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x070 ExceptionTraceback : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x078 Dict : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x080 tick_counter : Int4B
+0x080 TickCounter : Int4B
+0x084 gilstate_counter : Int4B
+0x084 GilstateCounter : Int4B
+0x088 async_exc : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x088 AsyncException : Ptr64 to struct _PYOBJECT, 5 elements, 0x10 bytes
+0x090 thread_id : Int4B
+0x090 ThreadId : Int4B
0:000> dt -v Python!_PYTHREADSTATE30_33
struct _PYTHREADSTATE30_33, 46 elements, 0x98 bytes
+0x000 next : Ptr64 to struct _PYTHREADSTATE30_33, 46 elements, 0x98 bytes
+0x000 Next : Ptr64 to struct _PYTHREADSTATE30_33, 46 elements, 0x98 bytes
+0x008 interp : Ptr64 to struct _PYINTERPRETERSTATE, 0 elements, 0x0 bytes
+0x008 Interpreter : Ptr64 to struct _PYINTERPRETERSTATE, 0 elements, 0x0 bytes
+0x010 frame : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x010 Frame : Ptr64 to struct _PYFRAMEOBJECT, 29 elements, 0x70 bytes
+0x018 recursion_depth : Int4B
+0x018 RecursionDepth : Int4B
+0x01c overflowed : Char
+0x01c Overflowed : Char
+0x01d recursion_critical : Char
+0x01d RecursionCritical : Char
+0x020 tracing : Int4B
+0x020 Tracing : Int4B
+0x024 use_tracing : Int4B